leptris 1.9.163.7 → 1.9.174.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: a191c85c5149a0f263ca7d7ee5f8ec63b58570f2f56ecd9c3cfc6333a974eff0
4
- data.tar.gz: 7f126b1b774331af49faaea1b2dadffa7e8a170a47b917a9c3ea03d89377bbee
3
+ metadata.gz: 7e3fde2c39415a90a71f3505346bc86012166fccc1fa63b1918e97d1d6c7d0d3
4
+ data.tar.gz: 3df812e0ed1b0c00cbceacff3c59c37fbe468ada8a05eb411ad6e89b792cb09e
5
5
  SHA512:
6
- metadata.gz: 47c7ae31a849c74b9dc651439de4b55d23a038098ed7b6dbfc8ff6ec2b740d45dfb39bb3ee42ac0b0d8a7ef467f03807e77c5cba70dfa5246a957f24c901726e
7
- data.tar.gz: 8530bd56c3a373dd9bff555ed3fae96212db9792de187be21a002081be24e961601816016a3dc899482b61527424b818910cfeb85288156e95f5cd96fa7e4d8a
6
+ metadata.gz: 5f89f5a33495dfe354d6f87302981f998249c10fc0e7c64901c0b85234cb4d621c43612b221322e7e199a608217db9f94b5b4c728eb58ff2a905f352dc0f0fcf
7
+ data.tar.gz: b0245f06f74abbf56462dd2596e071a5034f903b0567a45c57987e96d94f36552f1aba1d0d0b2f476f4715d20cef5512384da4118da567fe00c150fa8fd9e5df
data/CHANGELOG.md CHANGED
@@ -5,6 +5,33 @@ 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.174.0] - 2026-09-15
9
+
10
+ ### Changed
11
+
12
+ - **libleptris 1.9.162 → 1.9.174** (lockstep): the vendored C
13
+ library moves ten upstream releases —
14
+ - **C14N spec conance** (1.9.164, upstream #1015): inclusive
15
+ C14N keeps element prefixes (`<x:b/>` no longer canonicalizes
16
+ to `<b/>`), escaping follows REC-xml-c14n 2.3 (text `>`
17
+ escapes; attribute TAB/CR/LF as character references), and
18
+ epilog PIs canonicalize correctly.
19
+ - **XSLT 3.0 xsl:iterate sequence with-params** (1.9.167,
20
+ upstream #1066 / #197): accumulated sequence members keep
21
+ their VALUES through xsl:next-iteration — the #197 repro now
22
+ joins "alpha,beta,gamma" (spec-pinned).
23
+ - HTML conformance run (1.9.165-174, upstream #659): the
24
+ WHATWG script-data state machine, before-head/frameset
25
+ phases, `</br>` handling, mid-document DOCTYPE, and 100+
26
+ html5lib corpus fixes; Nokogiri parity 785 → 793.
27
+ - XPath: cached-bytecode twin-compile store fix (1.9.172).
28
+
29
+ ### Added
30
+
31
+ - `FFI.leptris_document_first_child` — the document child-chain
32
+ head in one call (libleptris 1.9.174); `audit:symbols`
33
+ 307/307 in lockstep.
34
+
8
35
  ## [1.9.163.7] - 2026-09-15
9
36
 
10
37
  ### 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.162"
11
+ LIBLEPTRIS_VERSION = "1.9.174"
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,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Leptris
4
- VERSION = "1.9.163.7"
4
+ VERSION = "1.9.174.0"
5
5
  end
@@ -332,6 +332,11 @@ attach_function :leptris_parse_string,
332
332
  # 1.9.7, upstream #580; the libxml2 model).
333
333
  attach_function :leptris_document_node,
334
334
  [:leptris_document], :leptris_node_ref
335
+ # First node of the document child chain in one call — the
336
+ # prolog head (libleptris 1.9.174; document_node +
337
+ # node_first_child without the intermediate handle).
338
+ attach_function :leptris_document_first_child,
339
+ [:leptris_document], :leptris_node_ref
335
340
  # Wrap-free subtree visitation (1.9.20, upstream #645a):
336
341
  # enter/leave pairs for elements, depth from the walk's root,
337
342
  # one C call — no NodeSet/Array churn per level. The document
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.163.7
4
+ version: 1.9.174.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.