-
Notifications
You must be signed in to change notification settings - Fork 3.1k
OpenCode v1.3.5 #8806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenCode v1.3.5 #8806
Changes from all commits
afc4c83
1398674
15dc33d
35884de
4586b41
0dcdf5f
50f6aa3
cbe1337
a379eb3
4647aa8
958a80c
79e9d19
45c2573
be142b0
4f9667c
0a80ef4
700f571
71693cc
9a64bdb
aa11fa8
5d9e780
9717383
3ea72ae
d1c49ba
0dbfefa
2b0baf9
53d0b58
898456a
1041ae9
4167e25
b480a38
0c0c6f3
b0017bf
9713836
ad40b65
b746aec
73e1072
fac0dd8
36709aa
cafc2b2
77fc88c
d6fc5f4
7123aad
66a5655
5179b87
8864fdc
b90de75
97c15a0
f54e4b6
05c3cfb
ea04b23
31ad6e8
7cb690d
ba244a6
1a4a6ea
652313e
16742af
2ad190e
2d502d6
d500a84
1b028d0
1d363fa
83ed1c4
ec20efc
54443bf
9a2482a
bcf18ed
c7d2309
17e8f57
da1d372
3845044
28f5176
9f94bdb
1ebc92f
2e6ac8f
c7760b4
c333e91
98a31e3
b8fb75a
590523d
ad3b350
311ba41
b7a06e1
ef7d1f7
9c6f1ed
b242a8d
e96eead
7715252
d341499
3fb60d0
d2bfa92
7b44918
d8ad833
6274b06
2102333
decb5e6
bb8d2cd
e528ed5
a76be69
af2ccc9
a93374c
bdd7829
d36b38e
e973bbf
ff13524
6f5b70e
7a7643c
c33d999
e5f0e81
4b9660b
c890990
5cd54ec
02b19bc
f3997d8
2145d97
82fc493
f736116
43bc555
48326e8
15a8c22
8446719
81eb6e6
41b0d03
c3a9ec4
6c14ea1
6086072
aa9ed00
0981b8e
26382c6
8ac2fbb
2b86b36
860531c
aa2d753
77d4f99
1f290fc
772059a
38af99d
4f96eb2
ff37d7c
36aeb32
6639f92
f7c2ef8
62ac45a
a94ac5a
fee1e25
f0a9075
72cb9df
55895d0
0bc2f99
0c1bf82
203a6bf
1c4ca7a
3f25fd5
c35d9d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -17,11 +17,11 @@ import { parseArgs } from "node:util" | |||||
| const repo = process.env.GH_REPO | ||||||
| if (!repo) throw new Error("GH_REPO is required") | ||||||
|
|
||||||
| const releaseId = process.env.OPENCODE_RELEASE | ||||||
| if (!releaseId) throw new Error("OPENCODE_RELEASE is required") | ||||||
| const releaseId = process.env.KILO_RELEASE | ||||||
| if (!releaseId) throw new Error("KILO_RELEASE is required") | ||||||
|
|
||||||
| const version = process.env.OPENCODE_VERSION | ||||||
| if (!releaseId) throw new Error("OPENCODE_VERSION is required") | ||||||
| const version = process.env.KILO_VERSION | ||||||
| if (!releaseId) throw new Error("KILO_VERSION is required") | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WARNING: If
Suggested change
|
||||||
|
|
||||||
| const token = process.env.GH_TOKEN ?? process.env.GITHUB_TOKEN | ||||||
| if (!token) throw new Error("GH_TOKEN or GITHUB_TOKEN is required") | ||||||
|
|
||||||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CRITICAL: Startup migration check points at the wrong data directory
The CLI now stores the database at
~/.local/share/kilo/kilo.db(Global.Path.datauses thekiloapp name), but this probe still looks under.../opencode/kilo.db. For existing installs that already have the migrated DB,needsMigrationstaystrueandinitialize()waits forever for asqlite-migration:doneevent that will never be emitted.