leptris 1.9.80.0 → 1.9.83.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 +19 -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: 78fcd713e05c6d01061b9c5752d2ef6db9587a2bbf163690405d874e7987efdd
|
|
4
|
+
data.tar.gz: d4d130245b6487028511d7c867302a6f8b400208bf8bf0a23c08dc8ed53b15eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a071a3a65486b066e865fdc57ae7fd936dc171f31817d874cc45f1e8f4841580f11cc7e95f85728ae64831336b3b1e29b356f0b4deec2f6958202756453a022f
|
|
7
|
+
data.tar.gz: 46378854b00be4bf58d886f8a1e335c2e7a9fa8af93d8c10af2a55455aadf570911c1889ebb7a937e5c81d85376619b61d26fee4b4b1ac9c19d17f8a2a5467fc
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,25 @@ 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.83.0] - 2026-09-04
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Lockstep with libleptris 1.9.83** (1.9.81 → 1.9.83; no new C
|
|
13
|
+
surface — the audit holds at 261/261):
|
|
14
|
+
- 1.9.81: `fn:snapshot` — deep-copies each input element onto a
|
|
15
|
+
fresh anchored document (the new document-lifetime anchor
|
|
16
|
+
chain). Specced: count, navigable copies (`@id` on the
|
|
17
|
+
snapshot).
|
|
18
|
+
- 1.9.82: `fn:analyze-string` — **the last function in the #691
|
|
19
|
+
catalog**. The result is a navigable `<fn:analyze-string>`
|
|
20
|
+
element with the `fn:match`/`fn:non-match` model; the overall
|
|
21
|
+
string value equals the input. Specced (MSVC-gated like the
|
|
22
|
+
regex trio).
|
|
23
|
+
- 1.9.83: HTML PI-ish constructs — `<?target data?>` in HTML
|
|
24
|
+
input keeps the libxml2/Nokogiri PI shape (data includes the
|
|
25
|
+
trailing `?`, leading whitespace trimmed). Specced.
|
|
26
|
+
|
|
8
27
|
## [1.9.80.0] - 2026-09-04
|
|
9
28
|
|
|
10
29
|
### 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.83"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED