@kya-os/checkpoint-wasm-runtime 1.4.3 → 1.4.4
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
CHANGED
|
@@ -1,6 +1,39 @@
|
|
|
1
1
|
# @kya-os/checkpoint-wasm-runtime
|
|
2
2
|
|
|
3
|
-
## 1.4.
|
|
3
|
+
## 1.4.4 — 2026-05-18
|
|
4
|
+
|
|
5
|
+
**Third recovery release. Do NOT use 1.4.3 — the published manifest
|
|
6
|
+
shipped `@kya-os/checkpoint-shared: "workspace:*"` instead of the
|
|
7
|
+
resolved version. Consumers can't install with any package manager
|
|
8
|
+
(pnpm errors with `ERR_PNPM_WORKSPACE_PKG_NOT_FOUND`; npm/yarn try to
|
|
9
|
+
fetch `workspace:*` from the registry and fail).**
|
|
10
|
+
|
|
11
|
+
### What 1.4.3 got wrong (and 1.4.4 fixes)
|
|
12
|
+
|
|
13
|
+
The new publish workflow (#2675/#2676) uses `npm pack --ignore-scripts`
|
|
14
|
+
so it can skip `prepublishOnly` (which would re-introduce the wasm-pack
|
|
15
|
+
`.gitignore` poison that broke 1.4.1/1.4.2). The trade-off we missed:
|
|
16
|
+
`pnpm publish` and `pnpm pack` rewrite the `workspace:` protocol to
|
|
17
|
+
concrete versions at pack-time; `npm pack` does NOT. So the new
|
|
18
|
+
workflow shipped a manifest that no package manager outside the source
|
|
19
|
+
workspace could resolve.
|
|
20
|
+
|
|
21
|
+
Fix in this release:
|
|
22
|
+
|
|
23
|
+
1. **Pre-pack substitution step** in `pack-and-verify-tarball`: reads
|
|
24
|
+
`@kya-os/checkpoint-shared`'s actual version from the workspace and
|
|
25
|
+
rewrites `workspace:*` → `1.1.0` (or whatever the workspace publishes)
|
|
26
|
+
in the wasm-runtime manifest before `npm pack` runs.
|
|
27
|
+
2. **New `MANIFEST GATE`** in the same job: extracts the packed
|
|
28
|
+
`package.json` from the tarball and asserts zero `workspace:`
|
|
29
|
+
substrings in any dependency field. The 1.4.3 publish would have
|
|
30
|
+
failed at this gate.
|
|
31
|
+
|
|
32
|
+
Two artifact-shape gates (1.4.1/1.4.2 failure) + two manifest gates
|
|
33
|
+
(1.4.3 failure) + a post-publish re-fetch gate now stand between any
|
|
34
|
+
future publish and a broken registry entry.
|
|
35
|
+
|
|
36
|
+
## 1.4.3 — 2026-05-18 — DEPRECATED (workspace:\* leak)
|
|
4
37
|
|
|
5
38
|
**Second recovery release. Do NOT use 1.4.1 OR 1.4.2 — both shipped
|
|
6
39
|
broken tarballs missing `wasm/kya-os-engine/*` (nodejs target) and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kya-os/checkpoint-wasm-runtime",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "Checkpoint WASM runtime for AI agent detection across all environments (formerly @kya-os/agentshield-wasm-runtime)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"wasm:rebuild": "bash ../../rust/scripts/build-engine-wasm.sh"
|
|
149
149
|
},
|
|
150
150
|
"dependencies": {
|
|
151
|
-
"@kya-os/checkpoint-shared": "
|
|
151
|
+
"@kya-os/checkpoint-shared": "1.1.0",
|
|
152
152
|
"multiformats": "^13"
|
|
153
153
|
},
|
|
154
154
|
"devDependencies": {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|