leptris 1.9.86.0 → 1.9.87.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 +12 -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: 98fcaada57f06d7350958be3b6b32e28a674f5678c2f614ce5fde1346275bd14
|
|
4
|
+
data.tar.gz: d82679ff1f601b5f1e38396870f018349ef70d2182e795c036847dcd056b0560
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d079d2dbff82f4758397014c99eafd00232584a97b28b36643b88cfeb463adc9048022b4d31b97853f5c79d5c9e50292cadc63096ff1459a2a2b02aac3415cca
|
|
7
|
+
data.tar.gz: 58feee143570aae04d01eed166b93e385cbaacba420c170675d5770bba15d152abdcc43cca48db466ff56ea9690c9e921e991de454b6e9bbcb3fdf6f88b8d0c7
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.87.0] - 2026-09-05
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Lockstep with libleptris 1.9.87** — #846: constructed elements
|
|
13
|
+
(analyze-string results, xsl:element, copies) now carry split
|
|
14
|
+
QNames with the parser shape, so prefixed XPath tests select
|
|
15
|
+
them and namespace-uri() resolves through the result's xmlns:fn
|
|
16
|
+
declaration; HTML-method serialization keeps close tags and
|
|
17
|
+
site rules off namespaced elements (s:img is not the HTML void
|
|
18
|
+
img).
|
|
19
|
+
|
|
8
20
|
## [1.9.86.0] - 2026-09-05
|
|
9
21
|
|
|
10
22
|
### 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.87"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED