Skip to content

Commit 5d6f0bf

Browse files
changelog & nit
1 parent c3f4361 commit 5d6f0bf

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Fixed incorrect shutdown of PostHog SDK in the worker. [#609](https://github.com/sourcebot-dev/sourcebot/pull/609)
1212
- Fixed race condition in job schedulers. [#607](https://github.com/sourcebot-dev/sourcebot/pull/607)
1313

14+
### Added
15+
- Added force resync buttons for connections and repositories. [#610](https://github.com/sourcebot-dev/sourcebot/pull/610)
16+
1417
## [4.9.1] - 2025-11-07
1518

1619
### Added

packages/web/src/app/[domain]/repos/components/repoJobsTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export const RepoJobsTable = ({
202202
if (!isServiceError(response)) {
203203
const { jobId } = response;
204204
toast({
205-
description: `✅ Repository indexed successfully. Job ID: ${jobId}`,
205+
description: `✅ Repository sync triggered successfully. Job ID: ${jobId}`,
206206
})
207207
router.refresh();
208208
} else {
@@ -299,7 +299,7 @@ export const RepoJobsTable = ({
299299
variant="outline"
300300
>
301301
<PlusCircleIcon className="w-3 h-3" />
302-
Index now
302+
Trigger sync
303303
</LoadingButton>
304304
)}
305305
</div>

0 commit comments

Comments
 (0)