From 667d68382628338e0ecc0189da2bf63e037ec478 Mon Sep 17 00:00:00 2001 From: Bobby Christopher Date: Tue, 14 Oct 2025 10:52:19 -0400 Subject: [PATCH 1/2] force the update --- internal/bundler/upgrade.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/internal/bundler/upgrade.go b/internal/bundler/upgrade.go index cc470b26..47db2d2c 100644 --- a/internal/bundler/upgrade.go +++ b/internal/bundler/upgrade.go @@ -22,6 +22,18 @@ type breakingChange struct { } var breakingChanges = []breakingChange{ + { + Runtime: "bunjs", + Version: "<0.0.154", + Title: "🚫 JS SDK Breaking Change 🚫", + Message: "The JS SDK type signatures for AgentRequest have changed to be async functions. Please see the v0.0.106 Changelog for how to update your code.\n\n" + tui.Link("https://agentuity.dev/Changelog/sdk-js#v00106") + "\n\nPlease bun update @agentuity/sdk --latest, fix your types and ensure your code passes type checking and then re-run this command again.", + }, + { + Runtime: "nodejs", + Version: "<0.0.154", + Title: "🚫 JS SDK Breaking Change 🚫", + Message: "The JS SDK type signatures for AgentRequest have changed to be async functions. Please see the v0.0.106 Changelog for how to update your code.\n\n" + tui.Link("https://agentuity.dev/Changelog/sdk-js#v00106") + "\n\nPlease npm upgrade @agentuity/sdk, fix your types and ensure your code passes type checking and then re-run this command again.", + }, { Runtime: "bunjs", Version: "<0.0.106", From 4d22dbb9249d675d33a0ec77c519dc3944ee7225 Mon Sep 17 00:00:00 2001 From: Bobby Christopher Date: Tue, 14 Oct 2025 10:52:31 -0400 Subject: [PATCH 2/2] force the update --- internal/bundler/upgrade.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/bundler/upgrade.go b/internal/bundler/upgrade.go index 47db2d2c..b4f21082 100644 --- a/internal/bundler/upgrade.go +++ b/internal/bundler/upgrade.go @@ -25,14 +25,14 @@ var breakingChanges = []breakingChange{ { Runtime: "bunjs", Version: "<0.0.154", - Title: "🚫 JS SDK Breaking Change 🚫", - Message: "The JS SDK type signatures for AgentRequest have changed to be async functions. Please see the v0.0.106 Changelog for how to update your code.\n\n" + tui.Link("https://agentuity.dev/Changelog/sdk-js#v00106") + "\n\nPlease bun update @agentuity/sdk --latest, fix your types and ensure your code passes type checking and then re-run this command again.", + Title: "🚫 JS SDK Update Required 🚫", + Message: "An internal change related to telemetry requires updating to the latest SDK version. There are no code changes required on your end.\n\nPlease run bun update @agentuity/sdk --latest and then re-run this command again.", }, { Runtime: "nodejs", Version: "<0.0.154", - Title: "🚫 JS SDK Breaking Change 🚫", - Message: "The JS SDK type signatures for AgentRequest have changed to be async functions. Please see the v0.0.106 Changelog for how to update your code.\n\n" + tui.Link("https://agentuity.dev/Changelog/sdk-js#v00106") + "\n\nPlease npm upgrade @agentuity/sdk, fix your types and ensure your code passes type checking and then re-run this command again.", + Title: "🚫 JS SDK Update Required 🚫", + Message: "An internal change related to telemetry requires updating to the latest SDK version. There are no code changes required on your end.\n\nPlease run npm upgrade @agentuity/sdk and then re-run this command again.", }, { Runtime: "bunjs",