nosj 0.3.1-aarch64-linux → 0.3.2-aarch64-linux

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: 9d1c48677ffc867030f5f2fbf43842509cc8412415d93c16eabdfea9ec8f2e86
4
- data.tar.gz: 2469b7844b7faebd71ed211e3e9b14098b6782ec1284d0a8927ae5054d99fdea
3
+ metadata.gz: 10e414d3326f37cb0ce77ac5cf270f1ad1570af4d81a9913ab60f3ddadb7f803
4
+ data.tar.gz: 68c7283d8fa6f206ffec6256158f61cf051c2c3d420d9e386972a7f1f5936d98
5
5
  SHA512:
6
- metadata.gz: 6bdf4484d310a5f0f868b13b2c7c1b3f9e57e1da773f665bcd276b52f98055428aa9c0b4d37b30c13502ff380aea3e9f520da412dae12388bb4b622e1dd9acc1
7
- data.tar.gz: a874c09f066ed4d37595228e5bc91cc69b646a72ed793b73e9d3eb37f5395a234356af48bd5469dc26aac250e90b69e449377847f0b2c4587dda0a3585ce691d
6
+ metadata.gz: a591cfc2b26aea52dde5eb3ec512f9b22cc7217cf6e47c8d9c0f0ef1a199c4d55064c3632b490cb5c61ea7149f005fcd5284b91fb2e0fc26fbdd8626fddb2a29
7
+ data.tar.gz: 5c804ad40c4046c11a6faa07a5f72920a62ea13234436805f19db5306bae516e472a7cd61fb3724d9be2093c94adf625608592d7a0646e95d2d6cd12eaeff7f3
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
data/lib/nosj/3.3/nosj.so CHANGED
Binary file
data/lib/nosj/3.4/nosj.so CHANGED
Binary file
data/lib/nosj/4.0/nosj.so CHANGED
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: aarch64-linux
6
6
  authors:
7
7
  - Yaroslav Markin