Conversation
3528eba to
f7818e4
Compare
|
@gregorydemay I would still like to include this PR before publishing the new releases for the |
gregorydemay
left a comment
There was a problem hiding this comment.
Thanks @lpahlavi for the upgrade!
| InstructionError::DuplicateAccountIndex => Self::DuplicateAccountIndex, | ||
| InstructionError::ExecutableModified => Self::ExecutableModified, | ||
| InstructionError::RentEpochModified => Self::RentEpochModified, | ||
| #[allow(deprecated)] |
There was a problem hiding this comment.
nit: here and below let's maybe add a comment that this deprecation comes from solana_transaction_status_client_types
Deprecated since 3.1.0: This crate has been marked for formal inclusion in the Agave Unstable API. From v4.0.0 onward, the agave-unstable-api crate feature must be specified to acknowledge use of an interface that may break without warning.
There was a problem hiding this comment.
Good point! Though this enum was actually deprecated separately in solana_instruction_error@2.1.0 so I added comments accordingly.
## 🤖 New release * `sol_rpc_types`: 3.0.0 -> 4.0.0 * `sol_rpc_canister`: 1.3.0 * `sol_rpc_client`: 3.0.0 -> 3.1.0 <details><summary><i><b>Changelog</b></i></summary><p> ## `sol_rpc_types` <blockquote> ## [3.1.0] - 2026-01-12 ### Changed - Bump `ic-cdk` to v0.19.0 ([#251](#251)) - Upgrade various dependencies ([#260](#260)) [3.1.0]: https://github.com/dfinity/sol-rpc-canister/compare/3.0.0..3.1.0 </blockquote> ## `sol_rpc_canister` <blockquote> ## [1.3.0] - 2026-01-12 ### Changed - Bump `ic-cdk` to v0.19.0 ([#251](#251)) - Upgrade various dependencies ([#260](#260)) ### Fixed - Do not ignore `response_size_estimate` for `getBlock` endpoint ([#236](#236)) [1.3.0]: sol_rpc_canister-v1.2.0...sol_rpc_canister-v1.3.0 </blockquote> ## `sol_rpc_client` <blockquote> ## [4.0.0] - 2026-01-12 ### Changed - Use `ic_canister_runtime::Runtime` instead of local `Runtime` trait ([#248](#248)) - **BREAKING:** Bump `ic-cdk` to v0.19.0. See PR description for more details on the breaking changes. ([#251](#251)) - Upgrade various dependencies ([#260](#260)) ### Fixed - **BREAKING:** Calculate default request cost before sending. See PR description for more details on the breaking changes. ([#256](#256)) [4.0.0]: https://github.com/dfinity/sol-rpc-canister/compare/3.0.0..4.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>
Upgrade various dependencies. Since
solana-transaction-status-client-typesis now deprecated as of3.1.0due to falling outside the Anza backward compatibility policy, pin the version to disallow updates beyond3.1.xto avoid any unexpected breaking changes.