Skip to content

Commit 4bf04cf

Browse files
Copilothotlong
andcommitted
chore: release v2.0.7 - events modularization and maintenance
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 374404d commit 4bf04cf

55 files changed

Lines changed: 304 additions & 43 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.7] - 2026-02-11
11+
1012
### Added
1113
- Modularized `kernel/events.zod.ts` (765 lines) into 6 focused sub-modules for better tree-shaking:
1214
- `events/core.zod.ts`: Priority, metadata, type definition, base event
@@ -19,14 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1921

2022
### Changed
2123
- `kernel/events.zod.ts` now re-exports from sub-modules (backward compatible)
22-
23-
### Deprecated
24-
25-
### Removed
26-
27-
### Fixed
28-
29-
### Security
24+
- Updated all packages to version 2.0.7 with unified versioning
3025

3126
## [2.0.6] - 2026-02-11
3227

@@ -274,7 +269,8 @@ Mark breaking changes clearly:
274269

275270
---
276271

277-
[Unreleased]: https://github.com/objectstack-ai/spec/compare/v2.0.6...HEAD
272+
[Unreleased]: https://github.com/objectstack-ai/spec/compare/v2.0.7...HEAD
273+
[2.0.7]: https://github.com/objectstack-ai/spec/compare/v2.0.6...v2.0.7
278274
[2.0.6]: https://github.com/objectstack-ai/spec/compare/v2.0.5...v2.0.6
279275
[2.0.5]: https://github.com/objectstack-ai/spec/compare/v2.0.4...v2.0.5
280276
[2.0.4]: https://github.com/objectstack-ai/spec/compare/v2.0.3...v2.0.4

apps/docs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @objectstack/docs
22

3+
## 2.0.7
4+
35
## 2.0.6
46

57
### Patch Changes

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/docs",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"private": true,
55
"description": "ObjectStack Protocol Documentation Site",
66
"license": "Apache-2.0",

apps/studio/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @objectstack/studio
22

3+
## 2.0.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@2.0.7
9+
- @objectstack/client@2.0.7
10+
- @objectstack/client-react@2.0.7
11+
- @objectstack/metadata@2.0.7
12+
- @objectstack/objectql@2.0.7
13+
- @objectstack/driver-memory@2.0.7
14+
- @objectstack/plugin-msw@2.0.7
15+
- @objectstack/runtime@2.0.7
16+
317
## 2.0.6
418

519
### Patch Changes

apps/studio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/studio",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "ObjectStack Studio - A metadata-driven admin interface for managing data and configuration",
55
"license": "Apache-2.0",
66
"type": "module",

examples/app-crm/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @objectstack/example-crm
22

3+
## 1.2.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@2.0.7
9+
310
## 1.2.7
411

512
### Patch Changes

examples/app-crm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/app-crm",
3-
"version": "1.2.7",
3+
"version": "1.2.8",
44
"description": "Example CRM implementation using ObjectStack Protocol",
55
"license": "Apache-2.0",
66
"private": true,

examples/app-host/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @objectstack/example-host
22

3+
## 1.2.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@2.0.7
9+
- @example/app-crm@1.2.8
10+
- @example/app-todo@1.2.8
11+
- @example/plugin-bi@1.2.8
12+
- @objectstack/metadata@2.0.7
13+
- @objectstack/objectql@2.0.7
14+
- @objectstack/driver-memory@2.0.7
15+
- @objectstack/plugin-hono-server@2.0.7
16+
- @objectstack/runtime@2.0.7
17+
318
## 1.2.7
419

520
### Patch Changes

examples/app-host/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/app-host",
3-
"version": "1.2.7",
3+
"version": "1.2.8",
44
"license": "Apache-2.0",
55
"private": true,
66
"scripts": {

examples/app-todo/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @objectstack/example-todo
22

3+
## 1.2.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@2.0.7
9+
- @objectstack/client@2.0.7
10+
- @objectstack/objectql@2.0.7
11+
- @objectstack/driver-memory@2.0.7
12+
- @objectstack/runtime@2.0.7
13+
314
## 1.2.7
415

516
### Patch Changes

0 commit comments

Comments
 (0)