arkgate 4.8.10 → 4.8.11
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 +33 -2
- package/README.md +5 -4
- package/bin/ark-check-runtime.mjs +6 -0
- package/bin/ark-check.mjs +3 -0
- package/bin/lib/adapter-contract-types.mjs +137 -0
- package/bin/lib/adapter-contract.mjs +4 -180
- package/bin/lib/adapter-finding-refs.mjs +63 -0
- package/bin/lib/agent-projection-formatters.mjs +151 -0
- package/bin/lib/agent-projection-merge.mjs +148 -0
- package/bin/lib/agent-projection-types.mjs +42 -0
- package/bin/lib/agent-projection.mjs +3 -309
- package/bin/lib/project-root.mjs +70 -4
- package/dist/{diagnosticCatalog-biferT4R.d.ts → diagnosticCatalog-DiflIock.d.ts} +22 -39
- package/dist/eslint/index.cjs +4 -4
- package/dist/eslint/index.js +4 -4
- package/dist/index.cjs +26 -26
- package/dist/index.d.ts +47 -11
- package/dist/index.js +26 -26
- package/dist/nestjs/index.cjs +1 -1
- package/dist/nestjs/index.js +1 -1
- package/dist/runtime/index.cjs +10 -10
- package/dist/runtime/index.d.ts +1 -1
- package/dist/runtime/index.js +10 -10
- package/docs/README.md +3 -3
- package/docs/package-surface.md +2 -1
- package/package.json +3 -2
- package/server.json +2 -2
package/docs/README.md
CHANGED
|
@@ -71,9 +71,9 @@ These are **not** the day-to-day product path. They stay in the repo for evidenc
|
|
|
71
71
|
| Field adoption kit (scaffolding, not closed) | [field/](field/) |
|
|
72
72
|
| Runtime hardening (experimental) | [production-hardening.md](production-hardening.md) |
|
|
73
73
|
|
|
74
|
-
Prepared: [releases/4.8.
|
|
75
|
-
Current published: [releases/4.8.
|
|
76
|
-
Prior published: [releases/4.8.
|
|
74
|
+
Prepared: [releases/4.8.11.md](releases/4.8.11.md) (`arkgate@4.8.11`; not published).
|
|
75
|
+
Current published: [releases/4.8.10.md](releases/4.8.10.md) (`arkgate@4.8.10` on npm `latest`; does not close `K01`).
|
|
76
|
+
Prior published: [releases/4.8.9.md](releases/4.8.9.md) (`arkgate@4.8.9`).
|
|
77
77
|
Prior: [releases/4.8.6.md](releases/4.8.6.md) · [releases/4.8.5.md](releases/4.8.5.md) · [releases/4.8.4.md](releases/4.8.4.md) · [releases/4.8.3.md](releases/4.8.3.md) · [releases/4.8.2.md](releases/4.8.2.md) · [releases/4.8.1.md](releases/4.8.1.md) · [4.8.0](releases/4.8.0.md) · [4.7.6](releases/4.7.6.md) · [4.7.5](releases/4.7.5.md) · [4.7.4](releases/4.7.4.md) · [4.7.3](releases/4.7.3.md) · [4.7.2](releases/4.7.2.md) · [4.7.1](releases/4.7.1.md) · [4.7.0](releases/4.7.0.md) · [4.6.7](releases/4.6.7.md) · [4.6.6](releases/4.6.6.md) · [4.6.5](releases/4.6.5.md) · [4.6.4](releases/4.6.4.md) · [4.6.3](releases/4.6.3.md) · [4.6.2](releases/4.6.2.md) · [4.6.1](releases/4.6.1.md) · [4.6.0](releases/4.6.0.md).
|
|
78
78
|
Older notes: [releases/](releases/). Config: [configuration.md](configuration.md).
|
|
79
79
|
|
package/docs/package-surface.md
CHANGED
|
@@ -266,7 +266,8 @@ production deployment would need to satisfy; it is not a readiness certification
|
|
|
266
266
|
## Release notes (maintainers)
|
|
267
267
|
|
|
268
268
|
Ship notes for a version live under [releases/](https://github.com/pedroknigge/arkgate/tree/main/docs/releases)
|
|
269
|
-
(current published: [4.8.
|
|
269
|
+
(current published: [4.8.10.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.8.10.md);
|
|
270
|
+
prior published: [4.8.9.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.8.9.md);
|
|
270
271
|
prior published: [4.8.8.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.8.8.md);
|
|
271
272
|
prior published: [4.8.7.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.8.7.md);
|
|
272
273
|
prior published: [4.8.6.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.8.6.md);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arkgate",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.11",
|
|
4
4
|
"description": "When the agent writes a bad import, the write doesn’t land. The same check fails the pull request.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -188,7 +188,8 @@
|
|
|
188
188
|
"qs": "6.15.3",
|
|
189
189
|
"vite": "6.4.3",
|
|
190
190
|
"postcss": "8.5.23",
|
|
191
|
-
"fast-uri": "3.1.
|
|
191
|
+
"fast-uri": "3.1.7",
|
|
192
|
+
"browserslist": "4.28.8",
|
|
192
193
|
"nanoid": "3.3.18",
|
|
193
194
|
"brace-expansion@2": "2.1.4",
|
|
194
195
|
"brace-expansion@5": "5.0.9",
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/pedroknigge/arkgate",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "4.8.
|
|
9
|
+
"version": "4.8.11",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "arkgate",
|
|
14
|
-
"version": "4.8.
|
|
14
|
+
"version": "4.8.11",
|
|
15
15
|
"runtimeHint": "npx",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|