@adia-ai/a2ui-retrieval 0.2.5 → 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 +14 -0
- package/README.md +1 -1
- package/catalog.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ 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 ranges 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
|
+
- `dependencies["@adia-ai/a2ui-corpus"]`: `^0.2.0` → `^0.3.0`.
|
|
22
|
+
- `version`: `0.2.5` → `0.3.0`.
|
|
23
|
+
|
|
10
24
|
## [0.2.5] - 2026-05-04
|
|
11
25
|
|
|
12
26
|
**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-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/a2ui-retrieval",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
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-
|
|
39
|
+
"@adia-ai/a2ui-runtime": "^0.3.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@adia-ai/a2ui-corpus": "^0.
|
|
42
|
+
"@adia-ai/a2ui-corpus": "^0.3.0"
|
|
43
43
|
}
|
|
44
44
|
}
|