nosj 0.3.1-x86_64-linux-musl → 0.3.2-x86_64-linux-musl

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: b1f561db1f2435cebf13c526c2721b73ee76b39154798bfa0e297d3f648c34a7
4
- data.tar.gz: 6f057116da84e30e10081ad03237d46fc984994a3c08788db5430abeaf2fa472
3
+ metadata.gz: 01c192a432b6e178e2d39244c792ba28b54c5e3a9ec2d2a5b78716c54948d036
4
+ data.tar.gz: d9995b1b47fdc4636b0f97c00badd887d990fef7358e84f7ec3086ba04d4ff65
5
5
  SHA512:
6
- metadata.gz: 611295995bbc3c5d32fa93bf4e9539502c53acd9717ccaf7371d5730049693aae5f76409ef6ea8536d633d812934e5328a7fe20f44aefef74860739f86b18050
7
- data.tar.gz: d625d9cdf81245655a32e701485a2268ec8161eeb1b0675f2ce50102121163151fb14577d461fd1e2741367784d51de757a22ed9b1f560cb432ce137345fdfa2
6
+ metadata.gz: 92e3c31e44f8711924f0a1ec71faa8f2dfd982df1be56fd0134d74406eed0165746fe05e478c032aa15ecb858137c94771fa9ecfb7349694affa9cedef64d858
7
+ data.tar.gz: 75b6150e7f5c3390caa9df6dcc9911677a1ca8828b46fccd48ee19c63c3ad3ed64a84f4496d317da7b36adf97c7d6ca1c08dd508eb41c3bc23df0af2422d638a
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: x86_64-linux-musl
6
6
  authors:
7
7
  - Yaroslav Markin