Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add missing schema changes introduced in [#1170](https://github.com/sourcebot-dev/sourcebot/pull/1170). [#1176](https://github.com/sourcebot-dev/sourcebot/pull/1176)
- Fixed blame gutter commit navigation to use the file path as it existed at the attributing commit, so clicking a blame line whose commit predates a rename resolves to the correct historical path. [#1178](https://github.com/sourcebot-dev/sourcebot/pull/1178)
- Bumped transitive `fast-uri` dependency to `^3.1.2`. [#1181](https://github.com/sourcebot-dev/sourcebot/pull/1181)
- Upgraded `simple-git` to `3.36.0` to address CVE-2026-6951. [#1183](https://github.com/sourcebot-dev/sourcebot/pull/1183)

### Changed
- Reduced the log verbosity of the worker by changing various log messages from info to debug. [#1179](https://github.com/sourcebot-dev/sourcebot/pull/1179)
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"posthog-node": "^5.24.15",
"prom-client": "^15.1.3",
"redlock": "5.0.0-beta.2",
"simple-git": "^3.33.0",
"simple-git": "^3.36.0",
"zod": "^3.25.74"
}
}
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"scroll-into-view-if-needed": "^3.1.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"simple-git": "^3.33.0",
"simple-git": "^3.36.0",
"slate": "^0.117.0",
"slate-dom": "^0.116.0",
"slate-history": "^0.113.1",
Expand Down
30 changes: 24 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8047,6 +8047,22 @@ __metadata:
languageName: node
linkType: hard

"@simple-git/args-pathspec@npm:^1.0.3":
version: 1.0.3
resolution: "@simple-git/args-pathspec@npm:1.0.3"
checksum: 10c0/91bfc99daa956df28e4efd683cd799f60c6d169fce6adf71a9efa80a6b5938fed4b03e55fa929cfd51aed64f3ada5c1e4edad45a3872dbd94d11924b3258b5bc
languageName: node
linkType: hard

"@simple-git/argv-parser@npm:^1.1.0":
version: 1.1.1
resolution: "@simple-git/argv-parser@npm:1.1.1"
dependencies:
"@simple-git/args-pathspec": "npm:^1.0.3"
checksum: 10c0/2c21166f1bb7c4373e7b4e52bd0c7f333e58ea0ff5ac0b6c2d305835f4a2bcad1ef4bcce3cff63312ac55655ea7be3aba4c7c0c41e3ebcb8bee343f65bb92f5e
languageName: node
linkType: hard

"@smithy/config-resolver@npm:^4.4.17":
version: 4.4.17
resolution: "@smithy/config-resolver@npm:4.4.17"
Expand Down Expand Up @@ -8633,7 +8649,7 @@ __metadata:
posthog-node: "npm:^5.24.15"
prom-client: "npm:^15.1.3"
redlock: "npm:5.0.0-beta.2"
simple-git: "npm:^3.33.0"
simple-git: "npm:^3.36.0"
tsc-watch: "npm:^6.2.0"
tsx: "npm:^4.21.0"
typescript: "npm:^5.6.2"
Expand Down Expand Up @@ -8924,7 +8940,7 @@ __metadata:
scroll-into-view-if-needed: "npm:^3.1.0"
server-only: "npm:^0.0.1"
sharp: "npm:^0.33.5"
simple-git: "npm:^3.33.0"
simple-git: "npm:^3.36.0"
slate: "npm:^0.117.0"
slate-dom: "npm:^0.116.0"
slate-history: "npm:^0.113.1"
Expand Down Expand Up @@ -20394,14 +20410,16 @@ __metadata:
languageName: node
linkType: hard

"simple-git@npm:^3.33.0":
version: 3.33.0
resolution: "simple-git@npm:3.33.0"
"simple-git@npm:^3.36.0":
version: 3.36.0
resolution: "simple-git@npm:3.36.0"
dependencies:
"@kwsites/file-exists": "npm:^1.1.1"
"@kwsites/promise-deferred": "npm:^1.1.1"
"@simple-git/args-pathspec": "npm:^1.0.3"
"@simple-git/argv-parser": "npm:^1.1.0"
debug: "npm:^4.4.0"
checksum: 10c0/463e91f3ee04b7fc445284c64502a4ee3d607f626f18c8bcc036815a30fe178d2216976e683c6368edd7b3093801d6e534deeb8e700a4863a76ef23f881a0712
checksum: 10c0/4c22e57107535168f354e5abbbf6e618a7b39d76491ca225c70588520fbe86891f3b9a5c4f8a3fc0137e669aad2f0e11f6c6e677bfec07169cd18f29bf23cb77
languageName: node
linkType: hard

Expand Down
Loading