leptris 1.9.46-x86_64-linux → 1.9.47-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 +4 -4
- data/CHANGELOG.md +41 -0
- data/Rakefile +1 -1
- data/lib/leptris/version.rb +1 -1
- data/lib/libleptris.so +0 -0
- 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: 5d0281446e3264297a6c7e7687c968e694492e034a70d3f921a485e28e4e757a
|
|
4
|
+
data.tar.gz: '06863ae7416e6e3a19760cfded622b0e00c58c2111bcd9b9c6d952d509b6340c'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd1f3d24f3b31c1691c6248c74b967bfb1648560d0c7dd8825d71532dee09a362e4ba3493634eb422063f625d060548793d224a575d2188f6a40f16f56e56a4c
|
|
7
|
+
data.tar.gz: c6ce6d9752d2416deae92628b5983a38096a7b55452bcaeebf01d292679a956328a98e7c5d14327d7a52b73249c6e5e4d52da528afd3761065fd9189a04dd8bf
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,47 @@ 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.47] - 2026-09-01
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **libleptris 1.9.26–1.9.30 lockstep**: five upstream releases —
|
|
13
|
+
the XSLT 3.0 program through `xsl:accumulator` (ordered rules,
|
|
14
|
+
lazy per-tree folds, `accumulator-before/after`), the XPath 3.1
|
|
15
|
+
composition core (`let`, `!` map, `=>` arrow), and conformance
|
|
16
|
+
fixes (misplaced `xsl:catch` now a compile error matching
|
|
17
|
+
Saxon's XTSE0010, #669). Audit 255/255, no new C surface; the
|
|
18
|
+
suite is unchanged.
|
|
19
|
+
|
|
20
|
+
## [1.9.46] - 2026-08-31
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- **Indent unit on text-bearing leaves (leptris-ruby#109 residual
|
|
25
|
+
1, upstream #658)**: the serializer's fused-leaf fast path
|
|
26
|
+
computed `indent * indent_spaces` directly, bypassing the unit
|
|
27
|
+
branch — mixed-content leaves fell back to spaces. Fixed
|
|
28
|
+
engine-side in libleptris 1.9.25; the full #109 fixture
|
|
29
|
+
(`<r><a><b/></a><c>x</c></r>`) is now byte-identical to
|
|
30
|
+
Nokogiri's output (modulo their trailing newline). The moxml
|
|
31
|
+
indent_text wiring gate is complete.
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- **libleptris 1.9.24–1.9.25 lockstep**: XSLT 3.0 increments
|
|
36
|
+
upstream (sequences and the 3.0 instruction set; grouping
|
|
37
|
+
including `group-adjacent`/`group-ending-with`, and
|
|
38
|
+
`xsl:analyze-string` with regex groups); teardown leak fixes.
|
|
39
|
+
Audit 255/255, no new C surface.
|
|
40
|
+
|
|
41
|
+
### Meta
|
|
42
|
+
|
|
43
|
+
- Head-to-head re-measure on 1.9.25: **scalar XPath now 4.61×
|
|
44
|
+
faster than Nokogiri** (`string(//item[1])`: 359 → 60 ms per 50
|
|
45
|
+
evals — #645's scalar row collapses); the cold-walk row remains
|
|
46
|
+
the documented allocation floor with `Node#visit` as the
|
|
47
|
+
adopted-by-choice lever.
|
|
48
|
+
|
|
8
49
|
## [1.9.45] - 2026-08-31
|
|
9
50
|
|
|
10
51
|
### Added
|
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.30"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED
data/lib/libleptris.so
CHANGED
|
Binary file
|