-
Notifications
You must be signed in to change notification settings - Fork 0
Unify all package versions to 3.0.0 #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
|
@copilot 全部改为3.0 |
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
|
@copilot 确认所有example 都是 private |
Confirmed: All 7 example packages are already marked as
No changes needed. |
📋 Changelog PreviewThe following changes will be included in the next release:
🦋 �[31merror�[39m Error: Failed to find where HEAD diverged from "main". Does "main" exist and it's synced with remote? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR standardizes version numbers across the entire monorepo to 3.0.0, eliminating version fragmentation that existed across 22 packages. The change ensures all packages in the "fixed" versioning group defined in .changeset/config.json are synchronized, which is critical for maintaining dependency consistency in a monorepo architecture.
Changes:
- Updated 15 core packages (foundation, drivers, runtime, tools) from version 1.9.2 to 3.0.0
- Updated VSCode extension from version 2.0.1 to 3.0.0
- Updated 7 example packages from various versions (0.1.2 to 1.8.7) to 3.0.0
- Aligned root monorepo version from 2.0.0 to 3.0.0
Reviewed changes
Copilot reviewed 21 out of 21 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
package.json |
Root monorepo version updated from 2.0.0 to 3.0.0 |
packages/foundation/types/package.json |
Core type definitions package updated to 3.0.0 |
packages/foundation/core/package.json |
Universal runtime engine package updated to 3.0.0 |
packages/foundation/platform-node/package.json |
Node.js platform utilities package updated to 3.0.0 |
packages/drivers/sql/package.json |
SQL database driver package updated to 3.0.0 |
packages/drivers/mongo/package.json |
MongoDB driver package updated to 3.0.0 |
packages/drivers/fs/package.json |
File system driver package updated to 3.0.0 |
packages/drivers/localstorage/package.json |
LocalStorage driver package updated to 3.0.0 |
packages/drivers/memory/package.json |
In-memory driver package updated to 3.0.0 |
packages/drivers/redis/package.json |
Redis driver package updated to 3.0.0 |
packages/drivers/excel/package.json |
Excel file driver package updated to 3.0.0 |
packages/drivers/sdk/package.json |
Remote HTTP driver package updated to 3.0.0 |
packages/runtime/server/package.json |
HTTP server adapter package updated to 3.0.0 |
packages/tools/cli/package.json |
CLI tools package updated to 3.0.0 |
packages/tools/create/package.json |
Project creation tool package updated to 3.0.0 |
packages/tools/vscode-objectql/package.json |
VSCode extension package updated to 3.0.0 |
examples/quickstart/hello-world/package.json |
Hello world example updated to 3.0.0 |
examples/integrations/express-server/package.json |
Express server example updated to 3.0.0 |
examples/integrations/browser/package.json |
Browser integration example updated to 3.0.0 |
examples/drivers/fs-demo/package.json |
File system driver demo updated to 3.0.0 |
examples/drivers/excel-demo/package.json |
Excel driver demo updated to 3.0.0 |
Standardized version numbers across the monorepo from disparate versions (1.9.2, 2.0.1, 3.0.0, etc.) to a unified 3.0.0.
Changes
22 packages updated:
@objectql/{types,core,platform-node}from 1.9.2@objectql/driver-{sql,mongo,fs,localstorage,memory,redis,excel}+@objectql/sdkfrom 1.9.2@objectql/{server,cli,create}from 1.9.2,vscode-objectqlfrom 2.0.1All now align with root monorepo version 3.0.0 and satisfy the fixed group constraint in
.changeset/config.json.{ "name": "@objectql/core", "version": "3.0.0", ... }Verification:
pnpm run check-versionsnow passes with all fixed groups synchronized at version 3.0.0.Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.