chore: bump pocket-ic to v13 and ic-agent to v0.47; release ic-pocket-canister-runtime 0.5.0 and ic-agent-canister-runtime 0.4.0#116
Merged
Conversation
Releases `ic-pocket-canister-runtime` 0.5.0 (breaking, due to the `pocket-ic` major bump) to unblock pocket-ic v13 upgrades in `evm-rpc-canister` and `sol-rpc-canister`, which today hit two semver-incompatible copies of the `pocket_ic` crate in the build graph when they try to bump.
The v13 client cannot talk to the v12 server (handshake panics with "Incompatible PocketIC server version"), so the workflow needs to pull the v13 server binary alongside the workspace dep bump.
ic-agent 0.47.2 is already on main via #111; 0.x.y minor bumps are breaking under cargo semver, so consumers (e.g. sol-rpc-canister) need a new release of this crate to be able to update transitively.
pocket-ic to v13.0.0 and release ic-pocket-canister-runtime 0.5.0
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.
Summary
Bundles two workspace dep bumps and releases the two affected runtime crates so downstream consumers can pick them up:
pocket-ic12 → 13 (re-applies the bump rolled back by build(deps): revert all post-bc1394b dependency bumps #114). Bumpsic-pocket-canister-runtime0.4.2 → 0.5.0 (breaking).ic-agent0.46.2 → 0.47.2 landed already via build(deps): bump ic-agent from 0.46.2 to 0.47.2 #111. Bumpsic-agent-canister-runtime0.3.0 → 0.4.0 (breaking, since 0.x minor bumps are semver-breaking).Also pins the PocketIC server binary in CI to v13.0.0 — without it, the v13 client refuses to talk to the v12 server and integration tests panic with
Incompatible PocketIC server version.Unblocks the pocket-ic v13 / ic-agent v0.47.2 transitive upgrades in
dfinity/evm-rpc-canisteranddfinity/sol-rpc-canister.