Skip to content

Commit fe9ec5d

Browse files
Merge branch 'main' into chore/update-mcp-sdk-1.13.3
2 parents 230a304 + 7059c8b commit fe9ec5d

File tree

104 files changed

+1061
-5197
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+1061
-5197
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# kilo-code
22

3+
## [v4.111.1]
4+
5+
- [#3337](https://github.com/Kilo-Org/kilocode/pull/3337) [`85a4447`](https://github.com/Kilo-Org/kilocode/commit/85a4447da76fc51697fb098a9cdda1d2064f7d1b) Thanks [@mcowger](https://github.com/mcowger)! - Added MiniMax M2 to Synthetic Provider
6+
7+
- [#3282](https://github.com/Kilo-Org/kilocode/pull/3282) [`ed4399b`](https://github.com/Kilo-Org/kilocode/commit/ed4399b7d82d735895fbf4d85cfaefff5002571a) Thanks [@chrarnoldus](https://github.com/chrarnoldus)! - Improved handling of tool calls in the API conversation history
8+
9+
- [#3270](https://github.com/Kilo-Org/kilocode/pull/3270) [`2b35053`](https://github.com/Kilo-Org/kilocode/commit/2b350530367bb0a14a0fdc7c11a030c2943c6cf6) Thanks [@chrarnoldus](https://github.com/chrarnoldus)! - Claude Haiku 4.5 now uses a simplified read file tool for reduced error rate
10+
311
## [v4.111.0]
412

513
- [#3256](https://github.com/Kilo-Org/kilocode/pull/3256) [`f81b48b`](https://github.com/Kilo-Org/kilocode/commit/f81b48b8dec9cd276c3c7ba994d0512036abfa96) Thanks [@markijbema](https://github.com/markijbema)! - Switched autocomplete to showing completions inline

apps/storybook/src/components/CodeHighlighterExample.tsx

Lines changed: 0 additions & 111 deletions
This file was deleted.

apps/storybook/src/mocks/jsdom.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/storybook/stories/Colors.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const ColorPreviewTable = () => {
5050
}
5151

5252
const meta: Meta<typeof ColorPreviewTable> = {
53-
title: "Theme",
53+
title: "System/Theme",
5454
component: ColorPreviewTable,
5555
parameters: {
5656
layout: "fullscreen",

apps/storybook/stories/ImageWarningBanner.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite"
33
import { ImageWarningBanner } from "../../../webview-ui/src/components/chat/ImageWarningBanner"
44

55
const meta = {
6-
title: "Components/Chat/ImageWarningBanner",
6+
title: "Chat/ImageWarningBanner",
77
component: ImageWarningBanner,
88
tags: ["autodocs"],
99
args: {

apps/storybook/stories/McpExecution.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { McpExecution } from "../../../webview-ui/src/components/chat/McpExecuti
55
import { withTooltipProvider } from "../src/decorators/withTooltipProvider"
66

77
const meta = {
8-
title: "Chat/Row/McpExecution",
8+
title: "Chat/McpExecution",
99
component: McpExecution,
1010
parameters: { layout: "padded" },
1111
} satisfies Meta<typeof McpExecution>

apps/storybook/stories/SvgCodeHighlighter.stories.tsx

Lines changed: 0 additions & 87 deletions
This file was deleted.

apps/storybook/stories/TelemetryBanner.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite"
22
import TelemetryBanner from "../../../webview-ui/src/components/common/TelemetryBanner"
33

44
const meta = {
5-
title: "Components/TelemetryBanner",
5+
title: "System/TelemetryBanner",
66
component: TelemetryBanner,
77
tags: ["autodocs"],
88
} satisfies Meta<typeof TelemetryBanner>

cli/.dockerignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
pnpm-debug.log*
7+
8+
# Build outputs
9+
dist/
10+
build/
11+
.turbo/
12+
*.tsbuildinfo
13+
14+
# Testing
15+
coverage/
16+
.nyc_output/
17+
__tests__/
18+
*.spec.ts
19+
*.test.ts
20+
*.spec.tsx
21+
*.test.tsx
22+
23+
# Development files
24+
.env
25+
.env.local
26+
.env.*.local
27+
*.log
28+
logs/
29+
30+
# IDE and editor files
31+
.vscode/
32+
.idea/
33+
*.swp
34+
*.swo
35+
*~
36+
.DS_Store
37+
38+
# Git
39+
.git/
40+
.gitignore
41+
.gitattributes
42+
43+
# CI/CD
44+
.github/
45+
.gitlab-ci.yml
46+
.travis.yml
47+
48+
# Documentation (keep README.md)
49+
docs/
50+
*.md
51+
!README.md
52+
53+
# Config files
54+
.prettierrc*
55+
.eslintrc*
56+
.editorconfig
57+
tsconfig.json
58+
vitest.config.ts
59+
vitest.setup.ts
60+
eslint.config.mjs
61+
esbuild.config.mjs
62+
63+
# Misc
64+
*.orig
65+
*.rej
66+
.changeset/

0 commit comments

Comments
 (0)