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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e63d8af535ae0bfc72372d3ed8add688494d9a05b40175b038c7d83c4cdff15
4
- data.tar.gz: 110517ea3d517fb76f2f1b6adb623f6c50fbe731fd41ec821efb21e54de458d9
3
+ metadata.gz: 9fe43887876480fe4a97b6133facd465257fd25dc8e0304e97057c1a59bf909d
4
+ data.tar.gz: a3aa3e2010b04f08ae53c2fc3efeade0b8a07640610cc549dfeaa0e329f03746
5
5
  SHA512:
6
- metadata.gz: 14054ad4ad00851c244ffc8c9493df25c6a300bfd96f4eb9b827001e75aa5e35e06e3dcf310efc08c4fe61bc3f4030121fa5d3127cc9ce2213a367546dd2ca46
7
- data.tar.gz: a301bc6f767c7b8c67ea4c06c15b99cbe2fbec50d848eefb4c743d03aa0e1fa64d2eb49083a046c7859c6506f4ad5c7cde5dcc65779161ceff35821b29e45708
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 computed
413
- constructors with attribute value templates, and plain XPath
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.66"
11
+ LIBLEPTRIS_VERSION = "1.9.67"
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.56"
4
+ VERSION = "1.9.57"
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.56
4
+ version: 1.9.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.