Skip to content

Commit 98a22fa

Browse files
chore: version packages [skip ci]
1 parent ce61bb7 commit 98a22fa

10 files changed

Lines changed: 61 additions & 49 deletions

File tree

.changeset/fix-bb-agent-empty-channel-id.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/issue-79-onauthchange-bridge.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.changeset/refactor-bb-agent-model-presets.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bb-agent/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @aws-blocks/bb-agent
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- ce61bb7: refactor(bb-agent): capability-based model presets with global inference profiles
8+
9+
New presets:
10+
11+
- `BALANCED` (Claude Sonnet 4.6): recommended default for most workloads
12+
- `SMART` (Claude Opus 4.8): highest capability for hardest tasks
13+
- `FAST` (Claude Haiku 4.5): lowest latency
14+
15+
All presets use `global.` inference profiles for region-agnostic deployment.
16+
17+
Deprecated (non-removing): `DEFAULT` resolves to `BALANCED`, `BUDGET` and `MICRO` resolve to `FAST`. Note this changes the underlying model for existing callers — `DEFAULT` moves from Opus to Sonnet, and `BUDGET`/`MICRO` move from Amazon Nova Pro/Lite to Claude Haiku, so cost and latency profiles differ. The symbols still resolve (no type break), but migrate to `BALANCED`/`FAST` (or a region-scoped profile) explicitly to pin the model you want.
18+
19+
### Patch Changes
20+
21+
- f946736: fix(bb-agent): treat empty channelId as unset in stream()
22+
23+
An empty `channelId` now falls back to `conversationId` or a random UUID, preventing all streams from sharing the same channel. Empty strings are treated as unset rather than used literally.
24+
325
## 0.1.3
426

527
### Patch Changes

packages/bb-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-blocks/bb-agent",
3-
"version": "0.1.3",
3+
"version": "0.2.0",
44
"author": "Amazon Web Services",
55
"license": "Apache-2.0",
66
"type": "module",

packages/bb-auth-oidc/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @aws-blocks/bb-auth-oidc
22

3+
## 0.1.6
4+
5+
### Patch Changes
6+
7+
- 53adfb8: fix(bb-auth-oidc): bridge a successful client callback into auth-common's onAuthChange
8+
9+
A successful client-PKCE `handleRedirectCallback()` only notified this OIDC
10+
client's own `onAuthStateChange` listeners. Components subscribed via
11+
`@aws-blocks/auth-common`'s `onAuthChange` — and `<AuthenticatedContent>`
12+
never heard about the sign-in, so a React SPA wouldn't re-render after
13+
completing the redirect exchange (only server-initiated sign-in updated them).
14+
15+
`handleRedirectCallback()` now also calls `broadcastAuthChange(user)` on success,
16+
and `signOut()` calls `broadcastAuthChange(null)`, firing the same-window
17+
`blocks-auth-change` event and the cross-tab `BroadcastChannel`, so every
18+
auth-common consumer (and other open tabs) re-render on both sign-in and sign-out.
19+
The README documents the `onAuthChange`/`broadcastAuthChange` wiring and adds an
20+
OIDC + React SPA example.
21+
322
## 0.1.5
423

524
### Patch Changes

packages/bb-auth-oidc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-blocks/bb-auth-oidc",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"author": "Amazon Web Services",
55
"license": "Apache-2.0",
66
"type": "module",

packages/blocks/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @aws-blocks/blocks
22

3+
## 0.1.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [f946736]
8+
- Updated dependencies [53adfb8]
9+
- Updated dependencies [ce61bb7]
10+
- @aws-blocks/bb-agent@0.2.0
11+
- @aws-blocks/bb-auth-oidc@0.1.6
12+
313
## 0.1.6
414

515
### Patch Changes

packages/blocks/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-blocks/blocks",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"author": "Amazon Web Services",
55
"license": "Apache-2.0",
66
"type": "module",
@@ -57,7 +57,7 @@
5757
"@aws-blocks/auth-common": "^0.1.3",
5858
"@aws-blocks/bb-auth-basic": "^0.1.3",
5959
"@aws-blocks/bb-auth-cognito": "^0.1.5",
60-
"@aws-blocks/bb-auth-oidc": "^0.1.4",
60+
"@aws-blocks/bb-auth-oidc": "^0.1.6",
6161
"@aws-blocks/bb-kv-store": "^0.1.4",
6262
"@aws-blocks/bb-distributed-table": "^0.1.3",
6363
"@aws-blocks/bb-realtime": "^0.1.2",
@@ -68,7 +68,7 @@
6868
"@aws-blocks/bb-file-bucket": "^0.1.2",
6969
"@aws-blocks/bb-app-setting": "^0.1.3",
7070
"@aws-blocks/bb-knowledge-base": "^0.1.3",
71-
"@aws-blocks/bb-agent": "^0.1.3",
71+
"@aws-blocks/bb-agent": "^0.2.0",
7272
"@aws-blocks/bb-tracer": "^0.1.4",
7373
"@aws-blocks/bb-logger": "^0.1.2",
7474
"@aws-blocks/bb-email-client": "^0.1.3",

0 commit comments

Comments
 (0)