Skip to content

Commit 48db3d7

Browse files
Merge branch 'main' into fix/rebuild-missing-zoekt-shards
2 parents e8f6b01 + 740bcc9 commit 48db3d7

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [4.17.4] - 2026-05-30
11+
1012
### Changed
1113
- Documented session lifetime, repository visibility refresh behavior, and how permission sync handles transient code-host errors. [#1218](https://github.com/sourcebot-dev/sourcebot/pull/1218)
1214

15+
### Fixed
16+
- Fixed issue where claude-opus-4-8 was returning "error occurred "thinking.type.enabled" is not supported for this model". [#1249](https://github.com/sourcebot-dev/sourcebot/pull/1249)
17+
1318
## [4.17.3] - 2026-05-22
1419

1520
### Fixed

docs/api-reference/sourcebot-public.openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.0.3",
33
"info": {
44
"title": "Sourcebot Public API",
5-
"version": "v4.17.3",
5+
"version": "v4.17.4",
66
"description": "OpenAPI description for the public Sourcebot REST endpoints used for search, repository listing, and file browsing. Authentication is instance-dependent: API keys are the standard integration mechanism, OAuth bearer tokens are EE-only, and some instances may allow anonymous access."
77
},
88
"tags": [

packages/shared/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is auto-generated by .github/workflows/release-sourcebot.yml
2-
export const SOURCEBOT_VERSION = "v4.17.3";
2+
export const SOURCEBOT_VERSION = "v4.17.4";

packages/web/src/features/chat/utils.server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ export const getAISDKLanguageModelAndOptions = async (config: LanguageModel): Pr
211211
});
212212

213213
const isAdaptiveThinkingSupported =
214-
modelId.startsWith('claude-opus-4-7');
214+
modelId.startsWith('claude-opus-4-7') ||
215+
modelId.startsWith('claude-opus-4-8');
215216

216217
return {
217218
model: anthropic(modelId),

0 commit comments

Comments
 (0)