Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
b8aa4b4
Changeset version bump (#3803)
github-actions[bot] May 21, 2025
57249a0
PNPM + Turbo monorepo + Nightly releases (#3407)
cte May 22, 2025
3eb3169
Update contributors list (#3781)
github-actions[bot] May 22, 2025
d5484b5
Upgrade to ESLint 9 + share eslint config across workspaces (#3815)
cte May 22, 2025
c685197
Fix vite server (#3816)
cte May 22, 2025
39cd50b
Fix linter errors (#3821)
cte May 22, 2025
568fb87
Improve version number derivation (#3822)
cte May 22, 2025
58a0efa
Move e2e into apps (#3823)
cte May 22, 2025
edcaa15
Fix README gif in all locales (#3837)
mrubens May 22, 2025
8a8fadd
Add Claude Sonnet 4 and Claude Opus 4 models with thinking variants (…
shariqriazz May 22, 2025
9ee2033
v3.18.1 (#3847)
mrubens May 22, 2025
790c6b5
Fix referrer (#3848)
mrubens May 22, 2025
80d7203
Evals fixes (#3851)
cte May 22, 2025
0521163
Fix changeset version bumping (#3850)
cte May 22, 2025
fb3f6d0
Fix Claude 4 models in Vertex (#3849)
mrubens May 22, 2025
29adc27
v3.18.1-again (#3854)
mrubens May 22, 2025
45e2263
Fix changelog generation (#3856)
cte May 22, 2025
22431f0
Fix changelog generation (#3859)
cte May 22, 2025
36dff33
Changeset version bump (#3853)
github-actions[bot] May 22, 2025
57a6ab1
Fix extension publish action (#3860)
cte May 22, 2025
61eaf84
Fix syntax error (#3861)
cte May 22, 2025
f860d78
More publish fixes (#3863)
cte May 22, 2025
999c3d6
More publish fixes (#3864)
cte May 22, 2025
48ca890
Add --no-verify when pushing tags (#3865)
cte May 22, 2025
f960e8e
Merge branch 'upstream-at-v3.18.1' into roo-v3.18.1
kevinvandijk May 27, 2025
a5958c9
Include changelog
kevinvandijk May 27, 2025
bc1e89d
Fix TypeScript errors, based on Roo main branch changes
chrarnoldus May 28, 2025
d7b6db6
Merge branch 'main' into roo-v3.18.1
chrarnoldus May 28, 2025
8bbfd7c
Replace npm run install:all with pnpm install
chrarnoldus May 28, 2025
434f308
Try npx
chrarnoldus May 28, 2025
d10cf72
Replace some removed scripts with their (hopefully) equivalents
chrarnoldus May 28, 2025
7045bc6
Attempt to fix running extension unit tests
chrarnoldus May 28, 2025
cb51ef9
Fix unit tests
chrarnoldus May 28, 2025
d70c4bf
Attempt to update marketplace publish
chrarnoldus May 28, 2025
93f177f
Adjust marketplace publish workflow
kevinvandijk May 28, 2025
fd3f20d
Fix naming
kevinvandijk May 28, 2025
9ee8b12
Revert "Fix unit tests"
chrarnoldus May 28, 2025
3db6710
Revert "Fix TypeScript errors, based on Roo main branch changes"
chrarnoldus May 28, 2025
524a980
Reapply updates from https://github.com/Kilo-Org/kilocode/pull/461
chrarnoldus May 28, 2025
542c4ef
Add kilocode_change markers
chrarnoldus May 28, 2025
3d66f54
Adjust development documentation
kevinvandijk May 28, 2025
85c5de5
Delete package-lock.json
chrarnoldus May 28, 2025
1a95e68
Merge branch 'roo-v3.18.1' of ssh://github.com/Kilo-Org/kilocode into…
chrarnoldus May 28, 2025
fcbc415
Add renames
kevinvandijk May 28, 2025
6b89ca4
Install pnpm everywhere
chrarnoldus May 28, 2025
8b499f0
Merge branch 'roo-v3.18.1' of ssh://github.com/Kilo-Org/kilocode into…
chrarnoldus May 28, 2025
9dc0b31
Install pnpm in the changeset workflow
chrarnoldus May 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .changeset/changelog-config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// Half-works to simplify the format but needs 'overwrite_changeset_changelog.py' in GHA to finish formatting

const getReleaseLine = async (changeset) => {
const [firstLine] = changeset.summary
.split("\n")
Expand Down
5 changes: 5 additions & 0 deletions .changeset/stale-buttons-tickle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Include changes from Roo Code v3.18.1
25 changes: 0 additions & 25 deletions .eslintrc.json

This file was deleted.

123 changes: 0 additions & 123 deletions .github/scripts/ai-release-notes.py

This file was deleted.

64 changes: 0 additions & 64 deletions .github/scripts/parse_changeset_changelog.py

This file was deleted.

125 changes: 0 additions & 125 deletions .github/scripts/release-notes-prompt.py

This file was deleted.

12 changes: 9 additions & 3 deletions .github/workflows/changeset-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
REPO_PATH: ${{ github.repository }}
GIT_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'main' }}
NODE_VERSION: 20.18.1
PNPM_VERSION: 10.8.1

jobs:
# Job 1: Create version bump PR when changesets are merged to main
Expand All @@ -31,14 +32,19 @@ jobs:
fetch-depth: 0
ref: ${{ env.GIT_REF }}

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"
cache: "pnpm"

- name: Install Dependencies
run: npm run install:all
run: pnpm install

# Check if there are any new changesets to process
- name: Check for changesets
Expand All @@ -56,7 +62,7 @@ jobs:
with:
commit: "changeset version bump"
title: "Changeset version bump"
version: npm run version-packages # This performs the changeset version bump
version: pnpm changeset:version # This performs the changeset version bump
env:
GITHUB_TOKEN: ${{ secrets.CROSS_REPO_ACCESS_TOKEN }}

Expand Down
Loading
Loading