chore: sync release icm-v0.10.50 into develop#256
Open
pszymkowiak wants to merge 5 commits into
Open
Conversation
Next Release
Next Release
…omponents--icm chore(main): release icm 0.10.50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Manual back-merge of release-please commits from
mainintodevelop, after the automatedBack-merge main into developjob failed on the v0.10.50 release run (run 26327596376, job 77508410900).Why this is needed
After v0.10.50 was published, the automated back-merge job in
cd.ymlfailed duringgit pushwith:The fast-forward merge itself succeeded — only the push step failed (auth wiring bug between the GitHub App token and
git push). Consequence:developstill carriesCargo.tomlversion0.10.49even thoughmainis on0.10.50, and the nextdevelop → mainPR (#248) would otherwise pull a stale base.What this PR contains
Three release-please artifacts from
main, no source changes:.release-please-manifest.json— bump to 0.10.50crates/icm-cli/CHANGELOG.md— 0.10.50 entrycrates/icm-cli/Cargo.toml— version 0.10.49 → 0.10.50No conflict, no behavior change.
Follow-up
The
cd.ymlback-merge-developjob still needs a durable fix so this doesn't reproduce. Two options:git push+gh pr createstep topeter-evans/create-pull-request@v7, which handles App-token auth correctly.git remote set-url origin "https://x-access-token:\${GH_TOKEN}@github.com/\${GITHUB_REPOSITORY}.git"before the push.Tracked separately — this PR only resolves the immediate drift.