yrby 0.7.0-x86_64-linux → 0.7.1-x86_64-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: 5f26d73e755cf51f77b485329fb85d6d03d46a7109d8eb67b8c836a6f1104be2
4
- data.tar.gz: 1009b3ca4ead725d6f5764b9b27b30fa6f389eaf9a355ae3bda9ded85b184ab7
3
+ metadata.gz: ae68a541c66ec3d60f4afdbfebe877e53ed6a68066c398760ad4ee5ba298b3eb
4
+ data.tar.gz: 61a35978e5b347cc55f9ef12203359b380363bc5a8fbbd6c4cee81213abacecd
5
5
  SHA512:
6
- metadata.gz: dee35ceb9590adc9d547f3dda3c464703adbecd805e05e79d7f2d8853d543e8faff64d86e72470e3f8a97606b533aaa043e2ecb259ce1ef583d94ad460d8ea69
7
- data.tar.gz: 7b4c5683e7a2480d0af93ab0778c1e9d35b340d76c345d6054c43b534851b632c9d6dd94807047949ea81483944d84b42ac391dd870fc3d9ec9611f54e92c3ad
6
+ metadata.gz: e29f36a99d7c84bf3df0dc624fe1c0580dd878ab1ae00a0ddd1ee30da3c8054f3c6dd713d2f6e77009cb748d4723ccdf9bcfbbecf6131afb7586bd90e4e5cde9
7
+ data.tar.gz: faf38a5fde646d26487f20f1ee6516b918f9453bbfe97c1f5b78fa5176a8800c12563c2a94b0cd7c35614b94c5435f2d9c9801809658fc8f1cf959eb86b8508c
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Y
4
- VERSION = "0.7.0"
4
+ VERSION = "0.7.1"
5
5
  end
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
- # separate `yrby-actioncable` gem; require "y/action_cable".
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.0
4
+ version: 0.7.1
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - JP Camara
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-12 00:00:00.000000000 Z
11
+ date: 2026-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest