@blamejs/blamejs-shop 0.4.33 → 0.4.37
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.
- package/CHANGELOG.md +8 -0
- package/lib/asset-manifest.json +1 -1
- package/lib/vendor/MANIFEST.json +54 -38
- package/lib/vendor/blamejs/.github/workflows/ci.yml +12 -12
- package/lib/vendor/blamejs/.github/workflows/npm-publish.yml +37 -5
- package/lib/vendor/blamejs/.github/workflows/release-container.yml +2 -2
- package/lib/vendor/blamejs/CHANGELOG.md +4 -0
- package/lib/vendor/blamejs/README.md +5 -2
- package/lib/vendor/blamejs/SECURITY.md +3 -1
- package/lib/vendor/blamejs/api-snapshot.json +137 -2
- package/lib/vendor/blamejs/examples/wiki/lib/source-comment-block-validator.js +1 -0
- package/lib/vendor/blamejs/index.js +4 -0
- package/lib/vendor/blamejs/lib/archive-read.js +2 -1
- package/lib/vendor/blamejs/lib/archive-tar-read.js +2 -1
- package/lib/vendor/blamejs/lib/atomic-file.js +5 -0
- package/lib/vendor/blamejs/lib/audit.js +2 -0
- package/lib/vendor/blamejs/lib/cli.js +8 -1
- package/lib/vendor/blamejs/lib/config-drift.js +2 -1
- package/lib/vendor/blamejs/lib/db.js +15 -2
- package/lib/vendor/blamejs/lib/dsa.js +482 -0
- package/lib/vendor/blamejs/lib/framework-error.js +14 -0
- package/lib/vendor/blamejs/lib/http-client.js +5 -2
- package/lib/vendor/blamejs/lib/local-db-thin.js +3 -2
- package/lib/vendor/blamejs/lib/log-stream-local.js +1 -1
- package/lib/vendor/blamejs/lib/log-stream-otlp-grpc.js +9 -2
- package/lib/vendor/blamejs/lib/log-stream-otlp.js +16 -7
- package/lib/vendor/blamejs/lib/middleware/clear-site-data.js +36 -11
- package/lib/vendor/blamejs/lib/mtls-ca.js +2 -2
- package/lib/vendor/blamejs/lib/observability.js +3 -2
- package/lib/vendor/blamejs/lib/pipl-cn.js +377 -0
- package/lib/vendor/blamejs/lib/restore-rollback.js +5 -5
- package/lib/vendor/blamejs/lib/self-update.js +1 -1
- package/lib/vendor/blamejs/lib/session.js +64 -0
- package/lib/vendor/blamejs/lib/vault/passphrase-ops.js +3 -3
- package/lib/vendor/blamejs/lib/watcher.js +8 -0
- package/lib/vendor/blamejs/package.json +2 -2
- package/lib/vendor/blamejs/release-notes/v0.15.8.json +48 -0
- package/lib/vendor/blamejs/release-notes/v0.15.9.json +58 -0
- package/lib/vendor/blamejs/scripts/generate-ssdf-attestation.js +338 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/atomic-file-rename-retry.test.js +70 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/codebase-patterns.test.js +174 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/db-init-extensions.test.js +32 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/dsa.test.js +169 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/otlp-attr-redaction.test.js +40 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/pipl-cn.test.js +172 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/session-extensions.test.js +57 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/watcher.test.js +7 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ upgrading across more than a few patches at a time.
|
|
|
8
8
|
|
|
9
9
|
## v0.4.x
|
|
10
10
|
|
|
11
|
+
- v0.4.37 (2026-06-13) — **Restore the production container — accept the node-owned tmpDir on Cloudflare Containers — and adopt blamejs 0.15.9 on Node 24.16.** The deploy-recovery release that fixes the container startup crash-loop at its root, and moves the framework forward. blamejs 0.15.0 made db.init fail-closed when the encrypted-at-rest working-copy tmpDir is not a recognized tmpfs mount (/dev/shm, /run/shm, /run/user, /tmp), so the decrypted copy can't leak to a persistent disk. The container sets BLAMEJS_TMPDIR=/app/tmp — a node-owned persistent path, used because Cloudflare's Firecracker runtime does not grant the non-root node user write access to /dev/shm — so every 0.15.x boot threw db/tmpdir-not-tmpfs and the container crash-looped, while edge-served pages stayed up. The container's filesystem is ephemeral (destroyed on stop, never snapshotted or replicated), so the disk-residency the guard protects against does not exist here; this release passes the documented opt-out (the db.allowNonTmpfsTmpDir flag on createApp) rather than weakening encryption-at-rest. With the container booting again, the release also adopts the latest blamejs 0.15.9 — SQLite parse-time resource caps on the raw-SQL surface, an atomic-rename retry that rides out transient file locks, and a one-call secure logout that emits Clear-Site-Data — and raises the Node floor to 24.16, the version 0.15.9 requires (the runtime was never implicated in the outage). Account, cart, checkout, and admin respond again. No migration to apply. **Changed:** *Vendored blamejs advanced to 0.15.9; Node floor raised to 24.16* — The vendored framework moves to 0.15.9 — node:sqlite handles construct with SQLITE_LIMIT_* caps (a 1 MiB statement parse-time cap and ATTACH denied on the raw-SQL surface), every final temp-to-destination rename retries through a transient file lock, and b.session.logout destroys a session and emits an RFC 9527 Clear-Site-Data header in one call. 0.15.9's engines floor is Node 24.16, so the package engines, the container base image, .nvmrc, and CI all move to 24.16; the runtime change is independent of and was not the cause of the startup issue fixed above. **Fixed:** *Container boots on Cloudflare Containers under blamejs 0.15.x* — The application now passes the documented db.allowNonTmpfsTmpDir opt-out to createApp, so the encrypted-at-rest tmpDir check accepts the node-owned /app/tmp path the container is forced to use on Cloudflare's Firecracker runtime (where the non-root node user cannot write /dev/shm). Encryption-at-rest stays on; the opt-out is sound because the container filesystem is ephemeral and is never snapshotted or replicated. Without it, blamejs 0.15.0+ fail-closes db.init at boot and the container crash-loops — which is what took account, cart, checkout, and admin offline. Operators running the container on a platform without a writable tmpfs for the app user need this flag; operators with a real tmpfs should point BLAMEJS_TMPDIR at it instead.
|
|
12
|
+
|
|
13
|
+
- v0.4.36 (2026-06-13) — **Pin vendored blamejs to 0.15.6 — the production container crash-loops on 0.15.7 and 0.15.8.** A deploy-recovery release that pins the vendored framework to the last version the production container booted on. The prior release attributed the container startup crash-loop to the Node minimum, but the container stayed down on Node 24.14.1 with vendored blamejs 0.15.8 — isolating the cause to the vendored framework: blamejs 0.15.7 and 0.15.8 crash-loop the deployed container's live cluster + database-bridge startup (the process exits cleanly during boot instead of staying up and listening, so the health check fails and it restarts in a loop). The in-image build smoke runs the test suite, not the production server boot, so it passes on every version and cannot catch this. This release pins the vendored blamejs back to 0.15.6 — the last version the container booted and served on — restoring account, cart, checkout, and admin. The Node minimum stays 24.14.1; it is not implicated (the container failed on 0.15.8 with 24.14.1 too). Re-adopting blamejs 0.15.7 or later is held until the startup regression is fixed. No migration to apply. **Fixed:** *Production container boots and serves again on vendored blamejs 0.15.6* — The vendored framework is pinned back to 0.15.6, the last version the deployed container completed startup on, so account, cart, checkout, and admin respond again. blamejs 0.15.7 and 0.15.8 left the container exiting during the live cluster + database-bridge boot — a path the in-image build smoke (which runs the test suite, not the production server boot) does not exercise — so they passed every build gate yet failed to stay up once deployed. The vendored tree is pinned through the vendor pipeline with integrity hashes re-stamped.
|
|
14
|
+
|
|
15
|
+
- v0.4.35 (2026-06-13) — **Restore the production container — revert the Node floor to 24.14.1 (24.16.0 crash-loops the container) and advance vendored blamejs to 0.15.8.** A deploy-recovery release that also moves the vendored framework forward. Raising the Node floor to 24.16.0 (in the prior releases) put the production container into a startup crash-loop: the application process exits cleanly during the live cluster boot instead of staying up and listening, so the platform health check fails and the container restarts in a loop. The in-image build smoke runs on Node 24.16.0 and passes — it does not exercise the live cluster + database-bridge startup the deployed container runs, so the incompatibility only surfaces on deploy. Container-backed routes (account, cart writes, checkout, admin) went down while edge-served pages stayed up. This release reverts the Node minimum to 24.14.1 — the runtime the container booted and served on — restoring those routes, and advances the vendored blamejs to 0.15.8 (whose Node floor is 24.14.1), so the framework still moves to the latest release on a runtime that works. Operators who deployed a 24.16.0-floor build on a container platform should move to this release. The Node 24.16.0 move is held pending a fix for the container-runtime incompatibility. No migration to apply. **Changed:** *Vendored blamejs advanced to 0.15.8* — The vendored framework moves to 0.15.8 (engines floor 24.14.1), refreshed through the vendor pipeline with integrity hashes re-stamped. It carries the 0.15.7/0.15.8 security and correctness work — federated-sign-in authorized-party enforcement, URL/host canonicalizer hardening, OTLP log-sink attribute redaction, and EU DSA / China PIPL compliance record-builders — none of which was implicated in the container startup issue (that was the Node runtime, confirmed by the container failing on 0.15.6 under the 24.16.0 floor too). **Fixed:** *Production container boots and serves again on Node 24.14.1* — The Node minimum is back to 24.14.1 across the container image, CI, and the package engines floor. The previous 24.16.0 floor left the deployed container exiting during the live cluster + database-bridge startup — a path the in-image build smoke (which runs the test suite, not the production server boot) cannot reach — so it passed every build gate yet failed to stay up once deployed. Account, cart, checkout, and admin respond again.
|
|
16
|
+
|
|
17
|
+
- v0.4.34 (2026-06-13) — **Pin the vendored blamejs back to 0.15.6 to restore the production container; the Node 24.16.0 floor stays.** A deploy-recovery release. The vendored blamejs 0.15.7 adopted in the previous release introduced a regression on the production container's startup path: the application process completed early and exited cleanly instead of staying up and listening, so the platform health check failed and the container was restarted in a loop. Edge-served pages (home, search, product pages) stayed up throughout because they render at the edge, but container-backed routes — account, cart writes, checkout, and the admin console — stopped responding. This release pins the vendored framework back to 0.15.6, the last version the container booted and served on, restoring those routes. The Node 24.16.0 minimum from the previous release is retained — the in-image build smoke runs on Node 24.16.0 and passes, so the runtime bump is not implicated. Re-adopting blamejs 0.15.7 is deferred until its startup-path change is understood and confirmed against a live container. No migration to apply. **Fixed:** *Container-backed routes serve again* — The production container boots and stays up on vendored blamejs 0.15.6, so account, cart, checkout, and admin respond again. The previous release's 0.15.7 left the container exiting during startup — passing the in-image build smoke but failing to stay listening once deployed, which only the live boot path (cluster startup + the D1 bridge) exercises. The vendored tree is pinned back through the vendor pipeline with integrity hashes re-stamped; the Node 24.16.0 floor is unchanged.
|
|
18
|
+
|
|
11
19
|
- v0.4.33 (2026-06-13) — **Raise the Node floor to 24.16.0 and refresh the vendored blamejs to 0.15.7.** A runtime and framework modernization. The minimum Node version is now 24.16.0 (the current LTS line) — the container base image, CI, and the package's engines floor all move together, so a deploy now runs on a Node that carries the latest LTS security patches. The vendored blamejs advances 0.15.6 → 0.15.7, a security and correctness release whose hardening reaches the shop by composition rather than new code: the OIDC ID-token verifier now enforces the authorized-party (azp) check, so a multi-audience token minted for a different client that also lists this shop in its audience array no longer verifies — closing a confused-deputy hole on Sign in with Google and Apple; the URL and host canonicalizer folds IPv4-mapped IPv6 addresses to their embedded IPv4 and strips trailing dots, so a dotted-IPv4 allowlist and a host comparison can't be slipped by an encoding trick on the outbound webhook and payment dials; and audited correctness fixes land in the background scheduler (a watchdog-abandoned run can no longer clobber the next run's state), the retention compliance floor (it now inherits the active compliance posture), credential rehashing (a digest shorter than the configured length is now flagged for upgrade), and SD-JWT key binding (audience and nonce now compare in constant time). No migration to apply. **Changed:** *Minimum Node is now 24.16.0* — The package engines floor, the container Dockerfile base image, the .nvmrc, and every CI runner move from Node 24.14.1 to 24.16.0 (LTS). Operators self-hosting the container or running the app directly must be on Node >= 24.16.0; it is a patch-level move within the same LTS line, so an existing 24.x install updates in place. The deployed container already builds on the new base. · *Vendored blamejs advanced 0.15.6 → 0.15.7* — The shop carries blamejs as a vendored, zero-runtime-dependency copy, refreshed through the vendor pipeline (not hand-edited) with per-file integrity hashes re-stamped. The shop's surface is unchanged — every primitive it composes kept its contract — so there is nothing to migrate; the security and correctness fixes below ride along because the shop already composes the affected primitives. **Security:** *Federated sign-in enforces the OIDC authorized-party check* — The OIDC verifier behind Sign in with Google and Apple now rejects a multi-audience ID token that omits an authorized-party (azp) claim, and any token whose azp is not this shop's client id — per OIDC Core 3.1.3.7. This closes a confused-deputy gap where a token minted for a different relying party, but whose audience array also listed this shop, would verify clean. Single-audience tokens (the common case) are unaffected. · *Outbound-host allowlist comparison resists encoding tricks* — The URL and host canonicalizer the shop runs on operator-supplied webhook endpoints (and the payment-provider dials) now folds an IPv4-mapped IPv6 address to its embedded IPv4 and strips trailing dots before any allowlist or SSRF comparison, so a dual-stack peer can no longer present one host form to the allowlist and resolve to another, and host. / host.. no longer evade a host check.
|
|
12
20
|
|
|
13
21
|
- v0.4.32 (2026-06-13) — **Refresh the vendored blamejs framework to 0.15.6 — sign-in token hardening, SSRF-safe host canonicalization, and background-delivery reliability fixes.** A vendored-framework refresh from blamejs 0.14.22 to 0.15.6, picking up a run of security and correctness fixes in the foundation the shop is built on. The most shop-relevant: federated sign-in (Sign in with Google / Apple) is hardened — a SAML response whose subject confirmation omits an expiry is rejected instead of treated as fresh forever, and the OIDC ID-token verifier no longer lets a normal token skip expiry validation; the SSRF guard now canonicalizes obfuscated host and IP forms to one string before any allowlist comparison, so encoding tricks can't slip a request past the media-upload fetch or an outbound payment dial; and background delivery is more durable — a crashed publisher's in-flight outbox job is reclaimed, a server-sent-event connection caps its outbound buffer and evicts a stalled client instead of growing the heap, and a worker-pool task queued behind one that timed out is no longer dropped. The vendored tree is the single source of truth and was refreshed through the vendor pipeline, not hand-edited; per-file integrity hashes are re-stamped. No migration to apply. **Changed:** *Vendored blamejs advanced 0.14.22 → 0.15.6* — The shop carries blamejs as a vendored, zero-runtime-dependency copy; this release refreshes it across the 0.15 line. The shop's own surface is unchanged — every primitive it composes kept its contract — so there is nothing to migrate. The improvements below ride along in the foundation. **Fixed:** *Background delivery survives a crashed publisher and a slow client* — The outbox now reclaims a job left in-flight by a publisher that crashed mid-delivery, restoring at-least-once delivery for the shop's queued mail and outbound webhooks; server-sent-event connections cap their per-connection outbound buffer and evict a stalled client instead of growing memory without bound; and a background worker-pool task queued behind one that timed out is no longer silently dropped. A membership query against a sealed (encrypted) column now hashes each candidate so it returns results instead of failing, and a retention preview no longer rewrites the whole database file. **Security:** *Federated sign-in rejects unbounded and expiry-skipped assertions* — On the OIDC and SAML paths the shop uses for Sign in with Google and Apple, a SAML response whose Bearer or Holder-of-Key subject confirmation has no NotOnOrAfter is now refused rather than accepted as never-expiring, and the OIDC ID-token verifier restricts the expiry-validation bypass to back-channel-logout tokens bounded by an issued-at floor — a normal ID token can no longer be accepted past its expiry. · *SSRF allowlist comparison canonicalizes host and IP forms first* — Outbound fetches — the operator media-upload-from-URL path and the payment-provider dials — go through an SSRF guard that now collapses obfuscated host and IP encodings to a single canonical form before checking them, closing the gap where an encoding trick could present one string to the allowlist and resolve to another.
|
package/lib/asset-manifest.json
CHANGED
package/lib/vendor/MANIFEST.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"_about": "blamejs.shop vendors a single framework — blamejs — which itself bundles every server-side crypto/identity dependency. The transitive packages blamejs ships are surfaced in its own MANIFEST.json at lib/vendor/blamejs/lib/vendor/MANIFEST.json — Trivy / Grype rely on that nested data for CVE attribution.",
|
|
4
4
|
"packages": {
|
|
5
5
|
"blamejs": {
|
|
6
|
-
"version": "0.15.
|
|
7
|
-
"tag": "v0.15.
|
|
6
|
+
"version": "0.15.9",
|
|
7
|
+
"tag": "v0.15.9",
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"author": "blamejs contributors",
|
|
10
10
|
"source": "https://github.com/blamejs/blamejs",
|
|
@@ -406,6 +406,7 @@
|
|
|
406
406
|
"lib/did.js": "lib/vendor/blamejs/lib/did.js",
|
|
407
407
|
"lib/dora.js": "lib/vendor/blamejs/lib/dora.js",
|
|
408
408
|
"lib/dr-runbook.js": "lib/vendor/blamejs/lib/dr-runbook.js",
|
|
409
|
+
"lib/dsa.js": "lib/vendor/blamejs/lib/dsa.js",
|
|
409
410
|
"lib/dsr.js": "lib/vendor/blamejs/lib/dsr.js",
|
|
410
411
|
"lib/dual-control.js": "lib/vendor/blamejs/lib/dual-control.js",
|
|
411
412
|
"lib/early-hints.js": "lib/vendor/blamejs/lib/early-hints.js",
|
|
@@ -682,6 +683,7 @@
|
|
|
682
683
|
"lib/parsers/safe-yaml.js": "lib/vendor/blamejs/lib/parsers/safe-yaml.js",
|
|
683
684
|
"lib/permissions.js": "lib/vendor/blamejs/lib/permissions.js",
|
|
684
685
|
"lib/pick.js": "lib/vendor/blamejs/lib/pick.js",
|
|
686
|
+
"lib/pipl-cn.js": "lib/vendor/blamejs/lib/pipl-cn.js",
|
|
685
687
|
"lib/pqc-agent.js": "lib/vendor/blamejs/lib/pqc-agent.js",
|
|
686
688
|
"lib/pqc-gate.js": "lib/vendor/blamejs/lib/pqc-gate.js",
|
|
687
689
|
"lib/pqc-software.js": "lib/vendor/blamejs/lib/pqc-software.js",
|
|
@@ -822,6 +824,8 @@
|
|
|
822
824
|
"release-notes/v0.15.5.json": "lib/vendor/blamejs/release-notes/v0.15.5.json",
|
|
823
825
|
"release-notes/v0.15.6.json": "lib/vendor/blamejs/release-notes/v0.15.6.json",
|
|
824
826
|
"release-notes/v0.15.7.json": "lib/vendor/blamejs/release-notes/v0.15.7.json",
|
|
827
|
+
"release-notes/v0.15.8.json": "lib/vendor/blamejs/release-notes/v0.15.8.json",
|
|
828
|
+
"release-notes/v0.15.9.json": "lib/vendor/blamejs/release-notes/v0.15.9.json",
|
|
825
829
|
"release-notes/v0.2.x.json": "lib/vendor/blamejs/release-notes/v0.2.x.json",
|
|
826
830
|
"release-notes/v0.3.x.json": "lib/vendor/blamejs/release-notes/v0.3.x.json",
|
|
827
831
|
"release-notes/v0.4.x.json": "lib/vendor/blamejs/release-notes/v0.4.x.json",
|
|
@@ -841,6 +845,7 @@
|
|
|
841
845
|
"scripts/gen-migrating.js": "lib/vendor/blamejs/scripts/gen-migrating.js",
|
|
842
846
|
"scripts/generate-changelog-entry.js": "lib/vendor/blamejs/scripts/generate-changelog-entry.js",
|
|
843
847
|
"scripts/generate-release-signing-key.js": "lib/vendor/blamejs/scripts/generate-release-signing-key.js",
|
|
848
|
+
"scripts/generate-ssdf-attestation.js": "lib/vendor/blamejs/scripts/generate-ssdf-attestation.js",
|
|
844
849
|
"scripts/publish-dep-confusion-placeholder.sh": "lib/vendor/blamejs/scripts/publish-dep-confusion-placeholder.sh",
|
|
845
850
|
"scripts/refresh-api-snapshot.js": "lib/vendor/blamejs/scripts/refresh-api-snapshot.js",
|
|
846
851
|
"scripts/refresh-vendor-manifest.js": "lib/vendor/blamejs/scripts/refresh-vendor-manifest.js",
|
|
@@ -966,6 +971,7 @@
|
|
|
966
971
|
"test/layer-0-primitives/asyncapi.test.js": "lib/vendor/blamejs/test/layer-0-primitives/asyncapi.test.js",
|
|
967
972
|
"test/layer-0-primitives/atomic-file-conflict-path.test.js": "lib/vendor/blamejs/test/layer-0-primitives/atomic-file-conflict-path.test.js",
|
|
968
973
|
"test/layer-0-primitives/atomic-file-exclusive-temp.test.js": "lib/vendor/blamejs/test/layer-0-primitives/atomic-file-exclusive-temp.test.js",
|
|
974
|
+
"test/layer-0-primitives/atomic-file-rename-retry.test.js": "lib/vendor/blamejs/test/layer-0-primitives/atomic-file-rename-retry.test.js",
|
|
969
975
|
"test/layer-0-primitives/attach-user-bearer-scheme.test.js": "lib/vendor/blamejs/test/layer-0-primitives/attach-user-bearer-scheme.test.js",
|
|
970
976
|
"test/layer-0-primitives/audit-checkpoint-false-rollback.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-checkpoint-false-rollback.test.js",
|
|
971
977
|
"test/layer-0-primitives/audit-cve-defensive.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-cve-defensive.test.js",
|
|
@@ -1113,6 +1119,7 @@
|
|
|
1113
1119
|
"test/layer-0-primitives/dora.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dora.test.js",
|
|
1114
1120
|
"test/layer-0-primitives/dpop-middleware-replaystore-required.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dpop-middleware-replaystore-required.test.js",
|
|
1115
1121
|
"test/layer-0-primitives/dr-runbook.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dr-runbook.test.js",
|
|
1122
|
+
"test/layer-0-primitives/dsa.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dsa.test.js",
|
|
1116
1123
|
"test/layer-0-primitives/dsr-state-rules.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dsr-state-rules.test.js",
|
|
1117
1124
|
"test/layer-0-primitives/dsr.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dsr.test.js",
|
|
1118
1125
|
"test/layer-0-primitives/dual-control.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dual-control.test.js",
|
|
@@ -1283,6 +1290,7 @@
|
|
|
1283
1290
|
"test/layer-0-primitives/passkey-real-vectors.test.js": "lib/vendor/blamejs/test/layer-0-primitives/passkey-real-vectors.test.js",
|
|
1284
1291
|
"test/layer-0-primitives/passkey.test.js": "lib/vendor/blamejs/test/layer-0-primitives/passkey.test.js",
|
|
1285
1292
|
"test/layer-0-primitives/permissions.test.js": "lib/vendor/blamejs/test/layer-0-primitives/permissions.test.js",
|
|
1293
|
+
"test/layer-0-primitives/pipl-cn.test.js": "lib/vendor/blamejs/test/layer-0-primitives/pipl-cn.test.js",
|
|
1286
1294
|
"test/layer-0-primitives/pqc-agent-curve.test.js": "lib/vendor/blamejs/test/layer-0-primitives/pqc-agent-curve.test.js",
|
|
1287
1295
|
"test/layer-0-primitives/pqc-software.test.js": "lib/vendor/blamejs/test/layer-0-primitives/pqc-software.test.js",
|
|
1288
1296
|
"test/layer-0-primitives/privacy-pass.test.js": "lib/vendor/blamejs/test/layer-0-primitives/privacy-pass.test.js",
|
|
@@ -1431,10 +1439,10 @@
|
|
|
1431
1439
|
".github/workflows/actions-lint.yml": "sha256:d108da8e5eb9041ea245d9e5d6b8386f7d18b89e866663adb7fe78e0801ab68b",
|
|
1432
1440
|
".github/workflows/cflite_batch.yml": "sha256:802702ebad6b041b3f2f960aa4c645017e51f6455de40eb7ee92e8f83374d485",
|
|
1433
1441
|
".github/workflows/cflite_pr.yml": "sha256:618131bb2e66b07a74e9a70ac652aec15611ba271ca676832b7592048cd95ce7",
|
|
1434
|
-
".github/workflows/ci.yml": "sha256:
|
|
1442
|
+
".github/workflows/ci.yml": "sha256:c7c0c8e22307348ff51993dc9d5cafe1f6f270bb8fa2a5aacaaaf2e223c14a9b",
|
|
1435
1443
|
".github/workflows/codeql.yml": "sha256:d314708c984aca73e52f888c7372d7eb1d41866ee93354302d22e6b3553fcef4",
|
|
1436
|
-
".github/workflows/npm-publish.yml": "sha256:
|
|
1437
|
-
".github/workflows/release-container.yml": "sha256:
|
|
1444
|
+
".github/workflows/npm-publish.yml": "sha256:d7ca54674d8ba343a0b5e2e6d3a7d3c11242b54ffea1f4cc6e4b036ff51415aa",
|
|
1445
|
+
".github/workflows/release-container.yml": "sha256:12f101dd4c08590e5b109259849a2f527f767d520990663cd67a7ba51d00b605",
|
|
1438
1446
|
".github/workflows/scorecard.yml": "sha256:aa71fc1bb925b2e69aec2bd8dabe2f8831f0bac660ed6b0905131155af550b3d",
|
|
1439
1447
|
".github/workflows/sha-to-tag-verify.yml": "sha256:48166f90ab60835d9cb1dc3852389d7e39821a54353dea85b6d43fccf12779c1",
|
|
1440
1448
|
".github/zizmor.yml": "sha256:fe08e66c5763dfb4edf1ea33e715f04e514b1baceb3a242241d8a60793db51d2",
|
|
@@ -1444,7 +1452,7 @@
|
|
|
1444
1452
|
".npmrc": "sha256:66f104e7d07c496d2d0409988225e8c0e4ceb8d247dbcac3be75b2128d20ce66",
|
|
1445
1453
|
".pinact.yaml": "sha256:0213ffda55961dc49b64c0a5dfa3c0567419633b1499d57eaf7c8d842d7da6c7",
|
|
1446
1454
|
"ARCHITECTURE.md": "sha256:9b1c8d2b1b7a41838eb348b0a008e4b4369718fd72bfe2974b37155f7536d35b",
|
|
1447
|
-
"CHANGELOG.md": "sha256:
|
|
1455
|
+
"CHANGELOG.md": "sha256:1fbff6fbb09ea0afa8f4d36223613903e7de64115e81678a6dad6731b9389aef",
|
|
1448
1456
|
"CODE_OF_CONDUCT.md": "sha256:148a281960fff7c2fe6554dab66da572c72245ddeb00b0d14811558397bff386",
|
|
1449
1457
|
"CONTRIBUTING.md": "sha256:bb4dbdbc8598da31dbce653a8ed322e08ff46560173f2eb67a4d684653948332",
|
|
1450
1458
|
"GOVERNANCE.md": "sha256:906df6afb1f552b27b9acb50f7f96c47b917a2f1021cd4e987dbf4ee0e0a821b",
|
|
@@ -1452,9 +1460,9 @@
|
|
|
1452
1460
|
"LTS-CALENDAR.md": "sha256:8ed8c0051c3d4e14637a24555751b07758fbac2678688d9e1aca2ce312bcf585",
|
|
1453
1461
|
"MIGRATING.md": "sha256:3dcc952a3d4a77d53ff60fb67cb5eb5c3a3db2449d7c71f9c4dc7f868097153c",
|
|
1454
1462
|
"NOTICE": "sha256:f487fa47a11aca0f89e2615cdd3c713e9842abf7a30d8d328eeeae1c864aa774",
|
|
1455
|
-
"README.md": "sha256:
|
|
1456
|
-
"SECURITY.md": "sha256:
|
|
1457
|
-
"api-snapshot.json": "sha256:
|
|
1463
|
+
"README.md": "sha256:150eb46744302c8bc7fbb49140e7e9cf4ca9591527b25ca4d81d7ba62ce0b587",
|
|
1464
|
+
"SECURITY.md": "sha256:169b7977a8d5927208df6e93f753a15324b2d14a2de17ba571bf459f5e4fa8c8",
|
|
1465
|
+
"api-snapshot.json": "sha256:44c0e14ab3374aa4e06ff6d427f58de8dd2fbd052e759399154c2cbe84dd0a18",
|
|
1458
1466
|
"assets/BlameJS_Logo.png": "sha256:3c65699753c771b48ef9ac7f45bb40815ec19a23afcdd0cd30ef4601bbbe293e",
|
|
1459
1467
|
"assets/BlameJS_Logo.svg": "sha256:dda44f3fb1343d5de9db6b1fcdb75fc649c57e7a99a8e8239fcf852e3841e1a8",
|
|
1460
1468
|
"bench/README.md": "sha256:74202f2507fd840bfc1ac6c681975d9273cf36cca6e0f72655f138337304033c",
|
|
@@ -1508,7 +1516,7 @@
|
|
|
1508
1516
|
"examples/wiki/lib/opts-resolver.js": "sha256:d5a7f1153e265a267b899515a42726afad6ecd8921f22fe5f3d17e9b81783c05",
|
|
1509
1517
|
"examples/wiki/lib/page-generator.js": "sha256:056cf57ad85ff89f3708e5eec54ceda40ff7fccd7ee074d9553ed74788f4eceb",
|
|
1510
1518
|
"examples/wiki/lib/section.js": "sha256:373d86c66fbd20ad086c3929fffca5da1fd1fb4ca43bc969c43bc5f826f67eb9",
|
|
1511
|
-
"examples/wiki/lib/source-comment-block-validator.js": "sha256:
|
|
1519
|
+
"examples/wiki/lib/source-comment-block-validator.js": "sha256:68159925581eda94f292c8063e494835e371f33c7cda16883bab86a8495e037f",
|
|
1512
1520
|
"examples/wiki/lib/source-doc-parser.js": "sha256:ef3dd07420e8b8e6ac8f3eedc0764b06953acb67ebb8c53bba967fceb450abd0",
|
|
1513
1521
|
"examples/wiki/lib/symbol-index.js": "sha256:4f2bcffecf2106409c8d6e09db244fc5469402c0abf5d7c65a68bb63b7bec60b",
|
|
1514
1522
|
"examples/wiki/migrations/0001-pages-schema.js": "sha256:2760bf17df257d9e8c96ef5740ec258782c0bf316e6ae6f9409d63c3efe0d28b",
|
|
@@ -1649,7 +1657,7 @@
|
|
|
1649
1657
|
"fuzz/safe-url_seed_corpus/05-ipv6.txt": "sha256:b210575d6e9f91b70d1616c89a38bf81e66e4356dcf204a3d40f1932961d01cc",
|
|
1650
1658
|
"fuzz/safe-url_seed_corpus/06-idn.txt": "sha256:9f163641afe7046491b09f95684e30aac38b3cbf243afb115c556ae4fc0339f0",
|
|
1651
1659
|
"fuzz/safe-vcard.fuzz.js": "sha256:20ef167055ea75b6138bc6dc9d8cbdcf108d92be2792571a0162b849671354bd",
|
|
1652
|
-
"index.js": "sha256:
|
|
1660
|
+
"index.js": "sha256:c6eb60de189308bf427f4028d532b6bb61ac36c2df9771faad04cb3fd07fa6a9",
|
|
1653
1661
|
"keys/release-pqc-pub.json": "sha256:38fb7f580ccc06c5682c5c3f12b43441d4fdd3e79cf57afb8b3dab3a73af290d",
|
|
1654
1662
|
"lib/_test/crypto-fixtures.js": "sha256:91470fc813e41eeed06dee1e8fbb92d179af77eb01109c1256f7330cb2fc0980",
|
|
1655
1663
|
"lib/a2a-tasks.js": "sha256:8308a8a00790035090ae2912030c288e0cf4eaa29134f4c73bb38ddef02a4e59",
|
|
@@ -1685,8 +1693,8 @@
|
|
|
1685
1693
|
"lib/app.js": "sha256:a3633c332d36dc6ffa6bd9aa4ff25361aaf9a78a2b1e70ca7dd8f379787191e6",
|
|
1686
1694
|
"lib/archive-adapters.js": "sha256:36bc6f985740ae6880a61b196956c909f47cb880c12bc0c601ba393e88ff9ff3",
|
|
1687
1695
|
"lib/archive-gz.js": "sha256:18af2eab4098555abe82ad76851541ebb601f34d75ee9368a57dbd8933676a64",
|
|
1688
|
-
"lib/archive-read.js": "sha256:
|
|
1689
|
-
"lib/archive-tar-read.js": "sha256:
|
|
1696
|
+
"lib/archive-read.js": "sha256:985869aa1bb195a5e9e421aa2a1060e15f7c8a2f235cbf9bdc953faf0b181175",
|
|
1697
|
+
"lib/archive-tar-read.js": "sha256:7397b7d51e442f17ba08eee126687a99de8812379e2cf1631405c0e20938f7ad",
|
|
1690
1698
|
"lib/archive-tar.js": "sha256:2723c58ca3dd715a15082cba958e2a4fb335356de3f3405faf23f72026f79c4d",
|
|
1691
1699
|
"lib/archive-wrap.js": "sha256:57e075cdf386b0eea63bdbfeb856ca82931d3b6d410dfde2c6dfc595c2dbb56a",
|
|
1692
1700
|
"lib/archive.js": "sha256:7f95e586bd50db04dc899480fbd26c771ceb7d8416de5e86d1a9e72d7d49e17f",
|
|
@@ -1696,12 +1704,12 @@
|
|
|
1696
1704
|
"lib/asyncapi-bindings.js": "sha256:2f6f3d7ea836d0483e40f08b8202d78bae54bdc3d76b5faf57d918e699ebeac8",
|
|
1697
1705
|
"lib/asyncapi-traits.js": "sha256:e6e4dc44462d14cb8f56ca87e5b2fa6df3ef78ff54d45b0730196acb85c9b00b",
|
|
1698
1706
|
"lib/asyncapi.js": "sha256:c26da54ab6760da0043178abb85960e857b6e8f77f31dc3ced8db95760e25a00",
|
|
1699
|
-
"lib/atomic-file.js": "sha256:
|
|
1707
|
+
"lib/atomic-file.js": "sha256:bf17551e8cf7bb7a5cf1950cb96552eea1d80c294db79571266cb4bd21991522",
|
|
1700
1708
|
"lib/audit-chain.js": "sha256:4b668e4e17c858661cbe59d3234c38f25854ae4e4d960e9c870d91d9bb29fdf0",
|
|
1701
1709
|
"lib/audit-daily-review.js": "sha256:e7214791f9682079e70ff4d9ad942ac867128782d78db1d0b53883d57bbe31b5",
|
|
1702
1710
|
"lib/audit-sign.js": "sha256:b84ca212181a2a6181d7e26b6315638e95d7459ecdb0142705d0daab9d26714c",
|
|
1703
1711
|
"lib/audit-tools.js": "sha256:b870b4f988b6dfb604ec1e81d51a6cc8713ca6ff0204a894106641a0c2cb01f6",
|
|
1704
|
-
"lib/audit.js": "sha256:
|
|
1712
|
+
"lib/audit.js": "sha256:e64185cc31c6728f1278306db0cb723674ba6533e395012450f58996ebef172d",
|
|
1705
1713
|
"lib/auth-bot-challenge.js": "sha256:9c9a0e0b07d4da63afc02fc88a0a8c9dd22364836718a8e8152d2e83dd04d022",
|
|
1706
1714
|
"lib/auth-header.js": "sha256:5cc83773b69e1641d6b50929f1d6183b9532dbbff3ba53e479ac1e1056b5d01d",
|
|
1707
1715
|
"lib/auth/aal.js": "sha256:085846a97f30310f3687837dc64368c231497bfbc9ed6e9a2cb7fdcc06ccc302",
|
|
@@ -1755,7 +1763,7 @@
|
|
|
1755
1763
|
"lib/chain-writer.js": "sha256:15ba5a9235d8692e72b3da008e330907e34d62f19c60ccc2063df83e48e3f56d",
|
|
1756
1764
|
"lib/circuit-breaker.js": "sha256:54244401ef17e588341176cece113b39f42c55ac3cfefe8f46b5172835b26f8c",
|
|
1757
1765
|
"lib/cli-helpers.js": "sha256:ab292718a0076b66c32fc4a19a8150c25030cb7cff4bef9363612c29cb66f119",
|
|
1758
|
-
"lib/cli.js": "sha256:
|
|
1766
|
+
"lib/cli.js": "sha256:b1adbb76040121723b26d80a34a18bc5ccf1790e9ccccdaa9c6634d70c33b992",
|
|
1759
1767
|
"lib/client-hints.js": "sha256:946a874a97eec85beec55281cb577becc5cbac3a732ae7ac2ba9e948f61ed880",
|
|
1760
1768
|
"lib/cloud-events.js": "sha256:001043964b61e36f62dc7f97874df3e12bbf81f75b491514b8ef18b696800ccb",
|
|
1761
1769
|
"lib/cluster-provider-db.js": "sha256:d480a0afe22b5a083b4bfbdcf337d08a3a4a79307f35fb819c4e9a75f03bd02e",
|
|
@@ -1774,7 +1782,7 @@
|
|
|
1774
1782
|
"lib/compliance-sanctions-fuzzy.js": "sha256:ec6f76fc40a245ff40a36f59a4d81ac8f20c16c2dbf9462e5c78bb58cbe36ba4",
|
|
1775
1783
|
"lib/compliance-sanctions.js": "sha256:9c924bce4d6fbdd884f6aac385537b5798006569f6370184530f3ef39a64f712",
|
|
1776
1784
|
"lib/compliance.js": "sha256:c6fe0a6398a511f7d8f607345f603e91c2c1708e841527ba9e4b5747a7eff5bc",
|
|
1777
|
-
"lib/config-drift.js": "sha256:
|
|
1785
|
+
"lib/config-drift.js": "sha256:24496ad850c4ca473ceb1478e642613480a813a16704d93ada3d19901087a606",
|
|
1778
1786
|
"lib/config.js": "sha256:07e20539293e9e365690addc902bc623e213c5ece972dc5b72199b375a17e66d",
|
|
1779
1787
|
"lib/consent.js": "sha256:7a101c997ad040a2845648670b866425935c3cda96a48dc678723ca2cd20f76d",
|
|
1780
1788
|
"lib/constants.js": "sha256:b64ae02d0ad14def9b572d446aab267f67c458de7e9073c6701786159a6e7960",
|
|
@@ -1804,7 +1812,7 @@
|
|
|
1804
1812
|
"lib/db-query.js": "sha256:ff10f1ff5be12be39b6fe6f000562fa03165b4e58b0b2e862c575659be8fd75d",
|
|
1805
1813
|
"lib/db-role-context.js": "sha256:fa97dd17a8de1278a76a01d7979c3c847295c5efe1f14ab90701ca0e98f9bd3b",
|
|
1806
1814
|
"lib/db-schema.js": "sha256:b504b64f47b07c4756f81a4c585c009401be06bffe9bd993af3afd1c0c92e28d",
|
|
1807
|
-
"lib/db.js": "sha256:
|
|
1815
|
+
"lib/db.js": "sha256:62b43de136f62548867a048a27f9f5b9cda0329fd07bcc98bc3b9c4674e2eb49",
|
|
1808
1816
|
"lib/dbsc.js": "sha256:37942972918443cf6ce192524dff61c2ac360b95f27d5e514ce7d665a288ea93",
|
|
1809
1817
|
"lib/ddl-change-control.js": "sha256:efda2a1618e0bf0b5221d59a8eaebec1958cea5394c3b101daf7e209724e3e5c",
|
|
1810
1818
|
"lib/deprecate.js": "sha256:95d227e20cd0b7f1ba5314e0c09432c23ebd405de0d5057f2527e2602cdcf21c",
|
|
@@ -1812,6 +1820,7 @@
|
|
|
1812
1820
|
"lib/did.js": "sha256:1836e2c7ddbe84cf02576bab00972e142e33b502f54e97132c2e003e522b3c2d",
|
|
1813
1821
|
"lib/dora.js": "sha256:21f1cfc8f4fc0a3c95023459e406ff5624cbfd4dba79025fa81a211a01cbf9d1",
|
|
1814
1822
|
"lib/dr-runbook.js": "sha256:b11c0f229f1a410ca4268456eefb14a1c0eca16a5d972bd883f97840896dedf0",
|
|
1823
|
+
"lib/dsa.js": "sha256:f056992797b0bc9ab1b83423a440773e68dcc874173f349d8b3ea72826354f40",
|
|
1815
1824
|
"lib/dsr.js": "sha256:ef74ea980fb327350e7bfcf3d3570b6c3e17a6670f751bded5412a7c02b38b76",
|
|
1816
1825
|
"lib/dual-control.js": "sha256:7b0bc61722be7df45d2ae161ed2a2ec7e33ac5f118175f29b4c58fec364b54e3",
|
|
1817
1826
|
"lib/early-hints.js": "sha256:c50ffcf15192bc37a51d0a76d451da01583f288aefbbf9cb57423f05944031da",
|
|
@@ -1832,7 +1841,7 @@
|
|
|
1832
1841
|
"lib/flag-targeting.js": "sha256:c2b5096e04dcaa98435c66cfa6b1aae02d0da708ca7e96f810627ef38e669309",
|
|
1833
1842
|
"lib/flag.js": "sha256:3eab2c7e2f86fdf0a099d4ba287ec69486ee985c5496077ce79167979f6fccaf",
|
|
1834
1843
|
"lib/forms.js": "sha256:ffe0cbff94588efc021038164f44eef87909a6588e84df6cddbfa994975b33d5",
|
|
1835
|
-
"lib/framework-error.js": "sha256:
|
|
1844
|
+
"lib/framework-error.js": "sha256:930000ec6163ebcbf8ecf8c6e9d088f934a59991f53d221b049e044c038c8295",
|
|
1836
1845
|
"lib/framework-files.js": "sha256:689fb8e65ef70633c8ab40f874346fd5f818bdc182690f362545667bf9b5e607",
|
|
1837
1846
|
"lib/framework-schema.js": "sha256:9fa41be8dce62f7516c46d1d62f98ead1b663658b81030ba034ab904ca234d52",
|
|
1838
1847
|
"lib/framework-sha1-hibp.js": "sha256:07f0e4032c988e3543872ab03a0898e3d1c0791b02a2089686da9d0032b5ffeb",
|
|
@@ -1903,7 +1912,7 @@
|
|
|
1903
1912
|
"lib/html-balance.js": "sha256:325db4349ac4c968704e295f2c8cbec330c2d64908c89e9192ab443572c14910",
|
|
1904
1913
|
"lib/http-client-cache.js": "sha256:5bc95d801cffbde654d5216963dec888ff12ff150c2e82129f0f6d1dbb88b6cf",
|
|
1905
1914
|
"lib/http-client-cookie-jar.js": "sha256:d0e859a9b548a3dc97e3418a1698b27336021f8f7d6c5327b2004dd710fa06dc",
|
|
1906
|
-
"lib/http-client.js": "sha256:
|
|
1915
|
+
"lib/http-client.js": "sha256:812c9261a86a2133d158ce80883263f755656619998aedb140beb02df03e5101",
|
|
1907
1916
|
"lib/http-message-signature.js": "sha256:9aae3f9231c607d4fdc7693aa8b473744af807bff07b7c50c3cf1bd0b07a3283",
|
|
1908
1917
|
"lib/http2-teardown.js": "sha256:61d291c34e321e18b64d60a4c0253e638550fff7dc32568b980d3aa13bb178e2",
|
|
1909
1918
|
"lib/i18n-messageformat.js": "sha256:9f7cc5761f9343e87a210b58706eed01fbfb66c563ad479e75a492b1365a25a1",
|
|
@@ -1928,11 +1937,11 @@
|
|
|
1928
1937
|
"lib/lazy-require.js": "sha256:1ac3c23e6d59e7c2d5c58e9245703506d4a88244f214b37b972c30b2d947b60c",
|
|
1929
1938
|
"lib/legal-hold.js": "sha256:acb087dfdd857157e012de19e576c6b73e2ca0cc9f9d5235dda394da815bab24",
|
|
1930
1939
|
"lib/link-header.js": "sha256:145387aeccc1eb6cfa63d42a7690c166673df5b0fc2dd77b69654d293f36a153",
|
|
1931
|
-
"lib/local-db-thin.js": "sha256:
|
|
1940
|
+
"lib/local-db-thin.js": "sha256:8f563e6c7fe1c52458405fd23d3f43ade5289c982101b76f9abf87c1eb7db484",
|
|
1932
1941
|
"lib/log-stream-cloudwatch.js": "sha256:0482086871bfb0de4a0039a8d90556a2730fa61c59da9749e09380f754967b73",
|
|
1933
|
-
"lib/log-stream-local.js": "sha256:
|
|
1934
|
-
"lib/log-stream-otlp-grpc.js": "sha256:
|
|
1935
|
-
"lib/log-stream-otlp.js": "sha256:
|
|
1942
|
+
"lib/log-stream-local.js": "sha256:1b0926149cf08fb61f2dd55914c5442b1659d322fe6235e473f941e19483d37e",
|
|
1943
|
+
"lib/log-stream-otlp-grpc.js": "sha256:cc1dea9411030d0c468e86331143fad25a0f79757b25dd0866646be55abae298",
|
|
1944
|
+
"lib/log-stream-otlp.js": "sha256:715c666c29e822fe48881edde0520009dc4c0506f6ae39a75560d99e8e74e319",
|
|
1936
1945
|
"lib/log-stream-syslog.js": "sha256:21ded5786bb01d1791e5687d77c2dd710f8a0330750d32a740afb9c4700ffb77",
|
|
1937
1946
|
"lib/log-stream-webhook.js": "sha256:390d771da48b3b084d1438f05a348ca34390084d5972074f75742110718e4622",
|
|
1938
1947
|
"lib/log-stream.js": "sha256:9ffda79044835670fba447876b617b1d5cef0592abf08b52167e2ae7b6bcdba7",
|
|
@@ -1988,7 +1997,7 @@
|
|
|
1988
1997
|
"lib/middleware/body-parser.js": "sha256:2016447bd64afe411ca6b4fc322408de032663da646577fba635c70d362c7bdb",
|
|
1989
1998
|
"lib/middleware/bot-disclose.js": "sha256:823431fadefe867ab4e60f25fd53cce8c9e67563bf56e003fa35e8a29881ae0f",
|
|
1990
1999
|
"lib/middleware/bot-guard.js": "sha256:804c5925d87583ccb7660dfe597d37234f1ae823e6751f4121de5626629f6102",
|
|
1991
|
-
"lib/middleware/clear-site-data.js": "sha256:
|
|
2000
|
+
"lib/middleware/clear-site-data.js": "sha256:6bd806673e0a12ac284bad04ab3dbce7ece25ab523e81ed057665acb593b5023",
|
|
1992
2001
|
"lib/middleware/compose-pipeline.js": "sha256:160719627523db40f35bfada8c9df670c93ffec042890698936497c2c0f20bdb",
|
|
1993
2002
|
"lib/middleware/compression.js": "sha256:0c51bab49458af588e8e74725e3d40b281940c4bd942a8ee47c756f999b9c7a6",
|
|
1994
2003
|
"lib/middleware/cookies.js": "sha256:a286f947b343313c21f620c4a36eed66fe44dea4c8bc32b230559d877aaf9b4c",
|
|
@@ -2038,7 +2047,7 @@
|
|
|
2038
2047
|
"lib/migrations.js": "sha256:eba38bb3b30ce7915576087af0ef8baaf37b1db9c27f3b0fb32b262592a34933",
|
|
2039
2048
|
"lib/mime-parse.js": "sha256:9f6e685e1c18883fbd219823a11b4e06e602d5453add8cc845d2d78df93f1781",
|
|
2040
2049
|
"lib/money.js": "sha256:423e7f03bb490fc5ede6dab0c624b39629cf8cce2d9871e62f8e0d7d4d3abca8",
|
|
2041
|
-
"lib/mtls-ca.js": "sha256:
|
|
2050
|
+
"lib/mtls-ca.js": "sha256:30b620b58e30f322dc32542b65a5db8ae770b9e9d05127664a38e18b9eb68bd4",
|
|
2042
2051
|
"lib/mtls-engine-default.js": "sha256:bb2e47de5b8a6fa03f433c4c8ecc02fc7e7841f9eff97a36e7a4379880c81cd7",
|
|
2043
2052
|
"lib/network-byte-quota.js": "sha256:f07b3eb80e7091101b8eeae069f41aaaba91f93ebe703513e1195e9f41464a2a",
|
|
2044
2053
|
"lib/network-dane.js": "sha256:1ef443337d0b954735932271e3f60452fb60d83fd1e8d24b5d363d9b93458bf4",
|
|
@@ -2071,7 +2080,7 @@
|
|
|
2071
2080
|
"lib/object-store/sigv4.js": "sha256:a0342e3107d208ae46fbe9db77a8e5bdc911ed8aba72efb2c4a905b6df2be3b5",
|
|
2072
2081
|
"lib/observability-otlp-exporter.js": "sha256:8a78ce733f87f8b83414b050a85ce243b13e2a268c501504f5e2f153dfcf04f6",
|
|
2073
2082
|
"lib/observability-tracer.js": "sha256:ab005ecba1ac73c776f038a3957637497fe71fe871cb6a8ec3dbd79339ec9e96",
|
|
2074
|
-
"lib/observability.js": "sha256:
|
|
2083
|
+
"lib/observability.js": "sha256:fd581572fb0116f1be8a74b25a7b96d9ccb5722af2a51832d1f88819f30ed7bf",
|
|
2075
2084
|
"lib/openapi-paths-builder.js": "sha256:dee2b700562b6f7c8815f00bae7fc0928dd391ce5379ab970ba2c2b5f8134175",
|
|
2076
2085
|
"lib/openapi-schema-walk.js": "sha256:8a46b681dce7887902f59a86adf3fc6226eeb903e5205228a7397f7fec036efe",
|
|
2077
2086
|
"lib/openapi-security.js": "sha256:091ca0f5ee89bda7474850eecb90be9501054f28390e9825139e1cad2bf997d7",
|
|
@@ -2088,6 +2097,7 @@
|
|
|
2088
2097
|
"lib/parsers/safe-yaml.js": "sha256:0b0edde55ccdd7b76da6e215baa3dd43519371157841db16246247ff818ffdfc",
|
|
2089
2098
|
"lib/permissions.js": "sha256:86ecd3bbf80c65dacdf4a98101d421fa9d97a8632d11c34e578c9b23334b4e9d",
|
|
2090
2099
|
"lib/pick.js": "sha256:928f912af380154ff2aa380419e5a5fbd979f85d90b49bb0b538d75cfb016852",
|
|
2100
|
+
"lib/pipl-cn.js": "sha256:3cc63a68fda3db7210c5c7fa35a5f4c38d389ce8e20acec7d314c811b25699ea",
|
|
2091
2101
|
"lib/pqc-agent.js": "sha256:47319cf87a43d93ded8e8b4e3e52d156c8d57b0053fe6ca53ed2b8b8d8259c40",
|
|
2092
2102
|
"lib/pqc-gate.js": "sha256:18a8c7bc9f01a5ce2a87f22474e4601ae0ad99d4264f0f7c5c85e5ca0c2c68c2",
|
|
2093
2103
|
"lib/pqc-software.js": "sha256:0945fa073cbf3683b6e524a868155eb966285d7409432cef6de85f7b1a9290e7",
|
|
@@ -2112,7 +2122,7 @@
|
|
|
2112
2122
|
"lib/request-helpers.js": "sha256:d42afee7dbcc34d654d6d73cf3328cce8dfdff5c87930f87c61837591f7c7441",
|
|
2113
2123
|
"lib/resource-access-lock.js": "sha256:87d2efdf2e1a3b8ee58f693c40718590d725d2fbd4b08a93be01aaa8917833f7",
|
|
2114
2124
|
"lib/restore-bundle.js": "sha256:ad3b5cf880a38724bb5aa1b1bb5bdf6995a856ff1e8bbb34097c2082d1ce18d5",
|
|
2115
|
-
"lib/restore-rollback.js": "sha256:
|
|
2125
|
+
"lib/restore-rollback.js": "sha256:5de724d418a48f1c9c3332a2c6d20ab734f2c0cf76382f11a8e939a66f89d9f5",
|
|
2116
2126
|
"lib/restore.js": "sha256:bb2607ac36c2ab4d94115fba14f6ed71bf071bdddf74bd8e6c1be939982d3de4",
|
|
2117
2127
|
"lib/retention.js": "sha256:c63a61c6145f694a9acdbda68466a80d21e59835f66e8cdfa842941c11d64ea0",
|
|
2118
2128
|
"lib/retry.js": "sha256:785a4e7bad551354b8b84d5c01092fcfde88b49bf8ff646557b28fbb3d25302e",
|
|
@@ -2146,11 +2156,11 @@
|
|
|
2146
2156
|
"lib/security-assert.js": "sha256:4a98cec339c0b421534fc650c9500fe8a1b39f89181d651a58a13e2ff9a8ae0f",
|
|
2147
2157
|
"lib/seeders.js": "sha256:3a1582bef19a24aab5c6253c6e273210901f3cad5ae66d713a147214f7694c52",
|
|
2148
2158
|
"lib/self-update-standalone-verifier.js": "sha256:66a946cf9a1567a0ad6f288a4a919085e46e388c634fd6de341033df6ac56b94",
|
|
2149
|
-
"lib/self-update.js": "sha256:
|
|
2159
|
+
"lib/self-update.js": "sha256:1b44a062249705a7c4b8cc7fb5b5de81da6d08d0833aadc690d16e48d67d982b",
|
|
2150
2160
|
"lib/server-timing.js": "sha256:74f2556480363c860a7c80a3f2bc1adb68fee53aa4335059069fae66a1eb627c",
|
|
2151
2161
|
"lib/session-device-binding.js": "sha256:9bdae416fef6f0ece95a49f047531af7119c3e5384a7dced8af89c0c45e7874e",
|
|
2152
2162
|
"lib/session-stores.js": "sha256:b79de919061a2bfeb090185bcc511919fb01d3e7a495fe0a7c711cf6cf65137b",
|
|
2153
|
-
"lib/session.js": "sha256:
|
|
2163
|
+
"lib/session.js": "sha256:08631c5e2a2f8c80d61f7a800637ab4f92ecc4b3b7bc305eb90a8eb591c6e3d2",
|
|
2154
2164
|
"lib/slug.js": "sha256:bcebb078559528e6bb50a6244633d425ffdd861bb7a708c2b201eae3b3c44b35",
|
|
2155
2165
|
"lib/sql.js": "sha256:1a2ce0a5ab1b0aef28b667572c3ea655b287f58aa61983ed6fb6e2375c820f59",
|
|
2156
2166
|
"lib/sse.js": "sha256:bdadec1c0ed962908275716dd635c3f30517d1a9bef19782564cb6ad2ad02b16",
|
|
@@ -2176,7 +2186,7 @@
|
|
|
2176
2186
|
"lib/validate-opts.js": "sha256:cefcb9256f8676f6ce6fa3c796467643ae44692078bb00c4c5b49ec20652aba9",
|
|
2177
2187
|
"lib/vault-aad.js": "sha256:c728cfdc38cdd0e6a38b2c3353431a22aca7724b7bb0b8eebaf8f00c0087aa7b",
|
|
2178
2188
|
"lib/vault/index.js": "sha256:47dc94fac353d6457f0456ce3ef1dfb225f10fcd2d1b479337b42f46a8bdbaa6",
|
|
2179
|
-
"lib/vault/passphrase-ops.js": "sha256:
|
|
2189
|
+
"lib/vault/passphrase-ops.js": "sha256:094883b5c33a436b467d5e27a4ff6f6349256d9e1fe58d3d22ba02dd743c8925",
|
|
2180
2190
|
"lib/vault/passphrase-source.js": "sha256:33d869d7d3aa55dd96dda7b82be50253b844c2f5b2a546a3f67e5e2c483d9306",
|
|
2181
2191
|
"lib/vault/rotate.js": "sha256:b6828edeae90f6448d0e382d599ae7b22ac7552772a76b7f48035bb8d4fd0723",
|
|
2182
2192
|
"lib/vault/seal-pem-file.js": "sha256:b3df47212003e23d8283a2d9d18389893af10018dc7c3f9c8afb02aa9ba31ee8",
|
|
@@ -2198,7 +2208,7 @@
|
|
|
2198
2208
|
"lib/vendor/simplewebauthn-server.cjs": "sha256:f359a782ac57e3ff56ac71083d17f5c082f88ab49d645fc2bede398b47adebdb",
|
|
2199
2209
|
"lib/vendor/vendor-data-pubkey.js": "sha256:a12afa34cd7472e2eaebad2fcd44714102d3edd0601e45769404124a513926d0",
|
|
2200
2210
|
"lib/vex.js": "sha256:9eed3a322ce4679fe1930f83d406f0fcabb05d6f2cde18beafa2371774f894bf",
|
|
2201
|
-
"lib/watcher.js": "sha256:
|
|
2211
|
+
"lib/watcher.js": "sha256:8618da919affabbe4c4d33915647b3ee4b27e6ea091638f032d4bfead797baf8",
|
|
2202
2212
|
"lib/web-push-vapid.js": "sha256:55b2e1243f9d846b30a75746f0a98b2b6f75cacba3ea82d6422ea5bf084abefb",
|
|
2203
2213
|
"lib/webhook.js": "sha256:36d86e9ee329256a0d6bfe6598a4758dc2cb873a0fa535d3a4dcc96e748d9bd3",
|
|
2204
2214
|
"lib/websocket-channels.js": "sha256:3f89d92906d9a4fcc13786e996ddc140d2792d6d689ed550391fe28a247442c8",
|
|
@@ -2212,7 +2222,7 @@
|
|
|
2212
2222
|
"oss-fuzz/projects/blamejs/README.md": "sha256:ae13b7bb79ed8d69b1b3276e5562807a0349fb6e6b7d11cf1f683aad1eafdb4b",
|
|
2213
2223
|
"oss-fuzz/projects/blamejs/build.sh": "sha256:0ced1cf21782c97be7f8d74faf5e27a308b60b2f858836fb5ca3b8c4e939a8f7",
|
|
2214
2224
|
"oss-fuzz/projects/blamejs/project.yaml": "sha256:59f2cb83aa622325a175b77416fe155be15b70a9c798bd1a78bba05763b1b03d",
|
|
2215
|
-
"package.json": "sha256:
|
|
2225
|
+
"package.json": "sha256:694b07eb18afa4c73f5bcb288b4b6d98365da7473857950af3d3d35a14e19292",
|
|
2216
2226
|
"release-notes/v0.0.x.json": "sha256:7a49819f30068ee119000cad7010194882bb8bfaa12acbdab4dfc066efb7982f",
|
|
2217
2227
|
"release-notes/v0.1.x.json": "sha256:6742a8c17f947c5cb76f69dead7eea86b942d80621d914b774ba5488e09937e5",
|
|
2218
2228
|
"release-notes/v0.10.x.json": "sha256:fe498045daf88337bd3d987e5964aa42c99a50e1685b6f09e51f698b8687726f",
|
|
@@ -2228,6 +2238,8 @@
|
|
|
2228
2238
|
"release-notes/v0.15.5.json": "sha256:cca1d0edd5d6fc41b512d19d98be224b990dcab41478622c11962f0fcb1bb09a",
|
|
2229
2239
|
"release-notes/v0.15.6.json": "sha256:0e3b9e5e43b70b61dd258c3003d1b8729cd3c26c62a34dedcca81bbec5d31077",
|
|
2230
2240
|
"release-notes/v0.15.7.json": "sha256:b7d153b3528bae9415739cae57202eea18085d0b6214e10dfe69c1486acae783",
|
|
2241
|
+
"release-notes/v0.15.8.json": "sha256:1026125b050f9a155f3b4c595556de0fe3bc2675261aab5db1eef01590208364",
|
|
2242
|
+
"release-notes/v0.15.9.json": "sha256:df705aab619e6105db447da5f53995a0db0916495257c704a2ffe3890f135529",
|
|
2231
2243
|
"release-notes/v0.2.x.json": "sha256:985e27ff5de04cfc7869a3986dd0b9f0fcdfcddfb67d3fae3f4ae70856722d7e",
|
|
2232
2244
|
"release-notes/v0.3.x.json": "sha256:e2db5eae66977b272bb185cad668386afb8fd33998a17c22eb6e411c0f8ca588",
|
|
2233
2245
|
"release-notes/v0.4.x.json": "sha256:c3d19cb9c50a976432fc0bb612c87741d8728ae37562b501e6f1eccd01dd574d",
|
|
@@ -2247,6 +2259,7 @@
|
|
|
2247
2259
|
"scripts/gen-migrating.js": "sha256:2177f6b9bf60d6e9c161a0419caa248d2bef9eb7beb5223a10e8cab3ecc555b1",
|
|
2248
2260
|
"scripts/generate-changelog-entry.js": "sha256:2c0a1a395d2d1b30c1679883c694e27dc6f8e73d950c4deeb118ef5a4f01fd12",
|
|
2249
2261
|
"scripts/generate-release-signing-key.js": "sha256:3d4cc30a446a8a358b6180a5be7e4e88f2e1722fb1567f4379a335ffc03a50d9",
|
|
2262
|
+
"scripts/generate-ssdf-attestation.js": "sha256:7e57ed8e47375ff48f1e505812bd2a8d7d3dbc555d3d5fa935a6ca8ac9b2810e",
|
|
2250
2263
|
"scripts/publish-dep-confusion-placeholder.sh": "sha256:f6ea193c7f79fe08ba86df8533fad093381b4786fcac71aecdfff47fb115c9b6",
|
|
2251
2264
|
"scripts/refresh-api-snapshot.js": "sha256:1f6830a5d23aeeb3c93cb2eea00a016a2ed0de201d350e891b21374010613a6b",
|
|
2252
2265
|
"scripts/refresh-vendor-manifest.js": "sha256:48fc297ff66ed907a979bc07ffc747ccd7c2aa63c3bb3001d729239ee1e967d5",
|
|
@@ -2372,6 +2385,7 @@
|
|
|
2372
2385
|
"test/layer-0-primitives/asyncapi.test.js": "sha256:835f999d8cb96d7d94b35d950d71bd1995af088ec6296e82256959972fb4d7fb",
|
|
2373
2386
|
"test/layer-0-primitives/atomic-file-conflict-path.test.js": "sha256:b1e95ff12e5f6871762cc23ed6b862b4cf18097b743e5d4f90abaa4e53601794",
|
|
2374
2387
|
"test/layer-0-primitives/atomic-file-exclusive-temp.test.js": "sha256:9a0a6193b8051caf1a5e34a7f0be6b12ec92abcadb26468384b0484c55984144",
|
|
2388
|
+
"test/layer-0-primitives/atomic-file-rename-retry.test.js": "sha256:4669ec79347c38427d4d2229a884d705c1deddb3a88e2b55376a3420ae0c7f4c",
|
|
2375
2389
|
"test/layer-0-primitives/attach-user-bearer-scheme.test.js": "sha256:ceaae361e8678ce81ca7cd3bdfb4b9ae2ae075f69d8e99685372f4a025dc4f92",
|
|
2376
2390
|
"test/layer-0-primitives/audit-checkpoint-false-rollback.test.js": "sha256:1b1d3136fe37f7bb1cd6de6350d312d9549d5a6b0e2a7ce9f0873dfe5361ad22",
|
|
2377
2391
|
"test/layer-0-primitives/audit-cve-defensive.test.js": "sha256:641406414b62a0927cd2500b95426b4ad6b72fb4f9baccd2c5d650a6e1e65782",
|
|
@@ -2446,7 +2460,7 @@
|
|
|
2446
2460
|
"test/layer-0-primitives/cluster-storage.test.js": "sha256:5627e621dff001e236b668e04336eb39c9fe08a4a7d45a640e6e7fccce37a022",
|
|
2447
2461
|
"test/layer-0-primitives/cluster-vault-rotation.test.js": "sha256:3514e9e71d6c39e805248f58ad2f41528d091e196c0f3766a032675677161b2d",
|
|
2448
2462
|
"test/layer-0-primitives/cms-codec.test.js": "sha256:7e46078ed82be5b69d22c48f22dba37ea5015371c2a8cf5f94fb1a792fb7bb78",
|
|
2449
|
-
"test/layer-0-primitives/codebase-patterns.test.js": "sha256:
|
|
2463
|
+
"test/layer-0-primitives/codebase-patterns.test.js": "sha256:1a2cc84dd43a4bf53379ac219e5cc5a36d3371e429b6a89efcf7ed83b0c8daed",
|
|
2450
2464
|
"test/layer-0-primitives/compliance-ai-act.test.js": "sha256:5ee4ad05d12233cb3c5457ef10a727833710bbc1ce1318838f9f9ef5d2cb8d4b",
|
|
2451
2465
|
"test/layer-0-primitives/compliance-cascade.test.js": "sha256:ee02cf14541a837a9d7977c6ea6bf7f9210bed293925d93c976e31f270aebec4",
|
|
2452
2466
|
"test/layer-0-primitives/compliance-eaa.test.js": "sha256:8afb3fa66f3f9452592995e77f5e0644d8c82de2321c551c6f5be6002b2c27a4",
|
|
@@ -2495,7 +2509,7 @@
|
|
|
2495
2509
|
"test/layer-0-primitives/db-collection-extensions.test.js": "sha256:324e0c243c054f8bcdb2e0a160fdce2abe90430b253e95dc7b8739e0a18ef886",
|
|
2496
2510
|
"test/layer-0-primitives/db-collection.test.js": "sha256:cadc965ed6b3388cd2c871ba45319f30627218fdf75a7708e55571f4a4e778fe",
|
|
2497
2511
|
"test/layer-0-primitives/db-column-gate.test.js": "sha256:b57c1465907f8db7c23a0dfdca77c7f81ec4cdc4afbd33b2ea4b7ad7c8f6ac93",
|
|
2498
|
-
"test/layer-0-primitives/db-init-extensions.test.js": "sha256:
|
|
2512
|
+
"test/layer-0-primitives/db-init-extensions.test.js": "sha256:77963608dac33cdc8d22688d3ca2227f7fe1ddc1419ff6524f806f1b94dbdbcf",
|
|
2499
2513
|
"test/layer-0-primitives/db-key-aad.test.js": "sha256:4facf830efd0b5b8af394b9fbc1a5c0f0b26788287013248ade7542cea6aa331",
|
|
2500
2514
|
"test/layer-0-primitives/db-query-cross-schema.test.js": "sha256:9a21cab75881299f160032f388e9494232d4d4cade53c9550c734124dde5a785",
|
|
2501
2515
|
"test/layer-0-primitives/db-query-extensions.test.js": "sha256:312e5bf181274bea8017861d9c02b848c8058dde402c9e28cd3b043fb6e5ac78",
|
|
@@ -2519,6 +2533,7 @@
|
|
|
2519
2533
|
"test/layer-0-primitives/dora.test.js": "sha256:868bec1df000111db68b6bbbc036fb1d690ad54d431120624cd212fe6c26a405",
|
|
2520
2534
|
"test/layer-0-primitives/dpop-middleware-replaystore-required.test.js": "sha256:d9545ff47438cc57e0d9d65fdb411d8f064a19d0d23e203e59d2ba41f4a5c829",
|
|
2521
2535
|
"test/layer-0-primitives/dr-runbook.test.js": "sha256:9665caaa90f356d0237e0e6c6889c56a3467b20c7eaf78d2e2afa51c4b3af2cb",
|
|
2536
|
+
"test/layer-0-primitives/dsa.test.js": "sha256:2cdbdd29b9c58d738920bb4f82f73492eab56e7d7f8111f1cdb14838de3a3ab3",
|
|
2522
2537
|
"test/layer-0-primitives/dsr-state-rules.test.js": "sha256:0ddc7fd6d5d3f8817d8f4aad7bb66c6bf6e64eafe61fdedaafa8f60957d20bd0",
|
|
2523
2538
|
"test/layer-0-primitives/dsr.test.js": "sha256:4e2e099658cc77d6ba5ebdaa48d1362adaee5b4aec109ddcb7bc1cf6bf4f112f",
|
|
2524
2539
|
"test/layer-0-primitives/dual-control.test.js": "sha256:2d9255f96bddbb45d75182ef826a355536e40caeb5864483c56eaf5ba3c7e0ac",
|
|
@@ -2682,13 +2697,14 @@
|
|
|
2682
2697
|
"test/layer-0-primitives/observability.test.js": "sha256:969600b4e53437d0efdb326cd7e4df06f807afd5c5d4f21100091f1c1e764258",
|
|
2683
2698
|
"test/layer-0-primitives/openapi.test.js": "sha256:2e552cbb27b70ac28688632364defc9d063b3b26ff45788012e656bce8ba31e3",
|
|
2684
2699
|
"test/layer-0-primitives/otel-export.test.js": "sha256:78c0103b69f04270b35f1d4f14471c4aa085bdad0b55667e2f182f94c2a3f7b6",
|
|
2685
|
-
"test/layer-0-primitives/otlp-attr-redaction.test.js": "sha256:
|
|
2700
|
+
"test/layer-0-primitives/otlp-attr-redaction.test.js": "sha256:1285109e41bd7d225b1ee78f7f5df8f4604c2d35dc1c0410e7c9795cff7db3d7",
|
|
2686
2701
|
"test/layer-0-primitives/outbox-inflight-reaper.test.js": "sha256:b4d65c14c7d8aa7712424f2a685fd7bc44b306650c14e3ff5047b2f021ac81f4",
|
|
2687
2702
|
"test/layer-0-primitives/pagination.test.js": "sha256:432bbead37b57079f91429c2f3998aed28eb947086f8b0b8ebbd111fa3abdb07",
|
|
2688
2703
|
"test/layer-0-primitives/parsers-standalone.test.js": "sha256:165683dd46724386493f5acb11f102123517ed7d07754f02065e8e0a9f9e57b5",
|
|
2689
2704
|
"test/layer-0-primitives/passkey-real-vectors.test.js": "sha256:c8d986440e9c6d7ca78f8b03054d077f7b11af8326b6319aaaa569fb9cebf0bd",
|
|
2690
2705
|
"test/layer-0-primitives/passkey.test.js": "sha256:ae7b213deb42dc8412d496eab91071b4f65518ca0d37e24f17ecb31c095dc7fe",
|
|
2691
2706
|
"test/layer-0-primitives/permissions.test.js": "sha256:b8cc87f2e5b2bc39c784d3cf372620eaa37037e33c43c16addc4ad000c802ba2",
|
|
2707
|
+
"test/layer-0-primitives/pipl-cn.test.js": "sha256:8d01dec33a47e9e3d7e403f33db3165d7bdc69eb78cef9a949edd6c69902305f",
|
|
2692
2708
|
"test/layer-0-primitives/pqc-agent-curve.test.js": "sha256:c0eac9ba5e8eb254661cd8b42b49fa006de626db2d18574550b79b9542b02998",
|
|
2693
2709
|
"test/layer-0-primitives/pqc-software.test.js": "sha256:d744e9640e9ae1acafb7218be446a58c5739707b86b8c64a8c4c1304cca8ff5b",
|
|
2694
2710
|
"test/layer-0-primitives/privacy-pass.test.js": "sha256:54f6002ac9c22df44710c9d1db130cfec292bea98185cc9f819dd3c7d2aeacfa",
|
|
@@ -2759,7 +2775,7 @@
|
|
|
2759
2775
|
"test/layer-0-primitives/self-update.test.js": "sha256:fa9d1ccab264806f61973bc2292950d0b12ed56c8e220960dc1f1f2c163d35ae",
|
|
2760
2776
|
"test/layer-0-primitives/server-timing.test.js": "sha256:03fbad2878a8d629c0abf59c175d6de7b113e49b3eaffbdcd950b03920e54693",
|
|
2761
2777
|
"test/layer-0-primitives/session-device-binding.test.js": "sha256:1d9c4dcbe972f1036293cdafe3313a16883afbacdb25af58bbdbd6211d85d27a",
|
|
2762
|
-
"test/layer-0-primitives/session-extensions.test.js": "sha256:
|
|
2778
|
+
"test/layer-0-primitives/session-extensions.test.js": "sha256:b1144768ad7556fcb86cdfdc00768b61324a2cba5784a0533ef20efa2b839a3d",
|
|
2763
2779
|
"test/layer-0-primitives/shape-match.test.js": "sha256:ce63e3be16ff7055fe0a24ffd314e6878a8d2145043a2e2bbc3821f3d9d48b7d",
|
|
2764
2780
|
"test/layer-0-primitives/sigv4-bucket-ops.test.js": "sha256:72891b4f6d053dbbc40d58c6fa413191d71e7d37dea068f46ec0d96299cf7696",
|
|
2765
2781
|
"test/layer-0-primitives/sigv4-multipart-sse.test.js": "sha256:8572b0293afd4ce0dab01af66184b033527556f4907db8f1d87f09fed956cc24",
|
|
@@ -2803,7 +2819,7 @@
|
|
|
2803
2819
|
"test/layer-0-primitives/vendor-data.test.js": "sha256:e216ae83b187c66f1002c419e4af2701573e5743666007b564a0257332bc0c9b",
|
|
2804
2820
|
"test/layer-0-primitives/vendor-manifest.test.js": "sha256:55685bd11686bf76495ec29769470de05a6aaf4648d2b5722d96f213d9e32587",
|
|
2805
2821
|
"test/layer-0-primitives/vex.test.js": "sha256:4a06e3e9a6ea8ffe3ab2c0af69cbe2835c1d50768c184308bb2e40638c8998cc",
|
|
2806
|
-
"test/layer-0-primitives/watcher.test.js": "sha256:
|
|
2822
|
+
"test/layer-0-primitives/watcher.test.js": "sha256:346ef70ff89e9d4b6ba27f6a1859be0cd782b8224930c7c3d2ead5d495c08dd7",
|
|
2807
2823
|
"test/layer-0-primitives/web-push-vapid.test.js": "sha256:4634dcf1c3fdae300b291d20473285a9d9fe2f49f9c54e4e3a2e149768d3fe32",
|
|
2808
2824
|
"test/layer-0-primitives/webhook.test.js": "sha256:1cccad47005af4806e4253379434d9518e1965ec05bf6f7ddc957442b9fac737",
|
|
2809
2825
|
"test/layer-0-primitives/websocket-channels.test.js": "sha256:8e1249fd11c4ae1253c8b76cc8638c9cdce2081046d6b80a9a6db0cd71d2716c",
|
|
@@ -57,10 +57,10 @@ jobs:
|
|
|
57
57
|
with:
|
|
58
58
|
persist-credentials: false
|
|
59
59
|
|
|
60
|
-
- name: Set up Node 24.
|
|
60
|
+
- name: Set up Node 24.16.0 LTS
|
|
61
61
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
62
62
|
with:
|
|
63
|
-
node-version: '24.
|
|
63
|
+
node-version: '24.16.0'
|
|
64
64
|
|
|
65
65
|
- name: Show Node + npm version
|
|
66
66
|
run: node --version && npm --version
|
|
@@ -142,10 +142,10 @@ jobs:
|
|
|
142
142
|
with:
|
|
143
143
|
persist-credentials: false
|
|
144
144
|
|
|
145
|
-
- name: Set up Node 24.
|
|
145
|
+
- name: Set up Node 24.16.0 LTS
|
|
146
146
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
147
147
|
with:
|
|
148
|
-
node-version: '24.
|
|
148
|
+
node-version: '24.16.0'
|
|
149
149
|
|
|
150
150
|
- name: Resolve wiki framework dep (file:../..)
|
|
151
151
|
working-directory: examples/wiki
|
|
@@ -164,10 +164,10 @@ jobs:
|
|
|
164
164
|
with:
|
|
165
165
|
persist-credentials: false
|
|
166
166
|
|
|
167
|
-
- name: Set up Node 24.
|
|
167
|
+
- name: Set up Node 24.16.0 LTS
|
|
168
168
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
169
169
|
with:
|
|
170
|
-
node-version: '24.
|
|
170
|
+
node-version: '24.16.0'
|
|
171
171
|
|
|
172
172
|
- name: Compare against committed baseline
|
|
173
173
|
# Fails on breaking changes (removed methods, type changes).
|
|
@@ -191,7 +191,7 @@ jobs:
|
|
|
191
191
|
- name: Set up Node
|
|
192
192
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
193
193
|
with:
|
|
194
|
-
node-version: 24.
|
|
194
|
+
node-version: 24.16.0
|
|
195
195
|
- name: Run vendor-currency check
|
|
196
196
|
# Hits registry.npmjs.org/<pkg>/latest for each npm-mapped entry
|
|
197
197
|
# (vendored bundles plus per-component versions on meta-bundles
|
|
@@ -216,7 +216,7 @@ jobs:
|
|
|
216
216
|
- name: Set up Node
|
|
217
217
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
218
218
|
with:
|
|
219
|
-
node-version: 24.
|
|
219
|
+
node-version: 24.16.0
|
|
220
220
|
- name: Run actions-currency check
|
|
221
221
|
# Resolves each pinned `uses: owner/repo@<sha> # vX.Y.Z` against
|
|
222
222
|
# the GitHub API (releases/latest, falling back to highest
|
|
@@ -295,10 +295,10 @@ jobs:
|
|
|
295
295
|
with:
|
|
296
296
|
persist-credentials: false
|
|
297
297
|
|
|
298
|
-
- name: Set up Node 24.
|
|
298
|
+
- name: Set up Node 24.16.0 LTS
|
|
299
299
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
300
300
|
with:
|
|
301
|
-
node-version: '24.
|
|
301
|
+
node-version: '24.16.0'
|
|
302
302
|
|
|
303
303
|
- name: Install wiki deps (links @blamejs/core for the opts probe)
|
|
304
304
|
# opts-resolver.js requires @blamejs/core at top-of-file; the
|
|
@@ -326,10 +326,10 @@ jobs:
|
|
|
326
326
|
with:
|
|
327
327
|
persist-credentials: false
|
|
328
328
|
|
|
329
|
-
- name: Set up Node 24.
|
|
329
|
+
- name: Set up Node 24.16.0 LTS
|
|
330
330
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
331
331
|
with:
|
|
332
|
-
node-version: '24.
|
|
332
|
+
node-version: '24.16.0'
|
|
333
333
|
|
|
334
334
|
- name: Run ESLint (max-warnings 0)
|
|
335
335
|
# Capture full output so the PR comment / step summary can show
|