From 0825a3da40ff61889e76f1b2d382cdff3a69e9e7 Mon Sep 17 00:00:00 2001 From: msukkari Date: Thu, 18 Jun 2026 20:45:45 -0700 Subject: [PATCH 1/2] fix(web): change version banner copy from "Upgrade" to "Update" Avoids confusion with upgrading plan tiers, since the banner is about updating the Sourcebot version. Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 3 +++ .../app/(app)/components/banners/upgradeAvailableBanner.tsx | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 773f078f2..5d01c899f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed +- Changed the new version available banner copy from "Upgrade" to "Update" to avoid confusion with upgrading plan tiers. [#1282](https://github.com/sourcebot-dev/sourcebot/pull/1282) + ### Fixed - Upgraded `protobufjs` to `^7.6.2`. [#1281](https://github.com/sourcebot-dev/sourcebot/pull/1281) diff --git a/packages/web/src/app/(app)/components/banners/upgradeAvailableBanner.tsx b/packages/web/src/app/(app)/components/banners/upgradeAvailableBanner.tsx index 3226b2ce0..99334d237 100644 --- a/packages/web/src/app/(app)/components/banners/upgradeAvailableBanner.tsx +++ b/packages/web/src/app/(app)/components/banners/upgradeAvailableBanner.tsx @@ -16,7 +16,7 @@ export function UpgradeAvailableBanner({ id, dismissible, currentVersion, latest dismissible={dismissible} icon={} title="New Sourcebot version available" - description={`Upgrade from ${currentVersion} to ${latestVersion}.`} + description={`Update from ${currentVersion} to ${latestVersion}.`} action={ From c904a6e577123e3a87d7e72b660638372fc650d3 Mon Sep 17 00:00:00 2001 From: msukkari Date: Thu, 18 Jun 2026 20:46:06 -0700 Subject: [PATCH 2/2] docs: fix CHANGELOG PR link Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d01c899f..a7d157761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed -- Changed the new version available banner copy from "Upgrade" to "Update" to avoid confusion with upgrading plan tiers. [#1282](https://github.com/sourcebot-dev/sourcebot/pull/1282) +- Changed the new version available banner copy from "Upgrade" to "Update" to avoid confusion with upgrading plan tiers. [#1354](https://github.com/sourcebot-dev/sourcebot/pull/1354) ### Fixed - Upgraded `protobufjs` to `^7.6.2`. [#1281](https://github.com/sourcebot-dev/sourcebot/pull/1281)