@adia-ai/a2ui-validator 0.0.1 → 0.2.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 +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,25 @@ _Nothing yet._
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
+
## [0.2.0] - 2026-05-02
|
|
13
|
+
|
|
14
|
+
**Lockstep cut.** All 8 published `@adia-ai/*` packages now share one
|
|
15
|
+
version, governed by [`docs/specs/package-architecture.md` § 15
|
|
16
|
+
(Versioning Policy)](../../../docs/specs/package-architecture.md#15-versioning-policy).
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- `version`: `0.0.1` → `0.2.0`.
|
|
21
|
+
- `dependencies["@adia-ai/a2ui-utils"]`: `^0.0.2` → `^0.2.0`.
|
|
22
|
+
|
|
23
|
+
### No source changes
|
|
24
|
+
|
|
25
|
+
Validator source (JSON-Schema validator + catalog-aware semantic
|
|
26
|
+
validator + 17 rule modules) is byte-identical to 0.0.1. The cut
|
|
27
|
+
bumps version + the internal dep range only.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
12
31
|
## [0.0.1] - 2026-04-24
|
|
13
32
|
|
|
14
33
|
First public release. Extracted from
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/a2ui-validator",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "AdiaUI A2UI validator — JSON Schema structural validation plus catalog-aware semantic validation (component exists, props match YAML). Split out from the compose engine so non-compose tooling (tests, MCP validator tools, CI gates) can depend on validation without pulling the whole generator graph.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"directory": "packages/a2ui/validator"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@adia-ai/a2ui-utils": "^0.0
|
|
31
|
+
"@adia-ai/a2ui-utils": "^0.2.0",
|
|
32
32
|
"ajv": "^8.0.0",
|
|
33
33
|
"ajv-formats": "^3.0.0"
|
|
34
34
|
}
|