Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"@ai-sdk/mcp": "1.0.52",
"@ai-sdk/openai": "~3.0.74",
"@ai-sdk/react": "~3.0.210",
"@assistant-ui/react": "^0.14.23",
"@assistant-ui/react": "^0.15.1",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Migrate removed assistant-ui hooks before bumping

This upgrade crosses @assistant-ui/react 0.15, whose release notes for the bumped version state that the legacy context hooks including useThreadRuntime, useThread, useMessage, useComposerRuntime, useMessagePart, and useAttachment were dropped. Those hooks are still imported in Nexus/Assistant Architect code paths such as components/features/assistant-architect/assistant-architect-streaming.tsx:36, app/(protected)/nexus/_components/prompt-auto-loader.tsx:5, and components/assistant-ui/attachment.tsx:16, so once the dependency actually resolves to 0.15 the app will fail to typecheck/build until these call sites are migrated or the bump is held back.

Useful? React with 👍 / 👎.

"@assistant-ui/react-ai-sdk": "^1.3.37",
"@assistant-ui/react-markdown": "^0.14.4",
"@aws-sdk/client-bedrock-agent-runtime": "^3.982.0",
Expand All @@ -125,7 +125,7 @@
"@aws-sdk/client-ssm": "^3.982.0",
"@aws-sdk/credential-providers": "^3.982.0",
"@aws-sdk/lib-dynamodb": "~3.1095.0",
"@aws-sdk/lib-storage": "3.1096.0",
"@aws-sdk/lib-storage": "3.1100.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Commit the updated Bun lockfile

This changes the root dependency manifest without updating the root bun.lock: the lockfile still records @assistant-ui/react as ^0.14.23/0.14.23 and @aws-sdk/lib-storage as 3.1096.0. The checked CI workflow installs with bun install --frozen-lockfile at .github/workflows/ci.yml:37 (and other jobs do the same), and bun install --help confirms that flag disallows lockfile changes, so these jobs/build images cannot proceed from the submitted manifest until the regenerated bun.lock is committed with the bump.

Useful? React with 👍 / 👎.

"@aws-sdk/s3-request-presigner": "^3.982.0",
"@aws-sdk/util-dynamodb": "^3.982.0",
"@codemirror/commands": "^6.10.4",
Expand Down
Loading