makiri 0.5.0-aarch64-linux → 0.5.1-aarch64-linux
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 +7 -4
- data/Rakefile +7 -0
- data/lib/makiri/3.2/makiri.so +0 -0
- data/lib/makiri/3.3/makiri.so +0 -0
- data/lib/makiri/3.4/makiri.so +0 -0
- data/lib/makiri/4.0/makiri.so +0 -0
- data/lib/makiri/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: dc9698d035a5e648a62aacda44694b0df5918e88cea61c52a061af4418976c7b
|
|
4
|
+
data.tar.gz: aae9379b5390003c757e98e77154c8d36e7620eaf9f0ad5b05a91af8816ba6a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef81933c52378d6368a71250397c4dd459a1fe106acf7e5974d96a82f7bee8bf74d0d1e74868d800a1efebfd0dfd8c6e99e82e689e92ce3e8b022f84a1b5bd16
|
|
7
|
+
data.tar.gz: 43d7cd497019cc3ed4f119e84d0f1a8608535187ae62f35caaa9cb2034f2021e425f8511e80e642fe861300db5c5041dc16f750767182a103aa0a44c51c0e920
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## [0.5.1] - 2026-06-22
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
* Faster CSS queries that reuse the same selector: compiled selectors are now
|
|
8
|
+
cached and reused across queries instead of being re-parsed each time.
|
|
7
9
|
|
|
8
10
|
## [0.5.0] - 2026-06-14
|
|
9
11
|
|
|
@@ -362,7 +364,8 @@ libxml2 / libxslt dependency at any layer**.
|
|
|
362
364
|
domxpath, CSS differential vs `Nokogiri::HTML5`). GitHub Actions CI across
|
|
363
365
|
Ruby 3.2–4.0 × Ubuntu/macOS plus a sanitizer job.
|
|
364
366
|
|
|
365
|
-
[Unreleased]: https://github.com/takahashim/makiri/compare/v0.5.
|
|
367
|
+
[Unreleased]: https://github.com/takahashim/makiri/compare/v0.5.1...HEAD
|
|
368
|
+
[0.5.1]: https://github.com/takahashim/makiri/compare/v0.5.0...v0.5.1
|
|
366
369
|
[0.5.0]: https://github.com/takahashim/makiri/compare/v0.4.0...v0.5.0
|
|
367
370
|
[0.4.0]: https://github.com/takahashim/makiri/compare/v0.3.0...v0.4.0
|
|
368
371
|
[0.3.0]: https://github.com/takahashim/makiri/compare/v0.2.0...v0.3.0
|
data/Rakefile
CHANGED
|
@@ -303,6 +303,13 @@ task "bench:xml" => :compile do
|
|
|
303
303
|
end
|
|
304
304
|
end
|
|
305
305
|
|
|
306
|
+
desc "Run the CSS selector-query benchmark on a note.com-style SPA page (set BENCH_CARDS)"
|
|
307
|
+
task "bench:css" => :compile do
|
|
308
|
+
Bundler.with_unbundled_env do
|
|
309
|
+
sh "#{FileUtils::RUBY} -Ilib bench/bench_css_query.rb"
|
|
310
|
+
end
|
|
311
|
+
end
|
|
312
|
+
|
|
306
313
|
namespace :conformance do
|
|
307
314
|
desc "WHATWG HTML5 parsing conformance: run html5lib-tests through Makiri"
|
|
308
315
|
task html5: :compile do
|
data/lib/makiri/3.2/makiri.so
CHANGED
|
Binary file
|
data/lib/makiri/3.3/makiri.so
CHANGED
|
Binary file
|
data/lib/makiri/3.4/makiri.so
CHANGED
|
Binary file
|
data/lib/makiri/4.0/makiri.so
CHANGED
|
Binary file
|
data/lib/makiri/version.rb
CHANGED