Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 12, 2026

Release Small Version (v1.7.0 → v1.7.1) ✅

  • Analyze repository structure and understand changeset workflow
  • Create a changeset for the new version
  • Run changeset version to bump all package versions
  • Verify version consistency across all packages
  • Update .gitignore to exclude tutorial CHANGELOGs
  • Commit all version changes and CHANGELOGs
  • Verify the release is ready
  • Complete release preparation

Summary

Successfully released version 1.7.1 (patch version) for all ObjectQL packages:

Packages Updated

All 12 packages in the fixed group have been synchronized to version 1.7.1:

  • @objectql/types
  • @objectql/core
  • @objectql/platform-node
  • @objectql/driver-sql
  • @objectql/driver-mongo
  • @objectql/sdk
  • @objectql/server
  • @objectql/cli
  • @objectql/studio
  • @objectql/starter-basic
  • @objectql/starter-express-api
  • @objectql/starter-enterprise

Changes Made

  1. Created changeset for patch version bump
  2. Updated all package.json files from 1.7.0 to 1.7.1
  3. Generated CHANGELOG entries for all packages
  4. Updated tutorial example versions
  5. Added .gitignore rule for tutorial CHANGELOGs

Next Steps

To publish this version to npm, run:

npm run release

This will build all packages and publish them to npm (requires npm authentication).

Original prompt

发一个小版本


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
@hotlong hotlong requested a review from Copilot January 12, 2026 16:07
@hotlong hotlong marked this pull request as ready for review January 12, 2026 16:08
@hotlong hotlong merged commit 8f12f90 into main Jan 12, 2026
4 checks passed
Copilot AI requested a review from hotlong January 12, 2026 16:08
Copilot stopped work on behalf of hotlong due to an error January 12, 2026 16:08
Copy link
Contributor

Copilot AI left a 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 performs a patch version release from v1.7.0 to v1.7.1 for all ObjectQL packages using the changesets workflow. The release synchronizes all 12 packages in the monorepo to maintain version consistency across the ecosystem.

Changes:

  • Bumped all package versions from 1.7.0 to 1.7.1 across foundation, driver, runtime, tool, and starter packages
  • Added CHANGELOG entries documenting the patch release and dependency updates
  • Updated tutorial example packages from 1.0.0 to 1.0.1
  • Added .gitignore rule to exclude auto-generated tutorial CHANGELOGs

Reviewed changes

Copilot reviewed 28 out of 29 changed files in this pull request and generated 5 comments.

Show a summary per file
File Description
packages/foundation/types/package.json Version bump to 1.7.1
packages/foundation/types/CHANGELOG.md Added 1.7.1 release notes
packages/foundation/core/package.json Version bump to 1.7.1
packages/foundation/core/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/foundation/platform-node/package.json Version bump to 1.7.1
packages/foundation/platform-node/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/drivers/sql/package.json Version bump to 1.7.1
packages/drivers/sql/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/drivers/mongo/package.json Version bump to 1.7.1
packages/drivers/mongo/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/drivers/sdk/package.json Version bump to 1.7.1
packages/drivers/sdk/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/runtime/server/package.json Version bump to 1.7.1
packages/runtime/server/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/tools/cli/package.json Version bump to 1.7.1
packages/tools/cli/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/tools/studio/package.json Version bump to 1.7.1
packages/tools/studio/CHANGELOG.md Added 1.7.1 release notes
packages/starters/basic/package.json Version bump to 1.7.1
packages/starters/basic/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/starters/express-api/package.json Version bump to 1.7.1
packages/starters/express-api/CHANGELOG.md Added 1.7.1 release notes with dependency updates
packages/starters/enterprise/package.json Version bump to 1.7.1
packages/starters/enterprise/CHANGELOG.md Added 1.7.1 release notes with dependency updates
examples/tutorials/tutorial-task-manager/package.json Version bump to 1.0.1
examples/tutorials/tutorial-federation/package.json Version bump to 1.0.1
examples/tutorials/tutorial-crm-system/package.json Version bump to 1.0.1
examples/tutorials/tutorial-ai-agent/package.json Version bump to 1.0.1
.gitignore Added rule to exclude tutorial CHANGELOGs

@@ -1,5 +1,11 @@
# @objectql/core
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CHANGELOG header shows "@objectql/core" but this file belongs to the "@objectql/types" package. The header should be "# @objectql/types" to match the package name in package.json.

Suggested change
# @objectql/core
# @objectql/types

Copilot uses AI. Check for mistakes.
@@ -1,5 +1,13 @@
# @objectql/driver-remote
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CHANGELOG header shows "@objectql/driver-remote" but this file belongs to the "@objectql/sdk" package. The header should be "# @objectql/sdk" to match the package name in package.json.

Suggested change
# @objectql/driver-remote
# @objectql/sdk

Copilot uses AI. Check for mistakes.
@@ -1,5 +1,16 @@
# @example/project-management
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CHANGELOG header shows "@example/project-management" but this file belongs to the "@objectql/starter-basic" package. The header should be "# @objectql/starter-basic" to match the package name in package.json.

Suggested change
# @example/project-management
# @objectql/starter-basic

Copilot uses AI. Check for mistakes.
@@ -1,5 +1,17 @@
# @example/express-server
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CHANGELOG header shows "@example/express-server" but this file belongs to the "@objectql/starter-express-api" package. The header should be "# @objectql/starter-express-api" to match the package name in package.json.

Suggested change
# @example/express-server
# @objectql/starter-express-api

Copilot uses AI. Check for mistakes.
@@ -1,5 +1,16 @@
# @example/enterprise-structure
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CHANGELOG header shows "@example/enterprise-structure" but this file belongs to the "@objectql/starter-enterprise" package. The header should be "# @objectql/starter-enterprise" to match the package name in package.json.

Suggested change
# @example/enterprise-structure
# @objectql/starter-enterprise

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants