- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 11
bug: Fix bumping error #198
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
action run 2509947803 change files
expectedevery package and its covector dependencies to be bumped to the preview version received
It's a wild guess but this might be happening because the config's package names do not match the actual package versions as they're listed in the dependencies |
action run 2510619670 change files
expectedevery package and its covector dependencies to be bumped to the preview version receivedeverything being bumped as it's supposed to. the fix was to update the config file because i guess the packages specified in config are matched to the names listed in the packages' packge.json. |
action run 2510799442 change filesjust expected
received
👍 |
* Disable workflows and update location of preview action * Specify label and previewVersion inputs for action manifest * Add conditional for version bumping for previews * Add versioning steps for preview command * Pass in context and previewVersion into covector from action * Add publishing steps for preview command * Run action locally for preview workflow * Remove post publish commands from preview * Double timeout length for preview command * Re-enable the other workflows * Remove unused argument in apply * Modify change file to include apply and covector * Add preview label to version PR creator * Undo doubling timeout for preview * Update invalid template error message * Throw error when preview runs on non-pr * Add action argument for branch identifier * Change change files to minor bump * Remove unnecessary argument * Fix apply bug for bumpDep * Add test for preview apply * Add test for preview covector * Remove obsolete snapshots * Add console log for preview version bumps * Update snapshot * New fixture for preview * New new fixture * Fix rust bug * Make test use new fixture * bug: Fix bumping error (#198) * Fix overlooked refactor of a variable in apply * Rename package files in config to match the packages json files * Reintroduce accidentally deleted toml file in fixtures * Fix change files with the correct package names
Motivation
I noticed a bug in covector on how it's supposed to bump inter-dependent packages. It wasn't showing up in tests but in the covector setup within the covector monorepo workspace so this PR is meant to locate why that was happening.
Approach