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
5 changes: 4 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,8 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"ignore": [],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
}
}
6 changes: 4 additions & 2 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ObjectStack Protocol — Road Map

> **Last Updated:** 2026-02-25
> **Current Version:** v3.0.8
> **Last Updated:** 2026-02-28
> **Current Version:** v3.0.11
> **Status:** Protocol Specification Complete · Runtime Implementation In Progress

---
Expand Down Expand Up @@ -903,6 +903,8 @@ Final polish and advanced features.

## Versioning Plan

> **Release Process Note (2026-02-28):** Fixed a bug where `workspace:*` peer dependencies combined with changesets' default `onlyUpdatePeerDependentsWhenOutOfRange: false` caused minor version bumps to escalate to major bumps across the fixed group. Internal peer dependencies now use `workspace:^` and the changeset config enables `onlyUpdatePeerDependentsWhenOutOfRange`.

| Version | Target | Focus |
|:---|:---|:---|
| **v3.0** | ✅ Shipped | Protocol specification complete, core runtime stable |
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:watch": "vitest"
},
"peerDependencies": {
"@objectstack/runtime": "workspace:*",
"@objectstack/runtime": "workspace:^",
"express": "^5.1.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:watch": "vitest"
},
"peerDependencies": {
"@objectstack/runtime": "workspace:*",
"@objectstack/runtime": "workspace:^",
"fastify": "^5.7.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/hono/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:watch": "vitest"
},
"peerDependencies": {
"@objectstack/runtime": "workspace:*",
"@objectstack/runtime": "workspace:^",
"hono": "^4.12.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"peerDependencies": {
"@nestjs/common": "^11.1.14",
"@nestjs/core": "^11.1.14",
"@objectstack/runtime": "workspace:*"
"@objectstack/runtime": "workspace:^"
},
"devDependencies": {
"@nestjs/common": "^11.1.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test:watch": "vitest"
},
"peerDependencies": {
"@objectstack/runtime": "workspace:*",
"@objectstack/runtime": "workspace:^",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:watch": "vitest"
},
"peerDependencies": {
"@objectstack/runtime": "workspace:*",
"@objectstack/runtime": "workspace:^",
"h3": "^1.15.5"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:watch": "vitest"
},
"peerDependencies": {
"@objectstack/runtime": "workspace:*",
"@objectstack/runtime": "workspace:^",
"@sveltejs/kit": "^2.53.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"zod": "^4.3.6"
},
"peerDependencies": {
"@objectstack/core": "workspace:*"
"@objectstack/core": "workspace:^"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.37",
Expand Down
14 changes: 7 additions & 7 deletions packages/plugins/plugin-dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
"@objectstack/spec": "workspace:*"
},
"peerDependencies": {
"@objectstack/driver-memory": "workspace:*",
"@objectstack/objectql": "workspace:*",
"@objectstack/runtime": "workspace:*",
"@objectstack/plugin-auth": "workspace:*",
"@objectstack/plugin-hono-server": "workspace:*",
"@objectstack/plugin-security": "workspace:*",
"@objectstack/rest": "workspace:*"
"@objectstack/driver-memory": "workspace:^",
"@objectstack/objectql": "workspace:^",
"@objectstack/runtime": "workspace:^",
"@objectstack/plugin-auth": "workspace:^",
"@objectstack/plugin-hono-server": "workspace:^",
"@objectstack/plugin-security": "workspace:^",
"@objectstack/rest": "workspace:^"
},
"peerDependenciesMeta": {
"@objectstack/driver-memory": {
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/plugin-msw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test": "vitest run"
},
"peerDependencies": {
"@objectstack/runtime": "workspace:*"
"@objectstack/runtime": "workspace:^"
},
"dependencies": {
"@objectstack/core": "workspace:*",
Expand Down