homura-runtime 0.3.11 → 0.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/homura/runtime/build_support.rb +1 -2
- data/lib/homura/runtime/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b92445bbcde7ae12d5eb0ee75142a05bc1ec83fcac2748a36a210580accece9f
|
|
4
|
+
data.tar.gz: b51a9d070d3018c5ac105896dec72e1ac0b506fe473b97ba52bc694734ca25b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ed463c81c2358cc997a2e97867727e0166ea8e6c4896d22e05ac2adb08aeee0454f80143d11ab0866aae19c36353062aa7c74f88704976e8e453eaaaca40f5a
|
|
7
|
+
data.tar.gz: 3aac55e26991a4e2d8849160554c17042e2b471d1d702e7bd9fecbddbc384b97007f68add9c07a54f47dbd8d1d8022ee943cd2609ac6eead212afa1a2dbd12db
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.13 (2026-06-25)
|
|
4
|
+
|
|
5
|
+
- Load Phlex/Literal root code through Opal `require_tree` in the generated
|
|
6
|
+
prelude instead of absolute root-file `require`. This keeps their internal
|
|
7
|
+
relative requires resolvable in standalone Workers builds.
|
|
8
|
+
|
|
9
|
+
## 0.3.12 (2026-06-25)
|
|
10
|
+
|
|
11
|
+
- Require Phlex/Literal root files with the explicit `.rb` path in the generated
|
|
12
|
+
Opal gem prelude. This avoids Opal choosing the sibling `lib/phlex/` or
|
|
13
|
+
`lib/literal/` directory before the root file.
|
|
14
|
+
|
|
3
15
|
## 0.3.11 (2026-06-25)
|
|
4
16
|
|
|
5
17
|
- Package the minimal Opal `monitor` shim required by Zeitwerk. This keeps
|
|
@@ -262,9 +262,8 @@ module HomuraRuntime
|
|
|
262
262
|
root_file = lib.join("#{spec.name}.rb")
|
|
263
263
|
next unless root_file.file?
|
|
264
264
|
|
|
265
|
-
root_require = root_file.to_s.delete_suffix(".rb")
|
|
266
265
|
lines << "Zeitwerk.__homura_next_gem_root = #{root_file.to_s.inspect}"
|
|
267
|
-
lines << "
|
|
266
|
+
lines << "require_tree #{lib.to_s.inspect}"
|
|
268
267
|
lines << "`Opal.loaded([#{spec.name.inspect}])`"
|
|
269
268
|
lines << "require #{compat.inspect}"
|
|
270
269
|
end
|