release: v0.10.2

This commit is contained in:
opencode
2025-09-19 15:18:11 +00:00
parent 2460108223
commit f57c3f7cf6
13 changed files with 28 additions and 28 deletions

View File

@@ -14,7 +14,7 @@
},
"packages/app": {
"name": "@opencode/app",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@kobalte/core": "0.13.11",
"@opencode-ai/sdk": "workspace:*",
@@ -60,7 +60,7 @@
},
"packages/console/core": {
"name": "@opencode/console-core",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@aws-sdk/client-sts": "3.782.0",
"@opencode/console-resource": "workspace:*",
@@ -77,7 +77,7 @@
},
"packages/console/function": {
"name": "@opencode/console-function",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@ai-sdk/anthropic": "2.0.0",
"@ai-sdk/openai": "2.0.2",
@@ -103,7 +103,7 @@
},
"packages/console/scripts": {
"name": "@opencode/console-scripts",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@opencode/console-core": "workspace:*",
"tsx": "4.20.5",
@@ -115,7 +115,7 @@
},
"packages/function": {
"name": "@opencode/function",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@octokit/auth-app": "8.0.1",
"@octokit/rest": "22.0.0",
@@ -130,7 +130,7 @@
},
"packages/opencode": {
"name": "opencode",
"version": "0.10.1",
"version": "0.10.2",
"bin": {
"opencode": "./bin/opencode",
},
@@ -181,7 +181,7 @@
},
"packages/plugin": {
"name": "@opencode-ai/plugin",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@opencode-ai/sdk": "workspace:*",
"zod": "catalog:",
@@ -193,7 +193,7 @@
},
"packages/sdk/js": {
"name": "@opencode-ai/sdk",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@hey-api/openapi-ts": "0.81.0",
},
@@ -205,7 +205,7 @@
},
"packages/web": {
"name": "@opencode/web",
"version": "0.10.1",
"version": "0.10.2",
"dependencies": {
"@astrojs/cloudflare": "12.6.3",
"@astrojs/markdown-remark": "6.3.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@opencode/app",
"version": "0.10.1",
"version": "0.10.2",
"description": "",
"type": "module",
"scripts": {

View File

@@ -7,7 +7,7 @@
"dev:remote": "VITE_AUTH_URL=https://auth.dev.opencode.ai bun sst shell --stage=dev bun dev",
"build": "vinxi build && ../../opencode/script/schema.ts ./.output/public/config.json",
"start": "vinxi start",
"version": "0.10.1"
"version": "0.10.2"
},
"dependencies": {
"@ibm/plex": "6.4.1",

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode/console-core",
"version": "0.10.1",
"version": "0.10.2",
"private": true,
"type": "module",
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@opencode/console-function",
"version": "0.10.1",
"version": "0.10.2",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",

View File

@@ -1,6 +1,6 @@
{
"name": "@opencode/console-scripts",
"version": "0.10.1",
"version": "0.10.2",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",

View File

@@ -1,6 +1,6 @@
{
"name": "@opencode/function",
"version": "0.10.1",
"version": "0.10.2",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json.schemastore.org/package.json",
"version": "0.10.1",
"version": "0.10.2",
"name": "opencode",
"type": "module",
"private": true,

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/plugin",
"version": "0.10.1",
"version": "0.10.2",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
"version": "0.10.1",
"version": "0.10.2",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",

View File

@@ -1105,13 +1105,6 @@ export type EventSessionError = {
}
}
export type EventServerConnected = {
type: "server.connected"
properties: {
[key: string]: unknown
}
}
export type EventFileWatcherUpdated = {
type: "file.watcher.updated"
properties: {
@@ -1120,6 +1113,13 @@ export type EventFileWatcherUpdated = {
}
}
export type EventServerConnected = {
type: "server.connected"
properties: {
[key: string]: unknown
}
}
export type EventIdeInstalled = {
type: "ide.installed"
properties: {
@@ -1142,8 +1142,8 @@ export type Event =
| EventSessionUpdated
| EventSessionDeleted
| EventSessionError
| EventServerConnected
| EventFileWatcherUpdated
| EventServerConnected
| EventIdeInstalled
export type ProjectListData = {

View File

@@ -1,7 +1,7 @@
{
"name": "@opencode/web",
"type": "module",
"version": "0.10.1",
"version": "0.10.2",
"scripts": {
"dev": "astro dev",
"dev:remote": "VITE_API_URL=https://api.opencode.ai astro dev",

View File

@@ -2,7 +2,7 @@
"name": "opencode",
"displayName": "opencode",
"description": "opencode for VS Code",
"version": "0.10.1",
"version": "0.10.2",
"publisher": "sst-dev",
"repository": {
"type": "git",