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 +4 -4
- data/CHANGELOG.md +34 -0
- data/Rakefile +1 -1
- 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: 69c544dd0ba17ed0a5b5792e39ac9eb31f1f3d6ebb6e13b4bc31efb9ec0046ea
|
|
4
|
+
data.tar.gz: 5e37895d36680daa6657ad8dcc5c7c1f36eba854519f4f15a815afb94744692c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
11
|
+
LIBLEPTRIS_VERSION = "1.9.46"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED