leptris 1.9.50 → 1.9.51
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 +39 -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: aab0b795d90effa39a4670c8359fc2808267a48e7d93c7c1c314c3dfebb415f0
|
|
4
|
+
data.tar.gz: 52bc50c5d171632e1a45b787d22bb9a94763d1f1df885e8c8197867cb4fc6673
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0efb45ab3367594bc1781d5d88a9a9db7f2d14af84b73b844cc9a8f08ad81eed03f6bd70a14d04d21240f8fdd592dc4a725c706f5277c10536ab0189333db6eb
|
|
7
|
+
data.tar.gz: 33150488d60668fe10d62c6f00ab4129abb37816d5a940238b97283113f7cf04c4158a2b8d41e6fd8c73610242484a96bd92f35540033c7407d76cefdf1bd9d8
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,45 @@ 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.51] - 2026-09-01
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Lockstep with libleptris 1.9.36** (1.9.33 → 1.9.36; no new C
|
|
13
|
+
surface — the audit holds at 255/255 attached == exported):
|
|
14
|
+
- 1.9.33: `xsl:mode/@on-no-match`, all six dispositions.
|
|
15
|
+
- 1.9.34: XQuery-only syntax in XPath expression attributes
|
|
16
|
+
(`order by`, `try/catch`, map constructors) now raises instead
|
|
17
|
+
of compiling silently wrong (leptris/leptris#692).
|
|
18
|
+
- 1.9.35: `xsl:sequence`, `xsl:perform-sort`; fn:-catalog
|
|
19
|
+
slices (sequences, `math:`, regex trio, top-level comma
|
|
20
|
+
sequences).
|
|
21
|
+
- 1.9.36: fn: catalog grows — `fn:format-integer` (decimal,
|
|
22
|
+
0-padding, bijective base-26, roman numerals, English words),
|
|
23
|
+
strings/QNames/URIs slice (leptris/leptris#691).
|
|
24
|
+
- **Standalone XPath grew a 2/3.1 expression subset**: `let …
|
|
25
|
+
return`, `for … return`, `if/then/else`, sequence literals,
|
|
26
|
+
ranges, the `=>` arrow, `!` simple-map, and `||` concat now
|
|
27
|
+
evaluate through `Document#xpath`/`Element#xpath` directly —
|
|
28
|
+
specced. Still out (engine grammar, tracked in
|
|
29
|
+
leptris/leptris#683): value comparators (`eq`/`ne`/…),
|
|
30
|
+
quantifiers, sequence types (`instance of`/`castable`),
|
|
31
|
+
`intersect`/`except`, string templates; XQuery-only syntax
|
|
32
|
+
raises (#692). Known edge: `for`-return's scalar items come
|
|
33
|
+
back as opaque result nodes — read them through an aggregate
|
|
34
|
+
(`count(...)`, `string-join(...)`) until the engine
|
|
35
|
+
materializes readable sequence items.
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- **`shallow-skip`/`text-only-copy` drop unmatched subtrees**
|
|
40
|
+
(libleptris engine, filed as leptris/leptris#705): the built-in
|
|
41
|
+
initial descent fires matched child templates but discards
|
|
42
|
+
unmatched siblings wholesale, so both modes emit nothing without
|
|
43
|
+
a user root template. `shallow-copy`, `deep-copy`, `deep-skip`,
|
|
44
|
+
and `fail` behave per spec and are specced; the broken pair is
|
|
45
|
+
specced as pending against #705.
|
|
46
|
+
|
|
8
47
|
## [1.9.50] - 2026-09-01
|
|
9
48
|
|
|
10
49
|
### Fixed
|
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.36"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED