leptris 1.9.76.0 → 1.9.79.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 +4 -4
- data/CHANGELOG.md +27 -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: ecc605943fe9c9e154a041e111d380c112085f88f48b219400c3a8ce8338110b
|
|
4
|
+
data.tar.gz: 40d65c8714dcfb61ccc264d17b0b3308a80a4493482cd0e56b4b305777b41564
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10bd77fae0b857744615b7a898340db72b429c38d89139288b9b9a296308b0de93539cb94366860387826a69ea4a9d2c967e2cd495851f1824de39ecc3da51b0
|
|
7
|
+
data.tar.gz: fff392d9d72ad3f4e7fba53a361cab7d551e9fd034716acd7291248e80bb0d92cb16ea9285bdaf97a3ca23cb3f3e48396f93064f3dc58c8ef8731b34d7abcc6e
|
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.79.0] - 2026-09-04
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Lockstep with libleptris 1.9.79** (1.9.77 → 1.9.79; no new C
|
|
13
|
+
surface — the audit holds at 261/261):
|
|
14
|
+
- 1.9.77: XQuery 3.0 grammar tail — braceless `switch`,
|
|
15
|
+
`array { E }` constructors, `fn:parse-xml` /
|
|
16
|
+
`fn:parse-xml-fragment` as document nodes, nested map/array
|
|
17
|
+
lookup carrier composition.
|
|
18
|
+
- 1.9.78: the #691 catalog tail — `fn:innermost`/`outermost`,
|
|
19
|
+
`fn:has-children`, `fn:path` (positional form),
|
|
20
|
+
`fn:nilled`, `fn:base-uri`/`document-uri`/`static-base-uri`,
|
|
21
|
+
`fn:doc-available`, `fn:json-doc`, `fn:compare`,
|
|
22
|
+
`fn:codepoint-equal`, `fn:round($x, $precision)`, and
|
|
23
|
+
`fn:normalize-unicode` (utf8proc).
|
|
24
|
+
- 1.9.79: `fn:random-number-generator` (seeded, `?number`
|
|
25
|
+
lookup); one-pass template selection (`xslt_select_template`
|
|
26
|
+
/ `_next_match` no longer evaluate every pattern alternative
|
|
27
|
+
twice per dispatch candidate).
|
|
28
|
+
- Sixteen new specs cover the verified surface through `#xpath`
|
|
29
|
+
and the XQuery face.
|
|
30
|
+
- **Known build gap, documented in a pending spec**:
|
|
31
|
+
`fn:normalize-unicode` requires utf8proc, which the vendored
|
|
32
|
+
platform builds compile out (`LEPTRIS_ENABLE_UTF8PROC=OFF`) —
|
|
33
|
+
the function raises on every shipped platform gem.
|
|
34
|
+
|
|
8
35
|
## [1.9.76.0] - 2026-09-04
|
|
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.
|
|
11
|
+
LIBLEPTRIS_VERSION = "1.9.79"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED