@hyperscale0/udl 2.0.0 → 2.0.2
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/README.md +4 -4
- package/docs/llms-full.txt +1 -1
- package/docs/llms.txt +1 -1
- package/docs/reference/clauses.md +1 -1
- package/docs/reference/cli.md +1 -1
- package/docs/reference/diagnostics.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ Format version and package version are different numbers.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [2.0.2] - 2026-09-10
|
|
12
|
+
|
|
13
|
+
- Republished in lockstep with HSX 2.0.2. The README no longer points at a GitHub Actions publish path, and the workflows are removed. No format or API change.
|
|
14
|
+
|
|
15
|
+
## [2.0.1] - 2026-09-10
|
|
16
|
+
|
|
17
|
+
Published in lockstep with HSX 2.0.1. No functional change.
|
|
18
|
+
|
|
11
19
|
## [2.0.0] - 2026-09-10
|
|
12
20
|
|
|
13
21
|
Published in lockstep with HSX 2.0.0.
|
package/README.md
CHANGED
|
@@ -49,9 +49,9 @@ Save this document as `note.udl`:
|
|
|
49
49
|
Check the document with the CLI:
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
npx udl validate note.udl
|
|
53
|
-
npx udl fmt note.udl --write
|
|
54
|
-
npx udl canon note.udl --digest
|
|
52
|
+
npx @hyperscale0/udl validate note.udl
|
|
53
|
+
npx @hyperscale0/udl fmt note.udl --write
|
|
54
|
+
npx @hyperscale0/udl canon note.udl --digest
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
Exit code `0` means success. Exit code `1` means the validator refused the document. Exit code `2` means the invocation or file read failed.
|
|
@@ -79,7 +79,7 @@ const previous = parseUdl(await readFile("note.previous.udl"));
|
|
|
79
79
|
const violations = diffValidatedUdlEvolution(previous, document);
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
The evolution diff API (`diffValidatedUdlEvolution`, `diffInstrumentEvolution`, and `npx udl diff`) verifies that changes between two product versions are append-only. Adding optional fields, states, transitions, and actions is permitted; removing, renaming, or tightening existing structures returns `UDL7xxx` violation issues.
|
|
82
|
+
The evolution diff API (`diffValidatedUdlEvolution`, `diffInstrumentEvolution`, and `npx @hyperscale0/udl diff`) verifies that changes between two product versions are append-only. Adding optional fields, states, transitions, and actions is permitted; removing, renaming, or tightening existing structures returns `UDL7xxx` violation issues.
|
|
83
83
|
|
|
84
84
|
## Documentation
|
|
85
85
|
|
package/docs/llms-full.txt
CHANGED
package/docs/llms.txt
CHANGED
package/docs/reference/cli.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperscale0/udl",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "The Universal Domain Language: format spec, parser, validator, canonical serializer, and evolution diff.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"udl",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"Amir Ayub",
|
|
85
85
|
"Sara AlBakaawi"
|
|
86
86
|
],
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "70ddac0ae5599ca61c7951b027befbeb6eea9f96"
|
|
88
88
|
}
|