Skip to content

Commit 2321a1e

Browse files
authored
sync: merge upstream v1.0.170 (#147)
1 parent 613de25 commit 2321a1e

48 files changed

Lines changed: 755 additions & 174 deletions

File tree

Some content is hidden

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

.github/last-synced-tag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.169
1+
v1.0.170

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Install OpenCode
6464
if: inputs.bump || inputs.version
65-
run: bun i -g opencode-ai@1.0.143
65+
run: bun i -g opencode-ai@1.0.169
6666

6767
- name: Login to GitHub Container Registry
6868
uses: docker/login-action@v3

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Want to take on an issue? Leave a comment and a maintainer may assign it to you
4040
- `packages/plugin`: Source for `@opencode-ai/plugin`
4141

4242
> [!NOTE]
43-
> After touching `packages/opencode/src/server/server.ts`, run "./packages/sdk/js/script/build.ts" to regenerate the JS sdk.
43+
> If you make changes to the API or SDK (e.g. `packages/opencode/src/server/server.ts`), run `./script/generate.ts` to regenerate the SDK and related files.
4444
4545
Please try to follow the [style guide](./STYLE_GUIDE.md)
4646

STATS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,4 @@
174174
| 2025-12-16 | 1,120,477 (+26,845) | 1,078,022 (+18,944) | 2,198,499 (+45,789) |
175175
| 2025-12-17 | 1,151,067 (+30,590) | 1,097,661 (+19,639) | 2,248,728 (+50,229) |
176176
| 2025-12-18 | 1,178,658 (+27,591) | 1,113,418 (+15,757) | 2,292,076 (+43,348) |
177+
| 2025-12-19 | 1,203,485 (+24,827) | 1,129,698 (+16,280) | 2,333,183 (+41,107) |

bun.lock

Lines changed: 24 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/hashes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"nodeModules": "sha256-U56rAkhKAhZKDEec05Mxj359wjpT03od26tosCjrj9A="
2+
"nodeModules": "sha256-oT1WPPR1sHBhQcJaFL+mod5l3+V8O3uPKJUdrcfTst0="
33
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"vite": "7.1.4",
5151
"@solidjs/meta": "0.29.4",
5252
"@solidjs/router": "0.15.4",
53-
"@solidjs/start": "https://pkg.pr.new/@solidjs/start@dfb2020",
53+
"@solidjs/start": "https://pkg.pr.new/@solidjs/start@57aeb22",
5454
"solid-js": "1.9.10",
5555
"vite-plugin-solid": "2.11.10"
5656
}

packages/console/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-app",
3-
"version": "1.0.169-1",
3+
"version": "1.0.170",
44
"type": "module",
55
"scripts": {
66
"typecheck": "tsgo --noEmit",

packages/console/app/src/routes/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import "./index.css"
22
import { Title, Meta, Link } from "@solidjs/meta"
3-
// import { HttpHeader } from "@solidjs/start"
3+
import { HttpHeader } from "@solidjs/start"
44
import video from "../asset/lander/opencode-min.mp4"
55
import videoPoster from "../asset/lander/opencode-poster.png"
66
import { IconCopy, IconCheck } from "../component/icon"
@@ -42,7 +42,7 @@ export default function Home() {
4242

4343
return (
4444
<main data-page="opencode">
45-
{/*<HttpHeader name="Cache-Control" value="public, max-age=1, s-maxage=3600, stale-while-revalidate=86400" />*/}
45+
<HttpHeader name="Cache-Control" value="public, max-age=1, s-maxage=3600, stale-while-revalidate=86400" />
4646
<Title>OpenCode | The open source AI coding agent</Title>
4747
<Link rel="canonical" href={config.baseUrl} />
4848
<Meta property="og:image" content="/social-share.png" />

packages/console/app/src/routes/zen/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import "./index.css"
22
import { createAsync, query, redirect } from "@solidjs/router"
33
import { Title, Meta, Link } from "@solidjs/meta"
4-
// import { HttpHeader } from "@solidjs/start"
4+
import { HttpHeader } from "@solidjs/start"
55
import zenLogoLight from "../../asset/zen-ornate-light.svg"
66
import { config } from "~/config"
77
import zenLogoDark from "../../asset/zen-ornate-dark.svg"
@@ -30,7 +30,7 @@ export default function Home() {
3030
const loggedin = createAsync(() => checkLoggedIn())
3131
return (
3232
<main data-page="zen">
33-
{/*<HttpHeader name="Cache-Control" value="public, max-age=1, s-maxage=3600, stale-while-revalidate=86400" />*/}
33+
<HttpHeader name="Cache-Control" value="public, max-age=1, s-maxage=3600, stale-while-revalidate=86400" />
3434
<Title>OpenCode Zen | A curated set of reliable optimized models for coding agents</Title>
3535
<Link rel="canonical" href={`${config.baseUrl}/zen`} />
3636
<Meta property="og:image" content="/social-share-zen.png" />

0 commit comments

Comments
 (0)