-
Notifications
You must be signed in to change notification settings - Fork 2
prepare for next beta release #69
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
The root package.json is private and has no version field. Read package versions from individual subpackages instead and include them in the commit message body for clarity. Co-authored-by: opencode <noreply@anthropic.com>
|
📝 WalkthroughWalkthroughAdjusts versioning strategy and release pipeline to support multi-package versioning. Updates Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Poem
Pre-merge checks✅ Passed checks (3 passed)
📜 Recent review detailsConfiguration used: defaults Review profile: CHILL Plan: Pro 📒 Files selected for processing (4)
🧰 Additional context used🧠 Learnings (4)📓 Common learnings📚 Learning: 2026-01-06T17:56:38.894ZApplied to files:
📚 Learning: 2026-01-06T17:56:38.894ZApplied to files:
📚 Learning: 2026-01-06T17:56:38.894ZApplied to files:
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (5)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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 prepares the repository for the next beta release by correcting version numbers and updating the release workflow to support a monorepo structure with multiple packages.
- Downgrades sdk-core version from 1.0.0-beta.0 to 0.10.0-beta.0 to align with the intended version sequence
- Updates changeset configuration to reflect the new initial versions (0.10.0) and changes sdk-core release type from major to minor
- Enhances the GitHub Actions release workflow to iterate over all packages in the monorepo rather than reading a single root package.json
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| packages/sdk-core/package.json | Downgrades version from 1.0.0-beta.0 to 0.10.0-beta.0 |
| .changeset/pre.json | Updates initial versions from 0.9.0 to 0.10.0 for both sdk-core and sdk-react packages |
| .changeset/migrate-to-lexicon-package.md | Changes sdk-core release type from major to minor to align with semantic versioning for 0.x releases |
| .github/workflows/release.yml | Updates beta release workflow to loop through all packages instead of reading a single package.json file |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| { | ||
| "name": "@hypercerts-org/sdk-core", | ||
| "version": "1.0.0-beta.0", | ||
| "version": "0.10.0-beta.0", |
Copilot
AI
Jan 6, 2026
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.
The version is being downgraded from 1.0.0-beta.0 to 0.10.0-beta.0. If version 1.0.0-beta.0 has already been published to npm, this downgrade will cause issues as npm does not allow publishing a lower version after a higher version has been published. Consider using a version like 1.0.1-beta.0 instead, or if the package hasn't been published yet, ensure any tags or releases for 1.0.0-beta.0 are removed.
| "version": "0.10.0-beta.0", | |
| "version": "1.0.1-beta.0", |
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.