yrby 0.7.0-arm64-darwin → 0.7.1-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 465389e76c8c3cb9d60bc971cd4f1ff7b8d67bf3bf174ed2c7be12646f794c12
4
- data.tar.gz: 12a9e00fb0af3cb7a7827300fe3959fb2913dab86a9943e6c6a3551223ffab89
3
+ metadata.gz: db3600e0ce87d6d82556b4923a719662c5b688e192cd98329b75fe9300a0aa8c
4
+ data.tar.gz: 5bd814f4b946c19f357841338934ad3665adc158fe57ed28b84e44ec987a5b4c
5
5
  SHA512:
6
- metadata.gz: bd3df28c9d7ea8955af41643ac70165d2ab7cff330ba108682bd95e0867a674f41fe9f026e0a735d7f6fcca865706814758dc3dee2cdb24a85991d7c0c9f44eb
7
- data.tar.gz: f85bed22dfc4b472d2350d50e0b90e765e28847bf9658085585e8227ed9cae1a75bdc2fa927bb358c8d7a8f6d73f72f59f637b13ed534b166dc82a21730283d4
6
+ metadata.gz: 13bbc8fa4150637b8a5f950bdb02eecd56cc839762c46aaac379b4b31cd77acee41500dd4c73542b00303ee08004f48ca76aa6f829285b384af50236f0f39939
7
+ data.tar.gz: 9855a5185df9055754295d6e130ec88fe6a00f6dd57c177422379ac22b26545eb708eca5d956a4791f5af79bba6ab7ab6abbbe3ba6a3e82f529083d2797e4b4b
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
Binary file
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: arm64-darwin
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