leptris 1.9.118.0 → 1.9.121.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/Rakefile +1 -1
- data/TODO.restructure/22-sax-drain-bulk-strip.md +5 -5
- data/lib/leptris/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85000791341954ae6ac1ad4b81236ad657e0c9d3dad1914ce182de881e8631ef
|
|
4
|
+
data.tar.gz: 55657d439219c20317b1a0c66916817cb131d502a25120cbc9566bd4d17e7c0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe1948ea43444c5057909c2a53e9cc2e3f0682db71a46ead7be72cccc65051036c568bd560615ed6426c8da3b5a074f33bd6a222eb3dc0734d4a8da72e9ec33b
|
|
7
|
+
data.tar.gz: '088636076490098a9e58a964f45d06a0bc21cd78d5164df2fa04a69f194a0540cfeb9309af95ea9fd67e518533c7c006eb018b84b5de14a9d4266153dfba4a27'
|
data/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
14
|
Jing's override rules, `<param>` datatype facets (portable
|
|
15
15
|
matcher), and schema errors on `leptris_last_error`. Required by
|
|
16
16
|
the RelaxNG binding (#165).
|
|
17
|
+
## [1.9.121.0] - 2026-09-09
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **Lockstep with libleptris 1.9.121** (1.9.119 → 1.9.121; no new
|
|
22
|
+
C surface — audit 270/270): WHATWG-mode MathML/SVG foreign
|
|
23
|
+
content (namespaces, case adjustment, integration points —
|
|
24
|
+
1.9.119); in-table wrapper synthesis (`<tr>` implies `<tbody>`;
|
|
25
|
+
html4 keeps libxml2's bare shape — 1.9.120); insertion-mode
|
|
26
|
+
edges (heading pops, ruby nesting, plaintext raw-to-EOF —
|
|
27
|
+
1.9.121). Corpus: WHATWG 792→859, parity held. Four specs.
|
|
28
|
+
- **TODO.restructure/22 closed with the timing gate PASSED**
|
|
29
|
+
(load ~14 window): SAX text-only **10.51x faster**, all-events
|
|
30
|
+
**1.28x faster** than Nokogiri — the moxml 0.77-0.93x row fully
|
|
31
|
+
inverted on the raw binding.
|
|
32
|
+
|
|
17
33
|
## [1.9.118.0] - 2026-09-09
|
|
18
34
|
|
|
19
35
|
### 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.
|
|
11
|
+
LIBLEPTRIS_VERSION = "1.9.121"
|
|
12
12
|
# Vendored alongside libleptris for fn:normalize-unicode (TODO
|
|
13
13
|
# .restructure/20): built per platform with a RELOCATABLE @rpath
|
|
14
14
|
# install name, loaded by ffi.rb before libleptris so the
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 22 — SAX drain: bulk kind strip (the 0.77-0.93x row)
|
|
2
2
|
|
|
3
|
-
Status:
|
|
3
|
+
Status: DONE — timing gate PASSED (2026-09-09, load ~14)
|
|
4
4
|
|
|
5
5
|
The moxml table shows SAX at 0.77-0.93x Nokogiri (it fully won at
|
|
6
6
|
the 1.9.40-era battery). Investigation under load-404 conditions
|
|
@@ -22,7 +22,7 @@ the 1.9.40-era battery). Investigation under load-404 conditions
|
|
|
22
22
|
|
|
23
23
|
- [x] Bulk strip restored; SAX suite green; allocation profile
|
|
24
24
|
re-verified (32k/112k vs 400k/400k).
|
|
25
|
-
- [
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
- [x] **Timing verification PASSED** (load ~14 window, min-of-7):
|
|
26
|
+
text-only 16.1 vs 169.3 ms = **10.51x faster**; all-events
|
|
27
|
+
146.9 vs 188.6 ms = **1.28x faster**. The moxml 0.77-0.93x
|
|
28
|
+
row is fully inverted on the raw binding.
|
data/lib/leptris/version.rb
CHANGED