yrb-lite 0.1.0.beta2-aarch64-linux-musl → 0.1.0.beta3-aarch64-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: '08e5d2b6a9835b6cba2628c3fc79f3e9c81e5f2af3a4df5757f3e1a4834b6a08'
4
- data.tar.gz: 3a230c53e2723fcdc1d25b6e23e3612ed6a81c75cf6adddb75159347ce85c8a5
3
+ metadata.gz: 96b90f75bf6e0e6e6106c7e089e8ef0ccd05f80ee89469330ef49719bdbdee1e
4
+ data.tar.gz: 7d5c90c3f25a8c0e76282c024823fb35d12675684218c0c967218cd2a31fd777
5
5
  SHA512:
6
- metadata.gz: 29394de6d2db6adbfb65ad69c2926fba15c1664b636514d900928c3f4c7a2c97a056abbefcd928c4ad3da425ffccd0983e4b40abaf767d6202234dbdbc45d59f
7
- data.tar.gz: 045da67db649f021a011c2da2f69e4ced49785e774eac79f7970d810645e136a3e65ecfe01d7a72267cc001cd334d6b91841f125b6a3d6d39be58c4101618136
6
+ metadata.gz: 559cc87be0b4b4f1746aac5c930e2b4fc2eda28aa86bcfbfc5106c09f5d13260a299ccae0add89f854e508ccd58140f00a3e0a077e74f6618e97ed0e48f2089b
7
+ data.tar.gz: ff59783111eaf000abbebdf2e8a4068b8136a786a82a644986ae5e754267d4bff38417e7fd6aad17240bea31e0a5162ea38ce8b010eb5e823bc5e9b63db04969
data/CHANGELOG.md CHANGED
@@ -6,6 +6,28 @@ to follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.1.0.beta3] - 2026-06-18
10
+
11
+ ### Changed
12
+
13
+ - Upgraded the bundled `yrs` (y-crdt) from 0.21 to 0.27.2. No change to the
14
+ `YrbLite::Doc`, `YrbLite::Awareness`, or `YrbLite::Sync` public API; existing
15
+ code and the wire protocol are unaffected.
16
+ - Thread-safety is preserved across the upgrade. yrs 0.27 dropped `Awareness`'s
17
+ internal locking (its mutating methods now take `&mut self`, and `Awareness`
18
+ is no longer `Sync`), so `YrbLite::Awareness` now serializes access through an
19
+ internal `Mutex`. The lock is taken only while the GVL is released and is
20
+ never held across the GVL boundary, so concurrent access from multiple Ruby
21
+ threads stays safe and deadlock-free, and document reads still run in parallel
22
+ (they operate on a cheaply-cloned, `Arc`-backed `Doc` handle, not under the
23
+ presence lock).
24
+
25
+ ### Build
26
+
27
+ - Building the gem from source now requires **Rust 1.94 or newer** (yrs 0.27.2
28
+ uses `let`-chains). The precompiled platform gems are unaffected -- they need
29
+ no Rust toolchain to install.
30
+
9
31
  ## [0.1.0.beta2] - 2026-06-16
10
32
 
11
33
  ### Added
@@ -54,6 +76,7 @@ to follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
54
76
  - Precompiled native gems for common platforms (no Rust toolchain needed to
55
77
  install) via the cross-gem workflow.
56
78
 
57
- [Unreleased]: https://github.com/jpcamara/yrb-lite/compare/v0.1.0.beta2...main
79
+ [Unreleased]: https://github.com/jpcamara/yrb-lite/compare/v0.1.0.beta3...main
80
+ [0.1.0.beta3]: https://github.com/jpcamara/yrb-lite/compare/v0.1.0.beta2...v0.1.0.beta3
58
81
  [0.1.0.beta2]: https://github.com/jpcamara/yrb-lite/compare/v0.1.0.beta1...v0.1.0.beta2
59
82
  [0.1.0.beta1]: https://github.com/jpcamara/yrb-lite/releases/tag/v0.1.0.beta1
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module YrbLite
4
- VERSION = "0.1.0.beta2"
4
+ VERSION = "0.1.0.beta3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yrb-lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.beta2
4
+ version: 0.1.0.beta3
5
5
  platform: aarch64-linux-musl
6
6
  authors:
7
7
  - JP Camara
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-16 00:00:00.000000000 Z
11
+ date: 2026-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64