enola 0.5.1 → 0.5.2
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 +15 -0
- data/lib/enola/config.rb +7 -5
- data/lib/enola/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: 0f5c39f1dcc7577ecde43a125b51c74b640ec8f10ce6d38e4008bec02d7e8df6
|
|
4
|
+
data.tar.gz: 3a56415c6823950a6e115dbbe1b282f564e609211ee65609ef39b7e5daa35f15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f2727a63a05b9aee2c24023014d7363c1b2fac11e4ad4cea85473d14bb4534fe769d5ff6e6c3ee6b71fd2a853cadd0d2dc67b72772d5188c2a63b7e05a5c033
|
|
7
|
+
data.tar.gz: 98734b4d06a0867d8808f023e59276d6c1b8e9dec27703078c5ae98f8dd02a2bd2add19606f42d4442f914b21818839af4bb5717448af5180aafd5ebb88453ca
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## enola 0.5.2, enola-rb 0.5.2, munola 0.5.2 and munola-rb 0.5.2 (2026-08-23)
|
|
2
|
+
|
|
3
|
+
Rubydex is off in the config these gems write, and named in a comment beside
|
|
4
|
+
the reason. The release each gem drives carries a walk that can fail to
|
|
5
|
+
return: a constant reference spanning lines could be treated as its own
|
|
6
|
+
predecessor, so a tree with vendored gems could snapshot for twenty-six
|
|
7
|
+
minutes and several gigabytes without finishing. Two of the three Rails trees
|
|
8
|
+
it was tried on did exactly that.
|
|
9
|
+
|
|
10
|
+
The fix exists and is not yet in a published enola, so the default cannot
|
|
11
|
+
depend on it. Prism is unaffected and stays on: it parses a monolith in 13.7
|
|
12
|
+
seconds. Uncommenting the two lines brings Rubydex back for anyone who wants
|
|
13
|
+
it deliberately, and the default returns the moment the binary each gem drives
|
|
14
|
+
carries the fix.
|
|
15
|
+
|
|
1
16
|
## enola 0.5.1 (2026-08-23)
|
|
2
17
|
|
|
3
18
|
The resolver no longer probes its own binstub. It read a candidate's first 512
|
data/lib/enola/config.rb
CHANGED
|
@@ -20,9 +20,11 @@ module Enola
|
|
|
20
20
|
|
|
21
21
|
def self.render(ruby: Providers.ruby)
|
|
22
22
|
<<~YAML
|
|
23
|
-
# Written by the enola gem; edit freely.
|
|
24
|
-
#
|
|
25
|
-
#
|
|
23
|
+
# Written by the enola gem; edit freely. Prism is on by default and runs
|
|
24
|
+
# under the Ruby that runs the gem. Rubydex is left off: the release this
|
|
25
|
+
# gem drives has a walk that can fail to return on a tree with vendored
|
|
26
|
+
# gems, fixed but not yet in a published enola. Uncomment it to run it
|
|
27
|
+
# anyway, and expect a snapshot that may not finish.
|
|
26
28
|
repo: .
|
|
27
29
|
repos:
|
|
28
30
|
- .
|
|
@@ -32,8 +34,8 @@ module Enola
|
|
|
32
34
|
- name: prism
|
|
33
35
|
command: [#{ruby.inspect}, #{Providers.prism_script.inspect}]
|
|
34
36
|
expected_version: "#{Providers.prism_version || '0.1.0'}"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
# - name: rubydex
|
|
38
|
+
# expected_version: "#{Providers::RUBYDEX_EXPECTED_VERSION}"
|
|
37
39
|
YAML
|
|
38
40
|
end
|
|
39
41
|
end
|
data/lib/enola/version.rb
CHANGED