leptris 1.9.52 → 1.9.53

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: ce439698a32a7737054564af4f25866e9d49b87a86f30dee916e6d04f53e8249
4
- data.tar.gz: 947ef61ce70fd53664851fe073d7504b1a2c28a59591e2b7c04ea482bcbed605
3
+ metadata.gz: 69c544dd0ba17ed0a5b5792e39ac9eb31f1f3d6ebb6e13b4bc31efb9ec0046ea
4
+ data.tar.gz: 5e37895d36680daa6657ad8dcc5c7c1f36eba854519f4f15a815afb94744692c
5
5
  SHA512:
6
- metadata.gz: c56ca957ac03806e595f8702cf4936b5303bf51761196d9b3bc9fb2aa84fb1023becb48520e59e8ec09defc5e482e8db929ecab787fc8925754ac182eaa7a2b2
7
- data.tar.gz: 04b5685bb317af87788e52425b8b8f66b2e9b77f1d5488f65354b6631285695be22a746b6536024f4b5172d63765b6ea196d4a2de74f627e86cccf6f92365967
6
+ metadata.gz: beebbe2f1d0a908394e42da8318c8b3672ea5f773d64510e088caa5d7130e6c06f4aad1efc766df95e4dea4d870643956cb7755a01460a7d8f0cdeb2927734bc
7
+ data.tar.gz: a11675dfee638e7ecee7ea209e939c0aa9c08ef3f49404c7c6d826f845841fb9dc7473c2b09ed2022c255049fd47ac105a6c7205fe51d28b37377aeb135bbea3
data/CHANGELOG.md CHANGED
@@ -5,6 +5,40 @@ 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.53] - 2026-09-02
9
+
10
+ ### Changed
11
+
12
+ - **Lockstep with libleptris 1.9.46** (1.9.44 → 1.9.46; no new C
13
+ surface — the audit holds at 255/255 attached == exported):
14
+ - 1.9.44: `xsl:copy @select`, `xsl:namespace`, `xsl:document`,
15
+ `xsl:on-completion`, `xsl:param @default` (the 4.0 form).
16
+ - 1.9.45: `xsl:evaluate` (dynamic XPath evaluation), `xsl:merge`,
17
+ `xsl:next-iteration` param rebinding.
18
+ - 1.9.46: `xsl:result-document` (side files via `@href`, principal
19
+ result unchanged), `xsl:character-map` via `xsl:output
20
+ @use-character-maps`.
21
+ - Eleven new specs cover the working constructs through the
22
+ generic `XSLT.parse/apply_to` face (character maps through
23
+ `XSLT#serialize` — `xsl:output` lives in the engine's
24
+ output-aware serializer, not the plain document face).
25
+
26
+ ### Fixed
27
+
28
+ - **Four upstream bugs found while validating, filed from this
29
+ round** (each specced as pending against its issue):
30
+ - leptris/leptris#729: `xsl:on-completion` does not see the
31
+ enclosing `xsl:iterate` params (`Variable 'sum' not found`).
32
+ - leptris/leptris#730: `xsl:evaluate` child `xsl:with-param`
33
+ bindings are not visible to the dynamic evaluation (works
34
+ without with-params).
35
+ - leptris/leptris#731: `xsl:merge` collapses all sources into a
36
+ single merge-action with empty `current-merge-key()` — the key
37
+ never feeds the group partition.
38
+ - leptris/leptris#732: a principal result with multiple top-level
39
+ nodes silently keeps only the first element (Saxon raises);
40
+ long-standing — observed identically on 1.9.32.
41
+
8
42
  ## [1.9.52] - 2026-09-02
9
43
 
10
44
  ### 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.43"
11
+ LIBLEPTRIS_VERSION = "1.9.46"
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.52"
4
+ VERSION = "1.9.53"
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.52
4
+ version: 1.9.53
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.