leptris 1.9.79.0 → 1.9.80.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: c4a64b2b4cad9f41afa0a7f3c898e9b5261ee208bfaa05d5c94d1ca1189cdf10
|
|
4
|
+
data.tar.gz: c72930ea8bd8857f357baee386878411c1539e37c3b59d24486e2ae9f0803775
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7231682cb2d4e0fd2bbfa6c9c2e9ccc6196372d2e5bba7fadcaba6e8709e533c63f06d328db2f32142846df30871345436eeb83905f7f15df72d357474075c8
|
|
7
|
+
data.tar.gz: f554480e30c3af3d5ca1d301dd77f24bbf9af92f5337d2a2458af7f3e1bac06effbe06fe0b1a06ab8b91d1cb7b39e87dd2d6afbc95eb7666b318bf0ddac2f7b0
|
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.80.0] - 2026-09-04
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Lockstep with libleptris 1.9.80** (no new C surface — the
|
|
13
|
+
audit holds at 261/261):
|
|
14
|
+
- `fn:format-number` as a plain XPath function (the JDK1.1
|
|
15
|
+
pattern grammar moved to a shared core): specced standalone
|
|
16
|
+
through `#xpath` — grouping+decimals, percent, and zero
|
|
17
|
+
padding (`12,345.68`, `42%`, `00042`).
|
|
18
|
+
- Function registry is last-registration-wins (an internal
|
|
19
|
+
`xpath_function_registry_register_ud` seam): fixes the
|
|
20
|
+
XSLT bridge's decimal-format-aware `format-number` being
|
|
21
|
+
silently shadowed inside transforms.
|
|
22
|
+
|
|
23
|
+
No perf drift: the standing battery re-run on this build holds
|
|
24
|
+
the baseline (serialize 2.9x, inner_html 4.3x, attr reads 6.5x,
|
|
25
|
+
element_children walks at parity with Nokogiri 1.19.4).
|
|
26
|
+
|
|
8
27
|
## [1.9.79.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.80"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED