nosj 0.3.1-arm64-darwin → 0.3.2-arm64-darwin

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: 9755b498d11c80282db69d0797e099540046bd126113e9bae27dd1e8ec7a1d92
4
- data.tar.gz: 7eccd856e9bfe27a753bb0e304188d5e5edf7876546b2074e218e10a6a382027
3
+ metadata.gz: 1f5a3edce75150a0248ff688397776a3f05b9c7420841356f227d1443fd52f22
4
+ data.tar.gz: 6d2b4a40ffb65fb657d54bd5341e625cee6b5bb9b8d12a7969b33f836d7fdf04
5
5
  SHA512:
6
- metadata.gz: d8f799b25bb632713017ec4606f144c3052f1dbc7cd4070eff5380cb063ac8a48d0f9b78894578eb872574ba2eef9b37bc028a8cc52a73cac5e216e77728eabc
7
- data.tar.gz: 9c13f1223e0006ba083c0829b52384bf1e117e38099d5d6ca325426bb2567696574cf1495c4fa2654f6c113a8d12d06121a4469a94577bdd52ee7bbe73ddde54
6
+ metadata.gz: 8e74ba21e10660d806a6cdae196c852338a00501c3db67c100e4353663bcdc7da18d5261df6483bbcf578c37f94fc085493af5dc2179d145dec82fd85180ce48
7
+ data.tar.gz: 59f11b50a91449be460eb65e2913d4641bdf52a03c4dd7229344fa153a789846f58c5935a8a46de2098b0f10fa397aea20d82680d4ea9f698209feea9b3d6411
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [0.3.2] - 2026-07-19
2
+
3
+ - **IMPORTANT**—Fixed: the precompiled platform gems linked `libruby`
4
+ into the extension. The arm64-darwin binaries recorded the build runner's
5
+ absolute Ruby path, so `require "nosj"` failed with `Library not
6
+ loaded: /Users/runner/hostedtoolcache/...` on any machine with Ruby
7
+ installed elsewhere (#2), and the Linux binaries carried a
8
+ `libruby.so` runtime dependency that a statically built Ruby (the
9
+ ruby-build default) cannot satisfy. The cause was magnus's `embed`
10
+ feature—needed only by the fuzz harness, which now enables it
11
+ itself—pulling `rb-sys/link-ruby` into the gem build. Extension
12
+ symbols now resolve from the host process at load time, and the
13
+ release build refuses to stage a binary that links libruby.
14
+
1
15
  ## [0.3.1] - 2026-07-17
2
16
 
3
17
  - Fixed: `NOSJ.minify` / `NOSJ.reformat` produced unparseable output
Binary file
Binary file
Binary file
data/lib/nosj/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module NOSJ
4
4
  # The gem version.
5
- VERSION = "0.3.1"
5
+ VERSION = "0.3.2"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nosj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Yaroslav Markin