Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 64 additions & 76 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ serde_bytes = "0.11.19"
serde_json = "1.0.149"
serde_tuple = "1.1.3"
serde_with = "3.16.1"
sol_rpc_client = { version = "4.0.0", path = "libs/client" }
sol_rpc_types = { version = "3.1.0", path = "libs/types" }
solana-account = "3.3.0"
solana-account-decoder-client-types = "3.1.6"
solana-client = "3.1.6"
Expand Down
12 changes: 12 additions & 0 deletions canister/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.0] - 2026-01-12

### Changed

- Update `ic-cdk` to v0.19.0 ([#251](https://github.com/dfinity/sol-rpc-canister/pull/251))
- Upgrade various dependencies ([#260](https://github.com/dfinity/sol-rpc-canister/pull/260))

### Fixed

- Do not ignore `response_size_estimate` for `getBlock` endpoint ([#236](https://github.com/dfinity/sol-rpc-canister/pull/236))

## [1.2.0] - 2025-08-29

### Changed
Expand Down Expand Up @@ -70,6 +81,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Set `maxSupportedTransactionVersion` to zero for end-to-end tests ([#85](https://github.com/dfinity/sol-rpc-canister/pull/85))
- End-to-end tests ([#20](https://github.com/dfinity/sol-rpc-canister/pull/20) and [#45](https://github.com/dfinity/sol-rpc-canister/pull/45))

[1.3.0]: https://github.com/dfinity/sol-rpc-canister/compare/sol_rpc_canister-v1.2.0...sol_rpc_canister-v1.3.0
[1.2.0]: https://github.com/dfinity/sol-rpc-canister/compare/sol_rpc_canister-v1.1.0...sol_rpc_canister-v1.2.0
[1.1.0]: https://github.com/dfinity/sol-rpc-canister/compare/v1.0.0...sol_rpc_canister-v1.1.0
[1.0.0]: https://github.com/dfinity/sol-rpc-canister/compare/v0.2.0...v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions canister/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_canister"
version = "1.2.0"
version = "1.3.0"
description = "Interact with the Solana blockchain from the Internet Computer."
authors.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -41,7 +41,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
serde_tuple = { workspace = true }
serde_with = { workspace = true }
sol_rpc_types = { path = "../libs/types" }
sol_rpc_types = { workspace = true }
solana-account = { workspace = true, features = ["serde"] }
solana-account-decoder-client-types = { workspace = true }
solana-clock = { workspace = true }
Expand Down
14 changes: 14 additions & 0 deletions libs/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.0] - 2026-01-12

### Changed

- Use `ic_canister_runtime::Runtime` instead of local `Runtime` trait ([#248](https://github.com/dfinity/sol-rpc-canister/pull/248))
- **BREAKING:** Bump `ic-cdk` to v0.19.0. See PR description for more details on the breaking changes. ([#251](https://github.com/dfinity/sol-rpc-canister/pull/251))
- Upgrade various dependencies ([#260](https://github.com/dfinity/sol-rpc-canister/pull/260))

### Fixed

- **BREAKING:** Calculate default request cost before sending. See PR description for more details on the breaking changes. ([#256](https://github.com/dfinity/sol-rpc-canister/pull/256))

[4.0.0]: https://github.com/dfinity/sol-rpc-canister/compare/3.0.0..4.0.0

## [3.0.0] - 2025-08-29

### Changed
Expand Down
4 changes: 2 additions & 2 deletions libs/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_client"
version = "3.0.0"
version = "4.0.0"
description = "Client to interact with the SOL RPC canister"
authors.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -30,7 +30,7 @@ ic-ed25519 = { workspace = true, optional = true }
ic-management-canister-types = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sol_rpc_types = { version = "3.0.0", path = "../types" }
sol_rpc_types = { workspace = true }
solana-account-decoder-client-types = { workspace = true, features = ["zstd"] }
solana-hash = { workspace = true }
solana-instruction = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions libs/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.1.0] - 2026-01-12

### Changed

- Bump `ic-cdk` to v0.19.0 ([#251](https://github.com/dfinity/sol-rpc-canister/pull/251))
- Upgrade various dependencies ([#260](https://github.com/dfinity/sol-rpc-canister/pull/260))

[3.1.0]: https://github.com/dfinity/sol-rpc-canister/compare/3.0.0..3.1.0

## [3.0.0] - 2025-08-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion libs/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_types"
version = "3.0.0"
version = "3.1.0"
description = "Candid types used by the SOL RPC canister"
authors.workspace = true
edition.workspace = true
Expand Down