bootsnap 1.16.0 → 1.18.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1bf1eca00971c561ca1e15941903dcf193ec8fc84c68736177a3aa72558c536b
4
- data.tar.gz: bcd5596d1b4b00905af82cf25693fb72e71897685e024b27311353eef6f588bf
3
+ metadata.gz: 2b2271b2fa08edc313e43ec1359be530fcb6b206a7b4b63f37065290289cbc9a
4
+ data.tar.gz: c5838e7d01c33320e765a2bf668c68c09fc6b0938fb8789653b526cb3c22a244
5
5
  SHA512:
6
- metadata.gz: 0d3e37e56d994647ac88a1c9b83f087f137d32acfc09bfba1e71a85ce254697b1dcf6c9e1c90b5c71728ce0f3c0a63ee86680455a8f95003d237671435042859
7
- data.tar.gz: 270bf8fc609981d25441c9c4bd975348130177564f2e1a0744f18720d7f59cda3c3da24bea0c07f2498a185308647b05715e1b1dd5a6045e653600ab2f5907a1
6
+ metadata.gz: 77168e700a54163bf4574fbf9f82fea681a01f7d0c5c3a55340d3dabc98959fce1176bebef4c4d25d18efa257ad5314f13ca978a77f5cb4288296c63a1b36871
7
+ data.tar.gz: cc770950cc3032a5033873457a23b19823c35d9d24285f3b13fb95848e51d8f34defca5396c7b545b5530381271979c93026401e4ac32d28ec0f89ceadd57823
data/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # Unreleased
2
2
 
3
+ # 1.18.4
4
+
5
+ * Allow using bootsnap without bundler. See #488.
6
+ * Fix startup failure if the cache directory points to a broken symlink.
7
+
8
+ # 1.18.3
9
+
10
+ * Fix the cache corruption issue in the revalidation feature. See #474.
11
+ The cache revalidation feature remains opt-in for now, until it is more battle tested.
12
+
13
+ # 1.18.2
14
+
15
+ * Disable stale cache entries revalidation by default as it seems to cause cache corruption issues. See #471 and #474.
16
+ Will be re-enabled in a future version once the root cause is identified.
17
+ * Fix a potential compilation issue on some systems. See #470.
18
+
19
+ # 1.18.1
20
+
21
+ * Handle `EPERM` errors when opening files with `O_NOATIME`.
22
+
23
+ # 1.18.0
24
+
25
+ * `Bootsnap.instrumentation` now receive `:hit` events.
26
+ * Add `Bootsnap.log_stats!` to print hit rate statistics on process exit. Can also be enabled with `BOOTSNAP_STATS=1`.
27
+ * Revalidate stale cache entries by digesting the source content.
28
+ This should significantly improve performance in environments where `mtime` isn't preserved (e.g. CI systems doing a git clone, etc).
29
+ See #468.
30
+ * Open source files and cache entries with `O_NOATIME` when available to reduce disk accesses. See #469.
31
+ * `bootsnap precompile --gemfile` now look for `.rb` files in the whole gem and not just the `lib/` directory. See #466.
32
+
33
+ # 1.17.1
34
+
35
+ * Fix a compatibility issue with the `prism` library that ships with Ruby 3.3. See #463.
36
+ * Improved the `Kernel#require` decorator to not cause a method redefinition warning. See #461.
37
+
38
+ # 1.17.0
39
+
40
+ * Ensure `$LOAD_PATH.dup` is Ractor shareable to fix a conflict with `did_you_mean`.
41
+ * Allow to ignore directories using absolute paths.
42
+ * Support YAML and JSON CompileCache on TruffleRuby.
43
+ * Support LoadPathCache on TruffleRuby.
44
+
3
45
  # 1.16.0
4
46
 
5
47
  * Use `RbConfig::CONFIG["rubylibdir"]` instead of `RbConfig::CONFIG["libdir"]` to check for stdlib files. See #431.
@@ -17,7 +59,7 @@
17
59
  * Add a way to skip directories during load path scanning.
18
60
  If you have large non-ruby directories in the middle of your load path, it can severely slow down scanning.
19
61
  Typically this is a problem with `node_modules`. See #277.
20
- * Fix `Bootsnap.unload_cache!`, it simply wouldn't work at all becaue of a merge mistake. See #421.
62
+ * Fix `Bootsnap.unload_cache!`, it simply wouldn't work at all because of a merge mistake. See #421.
21
63
 
22
64
  # 1.13.0
23
65
 
@@ -36,7 +78,7 @@
36
78
 
37
79
  * Stop decorating `Module#autoload` as it was only useful for supporting Ruby 2.2 and older.
38
80
 
39
- * Remove `uname` and other patform specific version from the cache keys. `RUBY_PLATFORM + RUBY_REVISION` should be
81
+ * Remove `uname` and other platform specific version from the cache keys. `RUBY_PLATFORM + RUBY_REVISION` should be
40
82
  enough to ensure bytecode compatibility. This should improve caching for alpine based setups. See #409.
41
83
 
42
84
  # 1.11.1
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Bootsnap [![Actions Status](https://github.com/Shopify/bootsnap/workflows/ci/badge.svg)](https://github.com/Shopify/bootsnap/actions)
2
2
 
3
- Bootsnap is a library that plugs into Ruby, with optional support for `YAML`,
3
+ Bootsnap is a library that plugs into Ruby, with optional support for `YAML` and `JSON`,
4
4
  to optimize and cache expensive computations. See [How Does This Work](#how-does-this-work).
5
5
 
6
6
  #### Performance
@@ -57,6 +57,7 @@ Bootsnap.setup(
57
57
  load_path_cache: true, # Optimize the LOAD_PATH with a cache
58
58
  compile_cache_iseq: true, # Compile Ruby code into ISeq cache, breaks coverage reporting.
59
59
  compile_cache_yaml: true, # Compile YAML into a cache
60
+ compile_cache_json: true, # Compile JSON into a cache
60
61
  readonly: true, # Use the caches but don't update them on miss or stale entries.
61
62
  )
62
63
  ```
@@ -80,6 +81,7 @@ well together.
80
81
  - `DISABLE_BOOTSNAP_COMPILE_CACHE` allows to disable ISeq and YAML caches.
81
82
  - `BOOTSNAP_READONLY` configure bootsnap to not update the cache on miss or stale entries.
82
83
  - `BOOTSNAP_LOG` configure bootsnap to log all caches misses to STDERR.
84
+ - `BOOTSNAP_STATS` log hit rate statistics on exit. Can't be used if `BOOTSNAP_LOG` is enabled.
83
85
  - `BOOTSNAP_IGNORE_DIRECTORIES` a comma separated list of directories that shouldn't be scanned.
84
86
  Useful when you have large directories of non-ruby files inside `$LOAD_PATH`.
85
87
  It defaults to ignore any directory named `node_modules`.
@@ -98,8 +100,8 @@ Bootsnap cache misses can be monitored though a callback:
98
100
  Bootsnap.instrumentation = ->(event, path) { puts "#{event} #{path}" }
99
101
  ```
100
102
 
101
- `event` is either `:miss` or `:stale`. You can also call `Bootsnap.log!` as a shortcut to
102
- log all events to STDERR.
103
+ `event` is either `:hit`, `:miss`, `:stale` or `:revalidated`.
104
+ You can also call `Bootsnap.log!` as a shortcut to log all events to STDERR.
103
105
 
104
106
  To turn instrumentation back off you can set it to nil:
105
107
 
@@ -119,6 +121,7 @@ into two broad categories:
119
121
  compilation.
120
122
  * `YAML.load_file` is modified to cache the result of loading a YAML object in MessagePack format
121
123
  (or Marshal, if the message uses types unsupported by MessagePack).
124
+ * `JSON.load_file` is modified to cache the result of loading a JSON object in MessagePack format
122
125
 
123
126
  ### Path Pre-Scanning
124
127
 
@@ -189,9 +192,9 @@ translated ruby source to an internal bytecode format, which is then executed by
189
192
  allows caching that bytecode. This allows us to bypass the relatively-expensive compilation step on
190
193
  subsequent loads of the same file.
191
194
 
192
- We also noticed that we spend a lot of time loading YAML documents during our application boot, and
193
- that MessagePack and Marshal are *much* faster at deserialization than YAML, even with a fast
194
- implementation. We use the same strategy of compilation caching for YAML documents, with the
195
+ We also noticed that we spend a lot of time loading YAML and JSON documents during our application boot, and
196
+ that MessagePack and Marshal are *much* faster at deserialization than YAML and JSON, even with a fast
197
+ implementation. We use the same strategy of compilation caching for YAML and JSON documents, with the
195
198
  equivalent of Ruby's "bytecode" format being a MessagePack document (or, in the case of YAML
196
199
  documents with types unsupported by MessagePack, a Marshal stream).
197
200