@adia-ai/a2ui-validator 0.2.4 → 0.3.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 CHANGED
@@ -7,6 +7,30 @@ Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
7
7
 
8
8
  _No pending changes._
9
9
 
10
+ ## [0.3.0] - 2026-05-05
11
+
12
+ **9-package lockstep cut.** All 9 published `@adia-ai/*` packages bump 0.2.5 → 0.3.0 per [`docs/specs/package-architecture.md` § 15](../../../docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges bump `^0.2.0` → `^0.3.0`.
13
+
14
+ The lockstep policy expanded from 8 to 9 packages with this cut — `@adia-ai/llm` joins as a 9th member, and `@adia-ai/a2ui-utils` was renamed to `@adia-ai/a2ui-runtime`. This package's `dependencies` updated accordingly.
15
+
16
+ This package itself ships **no source changes** in v0.3.0. The cut bumps version + dep range only.
17
+
18
+ ### Changed
19
+
20
+ - `dependencies["@adia-ai/a2ui-utils"]` removed; replaced by `dependencies["@adia-ai/a2ui-runtime"]: ^0.3.0` (rename + bump).
21
+ - `version`: `0.2.5` → `0.3.0`.
22
+
23
+ ## [0.2.5] - 2026-05-04
24
+
25
+ **8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.4 → 0.2.5 per [`docs/specs/package-architecture.md` § 15](../../../docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.5 under semver — patch-cut asymmetry).
26
+
27
+ This is a **patch cut on top of v0.2.4, no BREAKING changes.** Substantive content lives in `web-components` (new `<fields-ui>` form-grid primitive + `draggable-list-item` last-item drop-zone fix, both surfaced by the Tasks UI Playground at `docs/projects/tasks-playground/`); `a2ui-corpus` ships a catalog regen for the new `<fields-ui>` yaml. `a2ui-validator` rides along at version bump only — no source change.
28
+
29
+ ### Changed
30
+
31
+ - `version`: `0.2.4` → `0.2.5`.
32
+ - Internal `@adia-ai/*` dep ranges: unchanged at `^0.2.0` (covers `0.2.5` under semver — patch-cut asymmetry).
33
+
10
34
  ## [0.2.4] - 2026-05-04
11
35
 
12
36
  **8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.3 → 0.2.4 per [`docs/specs/package-architecture.md` § 15](../../../docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.4 under semver — patch-cut asymmetry).
package/README.md CHANGED
@@ -45,7 +45,7 @@ const result = validateAgainstCatalog(messages, catalog);
45
45
  ## Runtime
46
46
 
47
47
  - `ajv` + `ajv-formats` for structural validation.
48
- - `@adia-ai/a2ui-utils` for the registry shape.
48
+ - `@adia-ai/a2ui-runtime` for the registry shape.
49
49
 
50
50
  ## Links
51
51
 
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-validator",
3
- "version": "0.2.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.",
3
+ "version": "0.3.0",
4
+ "description": "AdiaUI A2UI validator \u2014 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",
7
7
  "exports": {
8
- ".": "./index.js",
8
+ ".": "./index.js",
9
9
  "./validator": "./validator.js",
10
- "./catalog": "./catalog-validator.js"
10
+ "./catalog": "./catalog-validator.js"
11
11
  },
12
12
  "files": [
13
13
  "index.js",
@@ -28,7 +28,7 @@
28
28
  "directory": "packages/a2ui/validator"
29
29
  },
30
30
  "dependencies": {
31
- "@adia-ai/a2ui-utils": "^0.2.0",
31
+ "@adia-ai/a2ui-runtime": "^0.3.0",
32
32
  "ajv": "^8.0.0",
33
33
  "ajv-formats": "^3.0.0"
34
34
  }
package/validator.js CHANGED
@@ -8,7 +8,7 @@
8
8
  * No DOM dependencies — usable from browser and Node.
9
9
  */
10
10
 
11
- import { registry, wiringRegistry } from '@adia-ai/a2ui-utils';
11
+ import { registry, wiringRegistry } from '@adia-ai/a2ui-runtime';
12
12
 
13
13
  // ── Check weights (must sum to 100 for component checks) ──
14
14