|
| 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 |
0 commit comments