findxpand 0.1.0 → 0.1.1
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/lib/findxpand/rewrite.rb +1 -1
- data/lib/findxpand/store.rb +13 -4
- data/lib/findxpand.rb +4 -2
- 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: ef918e1eb0601a773101d3adb8b1212ab2c1e948c58a7f23444a573e0a1eea35
|
|
4
|
+
data.tar.gz: 12ab12acef7154ec6187b77cd722638a55615dafffa3bdb0728cc8ef158c0bc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f8e4d22cf91f93aa0dc9785c2fe4ba7dd7f46ba1ae334986ffc6e68132a9ef4222ed9e7b4fe66e2fba5d2fd0fdabd599228d64d6e541f6aae83d88224da2d10
|
|
7
|
+
data.tar.gz: efdc1090f9ee2b8af362abd1983cb3b41df347cb8d66792d70d718e6776ba80b0f0617ab20c7a5250526b98068cedd5dad8a0b4ebfec8faae0048f375e19682a
|
data/lib/findxpand/rewrite.rb
CHANGED
|
@@ -108,7 +108,7 @@ module Findxpand
|
|
|
108
108
|
# 100 KB.
|
|
109
109
|
ATTRS = %q{(?:"[^"]*"|'[^']*'|[^>"'])*}
|
|
110
110
|
|
|
111
|
-
# Where a tag name ends.
|
|
111
|
+
# Where a tag name ends. `\b` is not this test: it is ASCII in JavaScript
|
|
112
112
|
# and PCRE and Unicode here and in Python, so `<titleé>` was rewritten as a
|
|
113
113
|
# title by Node and PHP and refused by this file and the reference - two
|
|
114
114
|
# implementations writing into an element that does not exist. A tag name
|
data/lib/findxpand/store.rb
CHANGED
|
@@ -129,10 +129,19 @@ module Findxpand
|
|
|
129
129
|
# failure it was written for. Ported 2 Sep 2026, counter and semantics
|
|
130
130
|
# unchanged, rather than reworded here (§20.1 rule 2).
|
|
131
131
|
#
|
|
132
|
-
#
|
|
133
|
-
#
|
|
134
|
-
#
|
|
135
|
-
#
|
|
132
|
+
# **Closed 3 Sep 2026.** Python and PHP both count `unmatched` now, Node
|
|
133
|
+
# carries `skip_undecodable` at zero it can never reach, and the four key
|
|
134
|
+
# sets are pinned to `middleware/conformance/counters.json` — one list, read
|
|
135
|
+
# by all four suites, exactly as `cases.json` pins the rewrite. Removing a
|
|
136
|
+
# required key now fails the suite of the language that removed it, which is
|
|
137
|
+
# the thing none of these packages could do for itself before: a missing key
|
|
138
|
+
# is invisible from inside the package that is missing it.
|
|
139
|
+
#
|
|
140
|
+
# Still outstanding, and named rather than hidden: `Degraded.reason` — which
|
|
141
|
+
# is pinned by the shared fixture — does not read `unmatched` in any
|
|
142
|
+
# language. What reads it here is `reach_reason`, this package's own layer
|
|
143
|
+
# over the shared verdict. Teaching the shared verdict to read it means a
|
|
144
|
+
# row in the fixture first, or three implementations drift from a fourth.
|
|
136
145
|
NO_COUNTERS = {
|
|
137
146
|
considered: 0, applied: 0, passed: 0, skip_encoded: 0,
|
|
138
147
|
skip_large: 0, skip_undecodable: 0, error: 0, redirect: 0, status: 0,
|
data/lib/findxpand.rb
CHANGED
|
@@ -44,7 +44,7 @@ require 'findxpand/admin'
|
|
|
44
44
|
require 'findxpand/middleware'
|
|
45
45
|
|
|
46
46
|
module Findxpand
|
|
47
|
-
VERSION = '0.1.
|
|
47
|
+
VERSION = '0.1.1'
|
|
48
48
|
|
|
49
49
|
# Not published to RubyGems, and nothing in this gem may claim otherwise.
|
|
50
50
|
#
|
|
@@ -54,7 +54,9 @@ module Findxpand
|
|
|
54
54
|
# 404, and the first thing a customer would learn about us. There is no publish
|
|
55
55
|
# workflow in this tree for any of the three packages, so `gem install
|
|
56
56
|
# findxpand` fails the same way. The CLI and the README ask here.
|
|
57
|
-
|
|
57
|
+
#
|
|
58
|
+
# There is a workflow now and it has run: verified 3 Sep 2026 by asking the registry with no credentials: npm 200 (0.1.0, latest), PyPI 200 (0.1.0), RubyGems 200 (0.1.0). Packagist is still 404, which is why PHP keeps its own flag.
|
|
59
|
+
PUBLISHED_TO_REGISTRIES = true
|
|
58
60
|
|
|
59
61
|
# Said once, wherever an install instruction appears, for as long as the gem is
|
|
60
62
|
# unpublished. Without it the command reads as a mistake.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: findxpand
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nextoria
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: One deploy. After that, approved fixes arrive as a manifest pushed to
|
|
14
14
|
your own origin and no further release is needed. The corrected HTML is produced
|