yrby 0.7.0-aarch64-linux → 0.7.1-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 +4 -4
- data/CHANGELOG.md +14 -0
- data/lib/y/3.4/yrby.so +0 -0
- data/lib/y/4.0/yrby.so +0 -0
- data/lib/y/version.rb +1 -1
- data/lib/y.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: 947b90f49f7f87042f9a15148cafc82adc78eeb8a40327e253664ce51f6ab77e
|
|
4
|
+
data.tar.gz: cfe1a42380f038584193fc70c104a338c7301d12b7cec59c54a65c9887f10379
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 419066fe76ac9b0995b5a511fd25dacf2f3d8a8d3c1b2bb006a7795b4fe0be13e0caeb6f1e426fd335663d664d10253731c6d3c593ea997e9e6bc058f3c3f535
|
|
7
|
+
data.tar.gz: c3137ba4056f50f93aae32120e73dc20a1bb0648dacbb60035ac073b944a24229d84690bc54d5ec8a8312804fbb58f72fc0bf634c9e3eec70a296c73df9c87ba
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to this project are documented here. The format is based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project aims
|
|
5
5
|
to follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.7.1] - 2026-08-19
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- `Y::ProseMirror` and `Y::Tiptap` keep marks shared by adjacent text
|
|
12
|
+
runs open across them, the way ProseMirror's own serializer does:
|
|
13
|
+
bold then bold-italic renders as `<strong>a<em>b</em></strong>`, not
|
|
14
|
+
as two sibling `<strong>` wraps. A mark whose attributes differ
|
|
15
|
+
between runs never merges. Found by the new cross-renderer
|
|
16
|
+
verification, which checks the renderers against a live Tiptap
|
|
17
|
+
editor, `@tiptap/html`'s static `generateHTML`, `tiptap-php`,
|
|
18
|
+
Lexical's `$generateHtmlFromNodes`, and Payload CMS's
|
|
19
|
+
`convertLexicalToHTML` on a shared corpus.
|
|
20
|
+
|
|
7
21
|
## [0.7.0] - 2026-08-11
|
|
8
22
|
|
|
9
23
|
### Added
|
data/lib/y/3.4/yrby.so
CHANGED
|
Binary file
|
data/lib/y/4.0/yrby.so
CHANGED
|
Binary file
|
data/lib/y/version.rb
CHANGED
data/lib/y.rb
CHANGED
|
@@ -20,5 +20,5 @@ require_relative "y/decoder"
|
|
|
20
20
|
module Y
|
|
21
21
|
# Doc, Error, and the protocol module functions are defined in the Rust
|
|
22
22
|
# extension. The ActionCable integration (Y::ActionCable::Sync) lives in the
|
|
23
|
-
#
|
|
23
|
+
# `yrby-rails` gem; require "y/action_cable".
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yrby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- JP Camara
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|