yrb-lite 0.1.0.beta2-arm64-darwin → 0.1.0.beta3-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 +4 -4
- data/CHANGELOG.md +24 -1
- data/lib/yrb_lite/3.4/yrb_lite.bundle +0 -0
- data/lib/yrb_lite/4.0/yrb_lite.bundle +0 -0
- data/lib/yrb_lite/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0c474cb0dc96079d39d6f4b194b748e3adc0de5d038ed484c4498d140d9b792
|
|
4
|
+
data.tar.gz: c52ab4114c9096f96afbb5d83d12171fdde4a43c95f38963fb4498d171be661c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a24a4b8c91ea5f97d311f3920ea86ced099ece27969df298a59648fe63328b51da683460eeaae150dcdf1944c951804f082a73577b0daf28e4e1d324dc8d9cf4
|
|
7
|
+
data.tar.gz: c75976a13a02e7ccd511de3f4ebd8f54674fee846c50fa6c059fe411aeeed74532dace4d7600fb7a402b4fcf70e39f3153c42c9b56a9540218e06b1fd386d38e
|
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.
|
|
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
|
data/lib/yrb_lite/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.1.0.beta3
|
|
5
5
|
platform: arm64-darwin
|
|
6
6
|
authors:
|
|
7
7
|
- JP Camara
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|