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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b56482181dafbce1bac53dedf886c50be3e59440275bded5598dae9ce0879fa
4
- data.tar.gz: 2c107975f0a63abe25fd26a04acab155a908aa2a8795ef4c44c0ad9bacee20cf
3
+ metadata.gz: 947b90f49f7f87042f9a15148cafc82adc78eeb8a40327e253664ce51f6ab77e
4
+ data.tar.gz: cfe1a42380f038584193fc70c104a338c7301d12b7cec59c54a65c9887f10379
5
5
  SHA512:
6
- metadata.gz: ad63b30fc03e05f50321a925cb8714852922ebffb13847d65a36e96db5165694c66e599bff27a610b1813788ecb5c7cb729c78ee1375a63cb584512e46a6b250
7
- data.tar.gz: '039e1cda7052a5688470361c574ff8621989c55c9a9a9a4b4d12a9168a72a2498712996b75e61383465b3df830d467aef41bf734d20a4029f393afa8125a27bf'
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
@@ -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: aarch64-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