leptris 1.9.84.0 → 1.9.86.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 +18 -0
- data/Rakefile +1 -1
- data/lib/leptris/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d4858557ce8081f8e3434213800db7f58780e5c6458053a0ce8af46e091caad
|
|
4
|
+
data.tar.gz: 3d30aa653e678f179ee7de56708ed0d1a896fb9e9ef718aec38ad6e93b70aca1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 314f09d1545669b802a3ff9c8ca8b5122a8c73684ca7627012cb58c288cd418634bef816266eec9f675de7161d1f9c2b6b957f8afb9a5d69e28301458edb7c2e
|
|
7
|
+
data.tar.gz: 8ef633df2edfb3643de329a84624c4e2307a5939298797791103fb7e062a6c581f62e1fdc0da4594f91f9bfc5389d5ddde6c4ab75b6cfb176e00ae0a541a8480
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ 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.86.0] - 2026-09-05
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Lockstep with libleptris 1.9.86** (1.9.85 → 1.9.86; no new C
|
|
13
|
+
surface — the audit holds at 261/261):
|
|
14
|
+
- 1.9.85: HTML characterization gates for the two remaining
|
|
15
|
+
tree-builder behaviors — `<template>` is an ordinary element
|
|
16
|
+
with children in place (libxml2 predates the WHATWG
|
|
17
|
+
inert-fragment model), and misnesting closes the formatting
|
|
18
|
+
element at the outer end tag with the stray end tag dropped.
|
|
19
|
+
Both pinned binding-side as specs.
|
|
20
|
+
- 1.9.86: **HTML named-entity lookup via sorted index + binary
|
|
21
|
+
search** (was an O(2032)-entry scan per reference, leptris/
|
|
22
|
+
leptris#848). Measured: entity-heavy HTML parses at 3.7x
|
|
23
|
+
Nokogiri (984 vs 3631 µs per 110 KB document, entities in
|
|
24
|
+
every paragraph).
|
|
25
|
+
|
|
8
26
|
## [1.9.84.0] - 2026-09-05
|
|
9
27
|
|
|
10
28
|
### 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.86"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: leptris
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.86.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|