Compare commits

...

1 Commits

Author SHA1 Message Date
Saoud Rizwan 0cefc0e236 Disables autocaptures when initializing feature flags 2025-05-07 12:06:20 -07:00
3 changed files with 6 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
# Changelog
## [3.14.1]
- Disables autocaptures when initializing feature flags
## [3.14.0]
- Add support for custom model ID in AWS Bedrock provider, enabling use of Application Inference Profile (Thanks @clicube!)
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "claude-dev",
"displayName": "Cline",
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
"version": "3.14.0",
"version": "3.14.1",
"icon": "assets/icons/icon.png",
"engines": {
"vscode": "^1.84.0"
+1
View File
@@ -9,6 +9,7 @@ import posthog from "posthog-js"
posthog.init(posthogConfig.apiKey, {
api_host: posthogConfig.host,
autocapture: false,
})
export function Providers({ children }: { children: ReactNode }) {