Skip to content

Commit 8292410

Browse files
Merge branch 'main' into mcowger/nativeToolDefinitions
2 parents 2d52c4e + b083b99 commit 8292410

22 files changed

+179
-88
lines changed

.changeset/bright-hornets-bow.md

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

.changeset/green-teams-pull.md

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

.changeset/grumpy-snails-walk.md

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

.changeset/hip-lands-search.md

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

.changeset/loud-bears-hide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"kilo-code": patch
3+
---
4+
5+
Improved handling of tool calls in the API conversation history

CHANGELOG.md

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

3+
## [v4.111.0]
4+
5+
- [#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
6+
7+
### Patch Changes
8+
9+
- [#3261](https://github.com/Kilo-Org/kilocode/pull/3261) [`bae048f`](https://github.com/Kilo-Org/kilocode/commit/bae048f914712439e54f29363d52dc24860000e7) Thanks [@mcowger](https://github.com/mcowger)! - Improve native tool calling consistency
10+
11+
- [#3281](https://github.com/Kilo-Org/kilocode/pull/3281) [`2586e9b`](https://github.com/Kilo-Org/kilocode/commit/2586e9b4f6cbea9734ff10df7086f2d999713448) Thanks [@hassoncs](https://github.com/hassoncs)! - Fix broken sign-in links
12+
13+
- [#3313](https://github.com/Kilo-Org/kilocode/pull/3313) [`2e61e91`](https://github.com/Kilo-Org/kilocode/commit/2e61e9152ae3be43ce12e9fd3c2f94c0d603d771) Thanks [@chrarnoldus](https://github.com/chrarnoldus)! - Running commands are no longer sometimes shown twice in the chat
14+
315
## [v4.110.0]
416

517
### Patch Changes

cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @kilocode/cli
22

3+
## 0.0.11
4+
5+
### Patch Changes
6+
7+
- [#3278](https://github.com/Kilo-Org/kilocode/pull/3278) [`cba3d00`](https://github.com/Kilo-Org/kilocode/commit/cba3d005766c88200a2d170770dcaeaef172dfbd) Thanks [@catrielmuller](https://github.com/catrielmuller)! - Improved stability of the approval menu, preventing it from showing when you don't expect it
8+
39
## 0.0.10
410

511
### Patch Changes

cli/package.dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kilocode/cli",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Terminal User Interface for Kilo Code",
55
"type": "module",
66
"main": "index.js",

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kilocode/cli",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Terminal User Interface for Kilo Code",
55
"type": "module",
66
"main": "dist/index.js",

packages/types/src/kilocode/kilocode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ export function getKiloUrlFromToken(targetUrl: string, kilocodeToken?: string):
7777
const baseUrl = getKiloBaseUriFromToken(kilocodeToken)
7878
const target = new URL(targetUrl)
7979

80-
const { protocol, port } = new URL(baseUrl)
81-
Object.assign(target, { protocol, port })
80+
const { protocol, host } = new URL(baseUrl)
81+
Object.assign(target, { protocol, host })
8282

8383
return target.toString()
8484
}

0 commit comments

Comments
 (0)