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
40 changes: 39 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [0.9.1] - 2026-02-03

### Changed
- Patch release for maintenance and stability improvements
- Updated all packages to version 0.9.1 with unified versioning
Comment on lines +22 to +26
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description says all packages were bumped to 0.9.1, but the monorepo root package.json still has version 0.9.0. Either bump the root version too (if it’s part of your release process) or adjust the PR description/changelog to clarify what’s included in the unified versioning set.

Copilot uses AI. Check for mistakes.

## [0.9.0] - 2026-02-03

### Changed
- Minor version bump for new features and improvements
- All packages updated to version 0.9.0

## [0.8.2] - 2026-02-02

### Changed
- **BREAKING**: Removed `view-storage.zod.ts` and `ViewStorage` related types from `@objectstack/spec`
- **BREAKING**: Removed `createView`, `updateView`, `deleteView`, `listViews` from `ObjectStackProtocol` interface
- **BREAKING**: Removed in-memory View Storage implementation from `@objectstack/objectql`
- Updated `@objectstack/plugin-msw` to dynamically load `@objectstack/objectql` to avoid hard dependencies

## [0.8.1] - 2026-02-01

### Changed
- Patch release for maintenance and stability improvements
- Updated all packages to version 0.8.1

## [0.8.0] - 2026-02-01

### Changed
- Upgrade to Zod v4 and protocol improvements
- Aligned all protocol definitions with stricter type safety
- Updated all packages to version 0.8.0

## [0.7.2] - 2026-01-31

### Changed
Expand Down Expand Up @@ -192,7 +225,12 @@ Mark breaking changes clearly:

---

[Unreleased]: https://github.com/objectstack-ai/spec/compare/v0.7.2...HEAD
[Unreleased]: https://github.com/objectstack-ai/spec/compare/v0.9.1...HEAD
[0.9.1]: https://github.com/objectstack-ai/spec/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/objectstack-ai/spec/compare/v0.8.2...v0.9.0
[0.8.2]: https://github.com/objectstack-ai/spec/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/objectstack-ai/spec/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/objectstack-ai/spec/compare/v0.7.2...v0.8.0
[0.7.2]: https://github.com/objectstack-ai/spec/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/objectstack-ai/spec/compare/v0.6.1...v0.7.1
[0.6.1]: https://github.com/objectstack-ai/spec/compare/v0.4.1...v0.6.1
Expand Down
6 changes: 6 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @objectstack/docs

## 0.9.1

### Patch Changes

- Patch release for maintenance and stability improvements. All packages updated with unified versioning.

## 0.8.2

## 0.8.1
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/docs",
"version": "0.9.0",
"version": "0.9.1",
"private": true,
"description": "ObjectStack Protocol Documentation Site",
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions examples/app-crm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @objectstack/example-crm
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog title (@objectstack/example-crm) doesn’t match the package name (@example/app-crm). Update the header to the correct package name for consistency and accurate release notes.

Suggested change
# @objectstack/example-crm
# @example/app-crm

Copilot uses AI. Check for mistakes.

## 0.9.1

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.9.1

## 0.7.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/app-crm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/app-crm",
"version": "0.9.0",
"version": "0.9.1",
"description": "Example CRM implementation using ObjectStack Protocol",
"private": true,
"main": "./objectstack.config.ts",
Expand Down
14 changes: 14 additions & 0 deletions examples/app-host/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @objectstack/example-host
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog title (@objectstack/example-host) doesn’t match the package name (@example/app-host). Please update the header to reflect the actual package name.

Suggested change
# @objectstack/example-host
# @example/app-host

Copilot uses AI. Check for mistakes.

## 0.9.1

### Patch Changes

- Updated dependencies
- @objectstack/metadata@0.9.1
- @objectstack/objectql@0.9.1
- @objectstack/runtime@0.9.1
- @objectstack/driver-memory@0.9.1
- @objectstack/plugin-hono-server@0.9.1
- @example/app-crm@0.9.1
- @example/app-todo@0.9.1
- @example/plugin-bi@0.9.1

## 0.7.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/app-host/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/app-host",
"version": "0.9.0",
"version": "0.9.1",
"private": true,
"scripts": {
"dev": "tsx src/index.ts",
Expand Down
14 changes: 14 additions & 0 deletions examples/app-react-crud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @objectstack/example-msw-react-crud
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog title (@objectstack/example-msw-react-crud) doesn’t match the actual package name (@example/app-react-crud). Update the header to the correct package name so changelog entries align with the published package.

Suggested change
# @objectstack/example-msw-react-crud
# @example/app-react-crud

Copilot uses AI. Check for mistakes.

## 0.9.1

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/client@0.9.1
- @objectstack/client-react@0.9.1
- @objectstack/objectql@0.9.1
- @objectstack/runtime@0.9.1
- @objectstack/driver-memory@0.9.1
- @objectstack/plugin-msw@0.9.1
- @example/app-todo@0.9.1

## 0.7.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/app-react-crud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/app-react-crud",
"version": "0.9.0",
"version": "0.9.1",
"description": "Complete MSW integration example with React CRUD components using ObjectStack Client",
"private": true,
"type": "module",
Expand Down
11 changes: 11 additions & 0 deletions examples/app-todo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @objectstack/example-todo
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog title uses @objectstack/example-todo, but the package is named @example/app-todo (see package.json). Update the header to the correct package name to avoid confusion during releases.

Suggested change
# @objectstack/example-todo
# @example/app-todo

Copilot uses AI. Check for mistakes.

## 0.9.1

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/client@0.9.1
- @objectstack/objectql@0.9.1
- @objectstack/runtime@0.9.1
- @objectstack/driver-memory@0.9.1

## 0.7.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/app-todo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/app-todo",
"version": "0.9.0",
"version": "0.9.1",
"description": "Example Todo App using ObjectStack Protocol",
"private": true,
"main": "./objectstack.config.ts",
Expand Down
9 changes: 9 additions & 0 deletions examples/features/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @objectstack/example-basic
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog title doesn’t match the package name (@example/features in package.json). Please update the header to the correct package name so changelog entries are attributed correctly.

Suggested change
# @objectstack/example-basic
# @example/features

Copilot uses AI. Check for mistakes.

## 0.9.1

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/core@0.9.1
- @objectstack/runtime@0.9.1

## 0.7.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/features/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/features",
"version": "0.9.0",
"version": "0.9.1",
"description": "Feature examples demonstrating ObjectStack core protocols",
"private": true,
"type": "module",
Expand Down
10 changes: 10 additions & 0 deletions examples/guide-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @example/guide-cli

## 0.0.2

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/cli@0.9.1
- @example/plugin-bi@0.9.1
2 changes: 1 addition & 1 deletion examples/guide-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/guide-cli",
"version": "0.0.1",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "objectstack dev",
Expand Down
7 changes: 7 additions & 0 deletions examples/plugin-bi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @objectstack/plugin-bi
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog title doesn’t match the actual package name (@example/plugin-bi in package.json). This can confuse release tooling and readers; update the header to # @example/plugin-bi (and keep naming consistent going forward).

Suggested change
# @objectstack/plugin-bi
# @example/plugin-bi

Copilot uses AI. Check for mistakes.

## 0.9.1

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.9.1

## 0.7.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/plugin-bi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/plugin-bi",
"version": "0.9.0",
"version": "0.9.1",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions examples/plugin-crm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @example/plugin-crm

## 0.1.1

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.9.1
6 changes: 3 additions & 3 deletions examples/plugin-crm/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@example/plugin-crm",
"version": "0.1.0",
"version": "0.1.1",
"main": "objectstack.config.ts",
"private": true,
"scripts": {
"dev": "objectstack dev"
"dev": "objectstack dev"
},
"dependencies": {
"@objectstack/spec": "workspace:*"
},
"devDependencies": {
"typescript": "^5.0.0"
"typescript": "^5.0.0"
}
}
13 changes: 13 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @objectstack/cli

## 0.9.1

### Patch Changes

- Patch release for maintenance and stability improvements. All packages updated with unified versioning.
- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/core@0.9.1
- @objectstack/objectql@0.9.1
- @objectstack/runtime@0.9.1
- @objectstack/driver-memory@0.9.1
- @objectstack/plugin-hono-server@0.9.1

## 0.8.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/cli",
"version": "0.9.0",
"version": "0.9.1",
"description": "Command Line Interface for ObjectStack Protocol",
"main": "dist/index.js",
"bin": {
Expand Down Expand Up @@ -36,7 +36,7 @@
"zod": "^4.3.6"
},
"peerDependencies": {
"@objectstack/core": "^0.9.0"
"@objectstack/core": "^0.9.1"
},
"devDependencies": {
"@types/node": "^25.1.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/client-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @objectstack/client-react

## 0.9.1

### Patch Changes

- Patch release for maintenance and stability improvements. All packages updated with unified versioning.
- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/core@0.9.1
- @objectstack/client@0.9.1

## 0.8.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/client-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/client-react",
"version": "0.9.0",
"version": "0.9.1",
"description": "React hooks for ObjectStack Client SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @objectstack/client

## 0.9.1

### Patch Changes

- Patch release for maintenance and stability improvements. All packages updated with unified versioning.
- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/core@0.9.1

## 0.8.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/client",
"version": "0.9.0",
"version": "0.9.1",
"description": "Official Client SDK for ObjectStack Protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @objectstack/core

## 0.9.1

### Patch Changes

- Patch release for maintenance and stability improvements. All packages updated with unified versioning.
- Updated dependencies
- @objectstack/spec@0.9.1

## 0.8.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/core",
"version": "0.9.0",
"version": "0.9.1",
"description": "Microkernel Core for ObjectStack",
"type": "module",
"main": "dist/index.js",
Expand Down
10 changes: 10 additions & 0 deletions packages/metadata/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @objectstack/metadata

## 0.9.1

### Patch Changes

- Patch release for maintenance and stability improvements. All packages updated with unified versioning.
- Updated dependencies
- @objectstack/spec@0.9.1
- @objectstack/core@0.9.1
- @objectstack/types@0.9.1

## 0.8.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/metadata/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/metadata",
"version": "0.9.0",
"version": "0.9.1",
"description": "Metadata loading, saving, and persistence for ObjectStack",
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
Loading
Loading