Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
228e909
fix(ui): add Merge Gateway logo (#42015)
MatthewFeroz Sep 14, 2026
7f20943
test(app): retire legacy layout e2e coverage (#49015)
opencode-agent[bot] Sep 14, 2026
a97622c
fix(tui): surface remote auth startup errors (#49016)
opencode-agent[bot] Sep 14, 2026
a74c472
sync release versions for v1.18.31
Sep 14, 2026
4ae1765
chore: add Alan to team members (#49054)
opencode-agent[bot] Sep 14, 2026
5cf4e13
fix(console): route new Console keys to inference (#49036)
vaprdev Sep 14, 2026
403627b
deepseek v4.1 flash
fwang Sep 14, 2026
e03db9b
Merge branch 'dev' of github.com:anomalyco/opencode into dev
fwang Sep 14, 2026
501ff62
fix(console): exclude migrated workspaces from selection (#49336)
vimtor Sep 16, 2026
ee91f19
feat(go): add Union Alpha (#49178)
MrMushrooooom Sep 16, 2026
350c726
chore: generate
opencode-agent[bot] Sep 16, 2026
1364769
fix(go): label Union Alpha as free (#49353)
MrMushrooooom Sep 16, 2026
2e018f7
fix(stats): guard oversized model names (#49363)
opencode-agent[bot] Sep 16, 2026
a6183af
fix(stats): hide Union Alpha provider (#49356)
opencode-agent[bot] Sep 16, 2026
88c6c7a
fix(stats): preserve container dependency lock (#49385)
adamdotdevin Sep 16, 2026
5a83358
fix(console): show migrated workspaces in selector (#49520)
opencode-agent[bot] Sep 17, 2026
b02acc1
chore(stats): update GitHub star fallback (#49654)
opencode-agent[bot] Sep 18, 2026
a7f2373
chore(go): retire Union Alpha (#49718)
MrMushrooooom Sep 18, 2026
e80db11
chore: generate
opencode-agent[bot] Sep 18, 2026
3dd1b30
docs: restore GPT-5.6 Sol pricing (#49724)
MrMushrooooom Sep 18, 2026
1573a7b
support jev
fwang Sep 18, 2026
5f9d918
chore: generate
opencode-agent[bot] Sep 18, 2026
285cff5
feat(console): switch install links to v2 (#49874)
thdxr Sep 19, 2026
ae2da69
docs: add Qwen3.8 Flash to Zen (#49888)
MrMushrooooom Sep 19, 2026
a6cad77
docs: add DeepSeek V4.1 Flash to Zen (#49897)
dc85 Sep 19, 2026
4e1c496
chore: generate
opencode-agent[bot] Sep 19, 2026
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
1 change: 1 addition & 0 deletions .github/TEAM_MEMBERS
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ Slickstef11
usrnk1
vimtor
StarpTech
vaprdev
56 changes: 28 additions & 28 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 0 additions & 41 deletions packages/app/e2e/regression/legacy-new-session.spec.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ test.describe("session timeline projection", () => {
await expect(page.locator('[data-timeline-row="TurnGap"]')).toBeVisible()
})

test("renders comment strips and historical diff summary overflow", async ({ page }) => {
test("renders inline comments and historical diff summary overflow", async ({ page }) => {
const user = userMessage(
[
userText("The user made the following comment regarding lines 4 through 8 of src/a.ts: Keep this stable", {
Expand All @@ -152,14 +152,10 @@ test.describe("session timeline projection", () => {
parentID: "msg_2000_diff_next_user",
created: 1700000011000,
})
await setupTimeline(page, {
messages: [user, assistantMessage(), nextUser, nextAssistant],
settings: { newLayoutDesigns: false },
})
await setupTimeline(page, { messages: [user, assistantMessage(), nextUser, nextAssistant] })
const scroller = page.locator(".scroll-view__viewport", { has: page.locator("[data-timeline-row]") })
await scroller.evaluate((element) => (element.scrollTop = 0))

await expect(page.locator('[data-timeline-row="CommentStrip"]')).toBeVisible()
await expect(page.getByText("Keep this stable", { exact: true })).toBeVisible()
await expect(page.locator('[data-timeline-row="DiffSummary"]')).toBeVisible()
await expect(page.getByText(/show all/i)).toBeVisible()
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencode-ai/app",
"version": "1.18.30",
"version": "1.18.31",
"description": "",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/cli",
"version": "1.18.30",
"version": "1.18.31",
"type": "module",
"license": "MIT",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/codemode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/codemode",
"version": "1.18.30",
"version": "1.18.31",
"description": "Effect-native confined code execution over schema-described tools",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/console/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencode-ai/console-app",
"version": "1.18.30",
"version": "1.18.31",
"type": "module",
"license": "MIT",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions packages/console/app/src/component/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ export function Header(props: { zen?: boolean; go?: boolean; hideGetStarted?: bo
<nav data-component="nav-desktop">
<ul>
<li>
<a href={config.github.repoUrl} target="_blank" style="white-space: nowrap;">
<a href={`${config.github.repoUrl}/tree/v2`} target="_blank" style="white-space: nowrap;">
{i18n.t("nav.github")}
</a>
</li>
<li>
<a href={language.route("/docs")}>{i18n.t("nav.docs")}</a>
<a href="/v2/docs">{i18n.t("nav.docs")}</a>
</li>
<li>
<a href={language.route("/data")}>{i18n.t("nav.data")}</a>
Expand Down Expand Up @@ -243,12 +243,12 @@ export function Header(props: { zen?: boolean; go?: boolean; hideGetStarted?: bo
<A href={language.route("/")}>{i18n.t("nav.home")}</A>
</li>
<li>
<a href={config.github.repoUrl} target="_blank" style="white-space: nowrap;">
<a href={`${config.github.repoUrl}/tree/v2`} target="_blank" style="white-space: nowrap;">
{i18n.t("nav.github")}
</a>
</li>
<li>
<a href={language.route("/docs")}>{i18n.t("nav.docs")}</a>
<a href="/v2/docs">{i18n.t("nav.docs")}</a>
</li>
<li>
<a href={language.route("/data")}>{i18n.t("nav.data")}</a>
Expand Down
4 changes: 2 additions & 2 deletions packages/console/app/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export const config = {
github: {
repoUrl: "https://github.com/anomalyco/opencode",
starsFormatted: {
compact: "195K",
full: "195,000",
compact: "208K",
full: "208,000",
},
},

Expand Down
Loading
Loading