@adia-ai/llm 0.6.10 → 0.6.12
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 +12 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.12] — 2026-05-20
|
|
4
|
+
|
|
5
|
+
### Maintenance
|
|
6
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.12 work shipped in `@adia-ai/web-modules` — admin-shell legacy CSS bridges retired per ADR-0032 (continuation of ADR-0023 + ADR-0024). See `packages/web-modules/CHANGELOG.md#0612--2026-05-20` for the breaking-change details + migration path.
|
|
7
|
+
|
|
8
|
+
## [0.6.11] — 2026-05-20
|
|
9
|
+
|
|
10
|
+
### Maintenance
|
|
11
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.11 work shipped in `@adia-ai/web-components` (`<canvas-ui>` `.d.ts` hand-author covering 9 imperative runtime methods, claims-ui-v2 inbound FB-02 finding 2 closure) and `adia-ui-kit` skill v2.8.0 bundled feedback close (FB-01, FB-02 findings 1+3, FB-03; graduated `/with-css` opt-in docs + `ADIA_TICKETS_DIR` central-inbound workflow).
|
|
12
|
+
|
|
3
13
|
## [0.6.10] — 2026-05-21
|
|
4
14
|
|
|
5
15
|
### Maintenance
|
|
@@ -392,8 +402,8 @@ Consumers should rewrite imports:
|
|
|
392
402
|
|
|
393
403
|
### Proxy-mode protocol fix
|
|
394
404
|
|
|
395
|
-
In v0.3.0, proxy-mode requests now correctly include `provider` in the body and drop the `Authorization: Bearer
|
|
405
|
+
In v0.3.0, proxy-mode requests now correctly include `provider` in the body and drop the `Authorization: Bearer *** header (which was previously emitted with `apiKey: undefined` when `proxyUrl` was set). Two stacked bugs that affected anyone using `proxyUrl` in v0.2.x:
|
|
396
406
|
1. The proxy received bodies without `provider`, defaulted to `anthropic`, and routed `gpt-4o-mini` requests to Anthropic → 404 model-not-found.
|
|
397
|
-
2. `Authorization: Bearer
|
|
407
|
+
2. `Authorization: Bearer *** appeared in headers when the client didn't carry an API key (proxy-only deployments).
|
|
398
408
|
|
|
399
409
|
Both fixed in v0.3.0. The chat playground at `apps/chat/app/chat.html` exercises this path.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/llm",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.12",
|
|
4
4
|
"description": "Provider-agnostic LLM client \u2014 anthropic / openai / gemini adapters with a unified chat() + streamChat() facade. Used by AdiaUI's chat-shell and the A2UI generation pipeline; works in browser (with proxyUrl) and Node.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|