@am_shork/attest 0.11.0 → 1.0.0
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 +1396 -647
- package/README.md +1 -1
- package/dist/core/validator.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -159,7 +159,7 @@ Every diagnostic carries a `code`, and every code has a section in
|
|
|
159
159
|
```
|
|
160
160
|
ERROR registry-not-static (requirements/upload.reqs.ts:5)
|
|
161
161
|
Value is not a literal.
|
|
162
|
-
→ https://gitlab.com/Pseudorca/attest/-/blob/
|
|
162
|
+
→ https://gitlab.com/Pseudorca/attest/-/blob/v1.0.0/docs/en/troubleshooting.md#registry-not-static
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
The anchor **is** the code, so the link cannot point somewhere the section
|
package/dist/core/validator.js
CHANGED
|
@@ -20,7 +20,7 @@ export function uncoveredIssues(registry, plan) {
|
|
|
20
20
|
level: 'ERROR',
|
|
21
21
|
code: 'uncovered-requirement',
|
|
22
22
|
reqId: id,
|
|
23
|
-
message: `Requirement "${id}" has no scenario attesting it. Add a scenario, or
|
|
23
|
+
message: `Requirement "${id}" has no scenario attesting it. Add a scenario, or remove the requirement from the registry.`,
|
|
24
24
|
});
|
|
25
25
|
}
|
|
26
26
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@am_shork/attest",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "TDD-native spec framework: tests are the source of truth for verification, ID-bound requirements the source of truth for intent.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@10.28.0",
|