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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 721e8f92c3e0a856c4fb0ed79d377721eef33e9df650086388dd43f4785526e8
4
- data.tar.gz: 2fbcc34d74419e411696423ca16269cdcf9d7455adffbfba735f4fe90576d169
3
+ metadata.gz: 5d0281446e3264297a6c7e7687c968e694492e034a70d3f921a485e28e4e757a
4
+ data.tar.gz: '06863ae7416e6e3a19760cfded622b0e00c58c2111bcd9b9c6d952d509b6340c'
5
5
  SHA512:
6
- metadata.gz: 355bd883cdfcb6a0f6cebdc6ec529cee3473b66828511b666d362f50c5720b981929cf196c92ffd43f391d91fcd0b81192d43ca55fba889da1dfe7b1904e737f
7
- data.tar.gz: e998d2dcc2d66f11aa79f973064de56699fa2d47ea6dcf36fd2f075bdb75695f3a0884438e66cf120301868e49cf24892aaefb62590b19259612af52352fbe85
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.25"
11
+ LIBLEPTRIS_VERSION = "1.9.30"
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.46"
4
+ VERSION = "1.9.47"
5
5
  end
data/lib/libleptris.so CHANGED
Binary file
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.46
4
+ version: 1.9.47
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Ribose Inc.