Skip to content

Commit 1013db4

Browse files
authored
Merge pull request #502 from objectstack-ai/copilot/create-version-release
2 parents 3f807ec + 3220ec8 commit 1013db4

77 files changed

Lines changed: 759 additions & 39 deletions

Some content is hidden

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

.changeset/config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
"@object-ui/plugin-timeline",
4040
"@object-ui/plugin-view",
4141
"@object-ui/plugin-workflow",
42+
"@object-ui/collaboration",
43+
"@object-ui/console",
4244
"object-ui"
4345
]
4446
],
@@ -48,7 +50,6 @@
4850
"updateInternalDependencies": "patch",
4951
"ignore": [
5052
"@object-ui/example-*",
51-
"@object-ui/console",
5253
"@object-ui/site"
5354
]
5455
}

apps/console/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# @object-ui/console
2+
3+
## 3.0.0
4+
5+
### Major Changes
6+
7+
- Upgrade to @objectstack v3.0.0 and console bundle optimization
8+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
9+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
10+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
11+
- Added gzip + brotli pre-compression via vite-plugin-compression2
12+
- Lazy MSW loading for build:server (~150 KB gzip saved)
13+
- Added bundle analysis with rollup-plugin-visualizer

apps/console/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@object-ui/console",
3-
"version": "1.0.0",
3+
"version": "3.0.0",
44
"description": "ObjectStack Console - The standard runtime UI for ObjectStack applications",
55
"type": "module",
66
"main": "./plugin.ts",

packages/auth/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @object-ui/auth
22

3+
## 3.0.0
4+
5+
### Minor Changes
6+
7+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
8+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
9+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
10+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
11+
- Added gzip + brotli pre-compression via vite-plugin-compression2
12+
- Lazy MSW loading for build:server (~150 KB gzip saved)
13+
- Added bundle analysis with rollup-plugin-visualizer
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [87979c3]
18+
- @object-ui/types@3.0.0
19+
320
## 2.0.0
421

522
### Major Changes

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@object-ui/auth",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"type": "module",
55
"license": "MIT",
66
"description": "Authentication system for Object UI with AuthProvider, useAuth hook, AuthGuard, and form components.",

packages/cli/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @object-ui/cli
22

3+
## 3.0.0
4+
5+
### Minor Changes
6+
7+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
8+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
9+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
10+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
11+
- Added gzip + brotli pre-compression via vite-plugin-compression2
12+
- Lazy MSW loading for build:server (~150 KB gzip saved)
13+
- Added bundle analysis with rollup-plugin-visualizer
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [87979c3]
18+
- @object-ui/types@3.0.0
19+
- @object-ui/react@3.0.0
20+
- @object-ui/components@3.0.0
21+
322
## 2.0.0
423

524
### Major Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@object-ui/cli",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"description": "CLI tool for Object UI - Build applications from JSON schemas",
55
"type": "module",
66
"homepage": "https://www.objectui.org",
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# @object-ui/collaboration
2+
3+
## 3.0.0
4+
5+
### Minor Changes
6+
7+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
8+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
9+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
10+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
11+
- Added gzip + brotli pre-compression via vite-plugin-compression2
12+
- Lazy MSW loading for build:server (~150 KB gzip saved)
13+
- Added bundle analysis with rollup-plugin-visualizer
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [87979c3]
18+
- @object-ui/types@3.0.0

packages/collaboration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@object-ui/collaboration",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"type": "module",
55
"license": "MIT",
66
"description": "Real-time collaboration for Object UI with presence tracking, live cursors, conflict resolution, and comment threads.",

packages/components/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @object-ui/components
22

3+
## 3.0.0
4+
5+
### Minor Changes
6+
7+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
8+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
9+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
10+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
11+
- Added gzip + brotli pre-compression via vite-plugin-compression2
12+
- Lazy MSW loading for build:server (~150 KB gzip saved)
13+
- Added bundle analysis with rollup-plugin-visualizer
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [87979c3]
18+
- @object-ui/types@3.0.0
19+
- @object-ui/core@3.0.0
20+
- @object-ui/react@3.0.0
21+
322
## 2.0.0
423

524
### Major Changes

0 commit comments

Comments
 (0)