-
-
Notifications
You must be signed in to change notification settings - Fork 23
Version packages #209
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
Version packages #209
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@opencoredev/email-sdk", | ||
| "version": "1.2.0", | ||
| "version": "2.0.0", | ||
|
devin-ai-integration[bot] marked this conversation as resolved.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This release changes the SDK to 2.0.0, but the active documentation configuration still tracks v1. The required documentation-version check rejects that mismatch, so release CI cannot complete and the package cannot be published until the v2 documentation configuration is updated or the v1 line is archived. Artifacts
Documentation-version gate harness
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Release validation rejects v2 Version Learn moreThe release workflow runs Example: With the manifest at Recommended fix: Add and configure the v2 docs line, archive the prior v1 docs as required, and include the required v2 migration guide before merging this release PR. Then run Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| "description": "A TypeScript email SDK for unified transactional sending.", | ||
| "keywords": [ | ||
| "bun", | ||
|
|
||
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.
🟡 Stale lockfile blocks release install
Changing the peer range to
^2.0.0leavesbun.lockat^1.3.0. The frozen release install exits before validation or publishing.Learn more
The committed lockfile records each workspace manifest, including the Convex package's peer range. It still records
@opencoredev/email-sdk: ^1.3.0, while this line changes the manifest to^2.0.0. The release workflow installs with--frozen-lockfile, which forbids bringing that entry up to date.Example: A fresh release runner checks out this commit and runs
bun install --frozen-lockfile. Bun detects the peer dependency mismatch and exits beforerelease:ciandchangeset publishrun.Recommended fix: Regenerate and commit
bun.lockwith the repository's pinned Bun 1.3.14 after applying the version changes. Verify the lockfile workspace versions and the Convex peer range both match their manifests.Was this helpful? React with 👍 or 👎 to provide feedback.