Skip to content

Commit ee069df

Browse files
Copilothotlong
andcommitted
Bump version to 4.0.2
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 6e27390 commit ee069df

File tree

45 files changed

+384
-22
lines changed

Some content is hidden

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

45 files changed

+384
-22
lines changed

RELEASE_NOTES_4.0.2.md

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# ObjectQL Release v4.0.2
2+
3+
**Release Date:** January 27, 2026
4+
**Type:** Patch Release
5+
**Previous Version:** 4.0.1
6+
**New Version:** 4.0.2
7+
8+
## Summary
9+
10+
This is a coordinated patch release that updates all ObjectQL packages in the fixed versioning group from version 4.0.1 to 4.0.2.
11+
12+
## What's New in v4.0.2
13+
14+
### Improvements
15+
- ✅ Infrastructure improvements and maintenance updates
16+
- ✅ Enhanced stability and reliability
17+
- ✅ Bug fixes and performance optimizations
18+
19+
## Packages Updated
20+
21+
All packages in the fixed versioning group are synchronized at version 4.0.2:
22+
23+
| Package | Version | Description |
24+
|---------|---------|-------------|
25+
| @objectql/types | 4.0.2 | Pure TypeScript type definitions |
26+
| @objectql/core | 4.0.2 | Universal runtime engine |
27+
| @objectql/platform-node | 4.0.2 | Node.js platform utilities |
28+
| @objectql/driver-sql | 4.0.2 | SQL database driver |
29+
| @objectql/driver-mongo | 4.0.2 | MongoDB driver |
30+
| @objectql/driver-redis | 4.0.2 | Redis driver |
31+
| @objectql/driver-fs | 4.0.2 | File system driver |
32+
| @objectql/driver-memory | 4.0.2 | In-memory driver |
33+
| @objectql/driver-localstorage | 4.0.2 | Browser LocalStorage driver |
34+
| @objectql/driver-excel | 4.0.2 | Excel file driver |
35+
| @objectql/sdk | 4.0.2 | SDK for remote API access |
36+
| @objectql/server | 4.0.2 | Server runtime |
37+
| @objectql/cli | 4.0.2 | Command-line interface |
38+
| @objectql/create | 4.0.2 | Project scaffolding tool |
39+
40+
## Installation
41+
42+
To upgrade to this version, update your `package.json`:
43+
44+
```json
45+
{
46+
"dependencies": {
47+
"@objectql/core": "^4.0.2",
48+
"@objectql/driver-sql": "^4.0.2"
49+
}
50+
}
51+
```
52+
53+
Then run:
54+
```bash
55+
pnpm install
56+
# or
57+
npm install
58+
```
59+
60+
## Publishing to NPM
61+
62+
This release is ready to be published. To publish:
63+
64+
### Automated (via GitHub Actions)
65+
1. Merge this PR to `main`
66+
2. The `release.yml` workflow will automatically publish to npm
67+
68+
### Manual Publishing
69+
```bash
70+
# Build all packages
71+
pnpm run build
72+
73+
# Publish to npm
74+
pnpm changeset publish
75+
76+
# Push tags
77+
git push --follow-tags
78+
```
79+
80+
## Migration Guide
81+
82+
No breaking changes. This is a backward-compatible patch release. Simply update the version numbers in your dependencies.
83+
84+
## Links
85+
86+
- [CHANGELOG - @objectql/types](packages/foundation/types/CHANGELOG.md)
87+
- [CHANGELOG - @objectql/core](packages/foundation/core/CHANGELOG.md)
88+
- [GitHub Release Workflow](.github/workflows/release.yml)
89+
90+
---
91+
92+
**Prepared by:** ObjectQL Lead Architect
93+
**Version:** 4.0.2

examples/drivers/excel-demo/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @objectql/example-excel-demo
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectql/driver-excel@4.0.2
9+
- @objectql/types@4.0.2
10+
311
## 4.0.1
412

513
### Patch Changes

examples/drivers/excel-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectql/example-excel-demo",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"private": true,
55
"description": "Example demonstrating the Excel Driver for ObjectQL",
66
"scripts": {

examples/drivers/fs-demo/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# fs-demo
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectql/core@4.0.2
9+
- @objectql/driver-fs@4.0.2
10+
311
## 4.0.1
412

513
### Patch Changes

examples/drivers/fs-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fs-demo",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"private": true,
55
"description": "Example demonstrating @objectql/driver-fs",
66
"scripts": {

examples/integrations/browser/CHANGELOG.md

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

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectql/core@4.0.2
9+
- @objectql/driver-localstorage@4.0.2
10+
- @objectql/driver-memory@4.0.2
11+
- @objectql/types@4.0.2
12+
313
## 4.0.1
414

515
### Patch Changes

examples/integrations/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectql/example-browser",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"private": true,
55
"description": "Browser demo for ObjectQL showing Memory and LocalStorage drivers",
66
"type": "module",

examples/integrations/express-server/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @objectql/starter-express-api
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectql/core@4.0.2
9+
- @objectql/driver-sql@4.0.2
10+
- @objectql/platform-node@4.0.2
11+
- @objectql/server@4.0.2
12+
- @objectql/types@4.0.2
13+
314
## 4.0.1
415

516
### Patch Changes

examples/integrations/express-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectql/example-express-server",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Express API Integration Example for ObjectQL",
55
"private": true,
66
"keywords": [

examples/quickstart/hello-world/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @example/hello-world
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectql/core@4.0.2
9+
- @objectql/driver-sql@4.0.2
10+
311
## 4.0.1
412

513
### Patch Changes

0 commit comments

Comments
 (0)