From 49d912a44a0259b68f12d9bb1fba0be1dab33b79 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 20 May 2025 13:40:21 +0000 Subject: [PATCH] Fix incorrect URL in Python SDK breaking changes message Co-Authored-By: Rick Blalock --- internal/bundler/upgrade.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/bundler/upgrade.go b/internal/bundler/upgrade.go index e5452f8e..55f8861d 100644 --- a/internal/bundler/upgrade.go +++ b/internal/bundler/upgrade.go @@ -104,7 +104,7 @@ var breakingChanges = []breakingChange{ Runtime: "uv", Version: "<0.0.84", Title: "🚫 Python SDK Breaking Changes 🚫", - Message: "The environment variable and code reference for your Agentuity API key has changed from AGENTUITY_API_KEY to AGENTUITY_SDK_KEY. Update all occurrences in your .env files and codebase. See the v0.0.84 Changelog for details.\n\n" + tui.Link("https://agentuity.dev/Changelog/python-js#v0084") + "\n\nAfter migrated, please run `uv add agentuity -U` --latest and then re-run this command again.", + Message: "The environment variable and code reference for your Agentuity API key has changed from AGENTUITY_API_KEY to AGENTUITY_SDK_KEY. Update all occurrences in your .env files and codebase. See the v0.0.84 Changelog for details.\n\n" + tui.Link("https://agentuity.dev/Changelog/sdk-py#v0084") + "\n\nAfter migrated, please run `uv add agentuity -U` --latest and then re-run this command again.", Callback: func(ctx BundleContext) error { files := []string{ filepath.Join(ctx.ProjectDir, "server.py"),