leptris 1.9.56 → 1.9.57
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 +13 -0
- data/README.adoc +3 -3
- 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: 9fe43887876480fe4a97b6133facd465257fd25dc8e0304e97057c1a59bf909d
|
|
4
|
+
data.tar.gz: a3aa3e2010b04f08ae53c2fc3efeade0b8a07640610cc549dfeaa0e329f03746
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96c857442e1b239c4740f061b0a656dec46f6f09ec1501609d2c095e088f214c8b7d1b495a72f3848548621a40764bb1b16ed3ece3e0986d7a31dcd3583d409f
|
|
7
|
+
data.tar.gz: 89a40a7423ce40ded296919d5bb8532bf5e7bfc252bf301a71bee12f7f5e275134494853ae5d08d1728627c2b2d0b32b68ffcc4dd6304cbdc79dcd2b8869cbbc
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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.57] - 2026-09-03
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Lockstep with libleptris 1.9.67**: XQuery `group by $k := Expr`
|
|
13
|
+
— partitions the tuple stream in first-appearance order, group
|
|
14
|
+
variables rebound to the member list, `group by` + `order by
|
|
15
|
+
count(...)` composing per the Saxon oracle. Specced through the
|
|
16
|
+
`Leptris::XML::XQuery` face (the in-clause `:=` binding form);
|
|
17
|
+
README's XQuery list grows `group by`. No new C surface (audit
|
|
18
|
+
259/259). Also upstream: a per-query nodeset leak in the key-loop
|
|
19
|
+
rebind (caught by their Linux ASAN leg).
|
|
20
|
+
|
|
8
21
|
## [1.9.56] - 2026-09-03
|
|
9
22
|
|
|
10
23
|
### Added
|
data/README.adoc
CHANGED
|
@@ -409,9 +409,9 @@ query.eval(doc) # plain expressions keep their XPath result type;
|
|
|
409
409
|
|
|
410
410
|
Supported: the prolog (`declare variable` / `declare namespace` /
|
|
411
411
|
`declare function local:*`), nested `for` with `at` positions,
|
|
412
|
-
`let`, `where`, stable multi-key `order by`, direct and
|
|
413
|
-
constructors with attribute value templates, and plain
|
|
414
|
-
expression bodies. Known grammar gaps are
|
|
412
|
+
`let`, `where`, stable multi-key `order by`, `group by`, direct and
|
|
413
|
+
computed constructors with attribute value templates, and plain
|
|
414
|
+
XPath expression bodies. Known grammar gaps are
|
|
415
415
|
https://github.com/leptris/leptris/issues/790[tracked upstream].
|
|
416
416
|
|
|
417
417
|
`Leptris::XML.buffer_has_nonstandard_entity?(string)` is a
|
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.67"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED