leptris 1.9.87.0 → 1.9.90.0

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: 98fcaada57f06d7350958be3b6b32e28a674f5678c2f614ce5fde1346275bd14
4
- data.tar.gz: d82679ff1f601b5f1e38396870f018349ef70d2182e795c036847dcd056b0560
3
+ metadata.gz: 9e6fd84072d6b693ffff8b857656b000d664f3ad7b8a4faddd8f091135a967b6
4
+ data.tar.gz: 20acc1474418cfb7bb4565e337489e68b2bb34152cda4a5c59496f12c9f9695f
5
5
  SHA512:
6
- metadata.gz: d079d2dbff82f4758397014c99eafd00232584a97b28b36643b88cfeb463adc9048022b4d31b97853f5c79d5c9e50292cadc63096ff1459a2a2b02aac3415cca
7
- data.tar.gz: 58feee143570aae04d01eed166b93e385cbaacba420c170675d5770bba15d152abdcc43cca48db466ff56ea9690c9e921e991de454b6e9bbcb3fdf6f88b8d0c7
6
+ metadata.gz: e867dd48991f9f7979b9e883554b0fc86da6e28eeb48c3dba494ffeea9c87aeafa70a3d83411e1cd4ededd2b42036ab383c7a1779c5105cd36f709d9686dee8c
7
+ data.tar.gz: 68b9d91d9449b2ed61e395b0244d8d9f302d83a866b2e7f40909582812f2c9a4fbaaf25deee4f25b6c0456198441fc1815ea8104e2e3ccfc441c995d98ba243b
data/CHANGELOG.md CHANGED
@@ -5,6 +5,34 @@ All notable changes to Leptris will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.9.90.0] - 2026-09-05
9
+
10
+ ### Changed
11
+
12
+ - **Lockstep with libleptris 1.9.90** (1.9.88 → 1.9.90; no new C
13
+ surface — the audit holds at 261/261):
14
+ - 1.9.88: template dispatch indexes (#682) — named-template
15
+ hash, per-mode candidate buckets, bare-Name fast path.
16
+ - 1.9.89: `fn:analyze-string` group spans fixed (leptris/leptris
17
+ #857): pmatch offsets are subject-relative but were applied
18
+ from the match start, and excess regexec slots read stale
19
+ stack data — single-group matches leaked the following
20
+ non-match into group values. Two specs pin the corrected
21
+ shapes (`12`, not `12cd`) and the call-order independence.
22
+ - 1.9.90: html5lib tree-construction corpus harness upstream
23
+ (193/1753 passing with a red-list snapshot; the implied-head /
24
+ foster-parenting bucket shapes the next HTML slices).
25
+
26
+ ### Fixed
27
+
28
+ - **Dispatch perf observation filed upstream (leptris/leptris
29
+ #866)**: predicate patterns (`match="item[@k='N']"` — the common
30
+ real-world shape) still pay the candidate ladder after 1.9.88;
31
+ measured 102.4 ms vs Nokogiri's 58.2 ms on a 120-template /
32
+ 2400-element fixture (bare names ride the fast path). Suggested
33
+ per-Name sub-bucketing; offered to re-measure any experimental
34
+ build.
35
+
8
36
  ## [1.9.87.0] - 2026-09-05
9
37
 
10
38
  ### Changed
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ RSpec::Core::RakeTask.new(:spec)
8
8
  # Pin for `rake compile` and the platform-gem builds. Keep in lockstep
9
9
  # with .github/workflows/build.yml (which calls `rake compile`) and the
10
10
  # CHANGELOG when libleptris releases.
11
- LIBLEPTRIS_VERSION = "1.9.87"
11
+ LIBLEPTRIS_VERSION = "1.9.90"
12
12
 
13
13
  CMAKE_FLAGS = %w[
14
14
  -DCMAKE_BUILD_TYPE=Release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Leptris
4
- VERSION = "1.9.87.0"
4
+ VERSION = "1.9.90.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leptris
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.87.0
4
+ version: 1.9.90.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.