Merged
Conversation
lpahlavi
approved these changes
Feb 10, 2026
Contributor
lpahlavi
left a comment
There was a problem hiding this comment.
Thanks a lot for the PR! Do you think you could also upgrade the solana-* crates that have a new major version? There's a couple like solana-pubkey and solana-reward-info.
Contributor
Author
Good point! I updated the Solana dependencies, excepted for |
Merged
lpahlavi
added a commit
that referenced
this pull request
Feb 18, 2026
## 🤖 New release * `sol_rpc_types`: 3.1.0 -> 3.1.1 * `sol_rpc_canister`: 1.3.0 -> 1.3.1 * `sol_rpc_client`: 4.0.0 -> 5.0.0 <details><summary><i><b>Changelog</b></i></summary><p> ## `sol_rpc_types` <blockquote> ## [3.1.1] - 2026-02-18 ### Changed - Upgrade various dependencies ([#266](#266) and [#279](#279)) [3.1.1]: https://github.com/dfinity/sol-rpc-canister/compare/sol_rpc_types-v3.1.0..sol_rpc_types-v3.1.1 </blockquote> ## `sol_rpc_canister` <blockquote> ## [1.3.1] - 2026-02-18 ### Changed - Upgrade various dependencies ([#266](#266) and [#279](#279)) [1.3.1]: sol_rpc_canister-v1.3.0...sol_rpc_canister-v1.3.1 </blockquote> ## `sol_rpc_client` <blockquote> ## [5.0.0] - 2026-02-18 ### Changed - **BREAKING:** Bump `ic-canister-runtime` to v0.2.0. See PR description for more details on the breaking changes. Notably, clients instances created with `SolRpcClient::builder_for_ic()` now by default do **not** perform inter-canister calls if the canister performing the calls is stopping. To enable calls while the canister is stopping, the client can be initialized with a custom [`ic_canister_runtime::IcRuntime`](https://docs.rs/ic-canister-runtime/0.2.0/ic_canister_runtime/struct.IcRuntime.html) instance configured to allow such calls with the [`allow_calls_when_stopping`](https://docs.rs/ic-canister-runtime/0.2.0/ic_canister_runtime/struct.IcRuntime.html#method.allow_calls_when_stopping) method. ([#288](#288)) - Upgrade various dependencies ([#266](#266) and [#279](#279)) [5.0.0]: https://github.com/dfinity/sol-rpc-canister/compare/sol_rpc_client-v4.0.0..sol_rpc_client-v5.0.0 </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Louis Pahlavi <louis.pahlavi@dfinity.org> Co-authored-by: Louis Pahlavi <louis.pahlavi@gmail.com>
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.
Update all dependencies by running
cargo updateand then manually bumping major versions whenever possible. The main updates are:canhttpto 0.5.0 must handle the new error type for batch requestsConsistentResponseIdFilterError::InconsistentBatchIdsic-stable-structuresto 0.7.2. This includes breaking changes from 0.7.0into_bytesfor stable structures.Resultso that various unwrap/expect are no longer necessary.sol_rpc_clientto 0.4.0 (for the example): requires adding a dependency onic-canister-runtimesinceIcRuntimewas moved to a separate crate.