@adia-ai/a2ui-retrieval 0.2.5 → 0.3.1

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,31 @@ Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
7
7
 
8
8
  _No pending changes._
9
9
 
10
+ ## [0.3.1] - 2026-05-06
11
+
12
+ **9-package lockstep patch cut.** All 9 published `@adia-ai/*` packages bump 0.3.0 → 0.3.1 per [`docs/specs/package-architecture.md` § 15](../../../docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.3.0` (covers `0.3.1` under semver — patch-cut asymmetry).
13
+
14
+ This package itself ships **no source changes** in v0.3.1. The cut bumps version only — substantive content lives in [`@adia-ai/web-components`](https://github.com/adiahealth/gen-ui-kit/releases/tag/web-components-v0.3.1) (folder-per-trait restructure; barrel API unchanged).
15
+
16
+ ### Changed
17
+
18
+ - `version`: `0.3.0` → `0.3.1`.
19
+ - Internal `@adia-ai/*` dep ranges: unchanged at `^0.3.0` (covers `0.3.1` under semver — patch-cut asymmetry).
20
+
21
+ ## [0.3.0] - 2026-05-05
22
+
23
+ **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`.
24
+
25
+ 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.
26
+
27
+ This package itself ships **no source changes** in v0.3.0. The cut bumps version + dep ranges only.
28
+
29
+ ### Changed
30
+
31
+ - `dependencies["@adia-ai/a2ui-utils"]` removed; replaced by `dependencies["@adia-ai/a2ui-runtime"]: ^0.3.0` (rename + bump).
32
+ - `dependencies["@adia-ai/a2ui-corpus"]`: `^0.2.0` → `^0.3.0`.
33
+ - `version`: `0.2.5` → `0.3.0`.
34
+
10
35
  ## [0.2.5] - 2026-05-04
11
36
 
12
37
  **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).
package/README.md CHANGED
@@ -61,7 +61,7 @@ a2ui-retrieval/
61
61
  ## Runtime
62
62
 
63
63
  Framework-agnostic JS. Depends only on
64
- [`@adia-ai/a2ui-utils`](https://www.npmjs.com/package/@adia-ai/a2ui-utils)
64
+ [`@adia-ai/a2ui-runtime`](https://www.npmjs.com/package/@adia-ai/a2ui-runtime)
65
65
  for the A2UI registry + runtime primitives.
66
66
 
67
67
  ## Links
package/catalog.js CHANGED
@@ -6,7 +6,7 @@
6
6
  * from the YAML single-source-of-truth by scripts/build-components.mjs.
7
7
  */
8
8
 
9
- import { registry } from '@adia-ai/a2ui-utils';
9
+ import { registry } from '@adia-ai/a2ui-runtime';
10
10
 
11
11
  // ── Schema loading ──
12
12
  const schemaByTag = new Map();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-retrieval",
3
- "version": "0.2.5",
3
+ "version": "0.3.1",
4
4
  "description": "AdiaUI A2UI retrieval layer \u2014 catalog lookup, intent classification, domain routing, pattern + anti-pattern matching, clarity + context assembly. Consumed by the compose engine and any A2UI-protocol tooling that needs to reason about user intent against the catalog.",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -36,9 +36,9 @@
36
36
  "directory": "packages/a2ui/retrieval"
37
37
  },
38
38
  "dependencies": {
39
- "@adia-ai/a2ui-utils": "^0.2.0"
39
+ "@adia-ai/a2ui-runtime": "^0.3.0"
40
40
  },
41
41
  "optionalDependencies": {
42
- "@adia-ai/a2ui-corpus": "^0.2.0"
42
+ "@adia-ai/a2ui-corpus": "^0.3.0"
43
43
  }
44
44
  }