Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 14 additions & 0 deletions apps/cloud/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,25 @@
},
],
},
// The MCP session DO moved to the Cloudflare Agents (`McpAgent`) base, which
// stores state in SQLite. `McpSessionDO` was originally created with the
// key-value backend (`new_classes`), and Cloudflare cannot convert a live class
// to SQLite in place. Session state is ephemeral, so v2 deletes the KV class and
// v3 recreates the same name on the SQLite backend. Keeping the name avoids any
// binding/export rename.
"migrations": [
{
"tag": "v1",
"new_classes": ["McpSessionDO"],
},
Comment thread
greptile-apps[bot] marked this conversation as resolved.
{
"tag": "v2",
"deleted_classes": ["McpSessionDO"],
},
{
"tag": "v3",
"new_sqlite_classes": ["McpSessionDO"],
},
],
"services": [
{
Expand Down
4 changes: 2 additions & 2 deletions packages/core/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/execution/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"./promise": "./src/promise.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -33,8 +34,7 @@
"default": "./dist/core.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/integrations-registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"./public-origin": "./src/public-origin.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand Down Expand Up @@ -83,8 +84,7 @@
"default": "./dist/public-origin.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/vite-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
}
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/kernel/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/kernel/runtime-quickjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/desktop-settings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"./client": "./src/client.tsx"
},
"publishConfig": {
"access": "public",
"exports": {
"./server": {
"import": {
Expand All @@ -33,8 +34,7 @@
"default": "./dist/client.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"./shared": "./src/shared.ts"
},
"publishConfig": {
"access": "public",
"exports": {
"./server": {
"import": {
Expand All @@ -40,8 +41,7 @@
"default": "./dist/shared.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/file-secrets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"./promise": "./src/promise.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -33,8 +34,7 @@
"default": "./dist/core.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/google/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"./client": "./src/react/plugin-client.tsx"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -42,8 +43,7 @@
"default": "./dist/client.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"./testing": "./src/testing/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -50,8 +51,7 @@
"default": "./dist/testing.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/keychain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"./promise": "./src/promise.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -33,8 +34,7 @@
"default": "./dist/core.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"./testing": "./src/testing/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -50,8 +51,7 @@
"default": "./dist/testing.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/microsoft/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"./client": "./src/react/plugin-client.tsx"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -42,8 +43,7 @@
"default": "./dist/client.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/onepassword/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"./client": "./src/react/plugin-client.tsx"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -42,8 +43,7 @@
"default": "./dist/client.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/openapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"./testing": "./src/testing/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -50,8 +51,7 @@
"default": "./dist/testing.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/toolkits/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"./shared": "./src/shared.ts"
},
"publishConfig": {
"access": "public",
"exports": {
"./server": {
"import": {
Expand All @@ -40,8 +41,7 @@
"default": "./dist/shared.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/workos-vault/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"./testing": "./src/sdk/testing.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
Expand All @@ -42,8 +43,7 @@
"default": "./dist/testing.js"
}
}
},
"access": "public"
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
Expand Down
Loading