Compare commits

...
Author SHA1 Message Date
Cline Evaluation 2f67ff1703 z-index-fix on settings page 2025-05-22 14:13:37 -07:00
2cab8635c7 Changeset version bump (#3740)
* changeset version bump

* Updating CHANGELOG.md format

* Update CHANGELOG.md and package.json for version 3.17.1

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Cline Evaluation <cline@example.com>
2025-05-23 01:37:38 +05:30
7 changed files with 11 additions and 20 deletions
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": minor
---
Increase max tokens anthropic opus
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Put protos back in .gitignore
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": minor
---
Add prompt caching for Claude 4 models on Cline and Openrouter providers
+5
View File
@@ -1,5 +1,10 @@
# Changelog
## [3.17.1]
- Add prompt caching for Claude 4 models on Cline and OpenRouter providers
- Increase max tokens for Claude Opus 4 from 4096 to 8192
## [3.17.0]
- Add support for Anthropic Claude Sonnet 4 and Claude Opus 4 in both Anthropic and Vertex providers
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "claude-dev",
"version": "3.17.0",
"version": "3.17.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "claude-dev",
"version": "3.17.0",
"version": "3.17.1",
"license": "Apache-2.0",
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.12.4",
+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.17.0",
"version": "3.17.1",
"icon": "assets/icons/icon.png",
"engines": {
"vscode": "^1.84.0"
@@ -12,10 +12,11 @@ export const SectionHeader = ({ description, children, className, ...props }: Se
return (
<div
className={cn(
`sticky top-0 z-${OPENROUTER_MODEL_PICKER_Z_INDEX + 20} text-[var(--vscode-foreground)] bg-[var(--vscode-panel-background)] px-5 py-3`,
`sticky top-0 text-[var(--vscode-foreground)] bg-[var(--vscode-panel-background)] px-5 py-3`,
className,
)}
{...props}>
{...props}
style={{ zIndex: OPENROUTER_MODEL_PICKER_Z_INDEX + 20 }}>
<h4 className="m-0">{children}</h4>
{description && <p className="text-[var(--vscode-descriptionForeground)] text-sm mt-2 mb-0">{description}</p>}
</div>