Fix OpenBSD artifacts and ensure OIDC is working#6231
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
This PR fixes the OpenBSD package naming to ensure OIDC publishing works correctly. The original package name included a specific OpenBSD version (7.8) which was causing issues with the OIDC publishing workflow.
Key changes:
- Rename OpenBSD package from
@rollup/rollup-openbsd7.8-x64to@rollup/rollup-openbsd-x64to follow the platform naming convention - Update version to
4.55.1-0(pre-release) across main packages - Update native.js binding reference to use the corrected package name
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| package.json | Bump version to 4.55.1-0 pre-release |
| package-lock.json | Update lockfile to match new version |
| npm/openbsd-x64/package.json | Rename package from @rollup/rollup-openbsd7.8-x64 to @rollup/rollup-openbsd-x64 to remove OS version specificity |
| npm/openbsd-x64/README.md | Update package name and binary target description to match the rename |
| native.js | Update binding reference from openbsd7.8-x64 to openbsd-x64 |
| browser/package.json | Bump browser package version to 4.55.1-0 |
Thank you for your contribution! ❤️You can try out this pull request locally by installing Rollup via npm install rollup/rollup#fix-publishNotice: Ensure you have installed the latest nightly Rust toolchain. If you haven't installed it yet, please see https://www.rust-lang.org/tools/install to learn how to download Rustup and install Rust. or load it into the REPL: |
Performance report
|
b9ded15 to
6e04b64
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6231 +/- ##
=======================================
Coverage 98.81% 98.81%
=======================================
Files 272 272
Lines 10720 10720
Branches 2870 2870
=======================================
Hits 10593 10593
Misses 85 85
Partials 42 42 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
This PR has been released as part of rollup@4.55.1-0. Note that this is a pre-release, so to test it, you need to install Rollup via |
|
This PR has been released as part of rollup@4.55.1. You can test it via |
This PR contains:
Are tests included?
Breaking Changes?
List any relevant issue numbers:
Description
Unfortunately, the previous publish was not working for the new targets as of course, OIDC publishing requires some extra steps... Hopefully this works now.