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
134 changes: 70 additions & 64 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ readme = "README.md"
assert_matches = "1.5.0"
async-trait = "0.1.89"
candid = { version = "0.10.24" }
canhttp = { version = "0.5.1", path = "canhttp" }
canhttp = { version = "0.5.2", path = "canhttp" }
ciborium = "0.2.2"
derive_more = { version = "2.1.1", features = ["from", "try_unwrap", "unwrap"] }
futures-channel = "0.3.32"
futures-util = "0.3.32"
http = "1.4.0"
ic-agent = "0.45.0"
ic-canister-runtime = { version = "0.2.0", path = "ic-canister-runtime" }
ic-canister-runtime = { version = "0.2.1", path = "ic-canister-runtime" }
ic-cdk = "0.19.0"
ic-error-types = "0.2"
ic-management-canister-types = "0.5.0"
Expand Down
8 changes: 8 additions & 0 deletions canhttp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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).

## [0.5.2] - 2026-03-10

### Changed

- Update dependencies ([#89](https://github.com/dfinity/canhttp/pull/89))

[0.5.2]: https://github.com/dfinity/canhttp/compare/canhttp-v0.5.1..canhttp-v0.5.2

## [0.5.1] - 2026-02-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion canhttp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canhttp"
version = "0.5.1"
version = "0.5.2"
description = "Rust library to issue HTTPs outcalls from a canister on the Internet Computer"
license.workspace = true
readme.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions ic-agent-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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).

## [0.2.1] - 2026-03-10

### Changed

- Update dependencies ([#89](https://github.com/dfinity/canhttp/pull/89))

[0.2.1]: https://github.com/dfinity/canhttp/compare/ic-agent-canister-runtime-v0.2.0..ic-agent-canister-runtime-v0.2.1

## [0.2.0] - 2026-02-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion ic-agent-canister-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-agent-canister-runtime"
version = "0.2.0"
version = "0.2.1"
description = "Implementation of a canister runtime of the Internet Computer for `ic-agent`"
license.workspace = true
homepage.workspace = true
Expand Down
9 changes: 9 additions & 0 deletions ic-canister-runtime/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).

## [0.2.1] - 2026-03-10

### Changed

- Update dependencies ([#89](https://github.com/dfinity/canhttp/pull/89))
- Implement `Runtime` for `Runtime` references ([#85](https://github.com/dfinity/canhttp/pull/85))

[0.2.1]: https://github.com/dfinity/canhttp/compare/ic-canister-runtime-v0.2.0..ic-canister-runtime-v0.2.1

## [0.2.0] - 2026-02-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion ic-canister-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-canister-runtime"
version = "0.2.0"
version = "0.2.1"
description = "Rust library that abstracts the canister runtime on the Internet Computer"
license.workspace = true
homepage.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions ic-pocket-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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).

## [0.4.1] - 2026-03-10

### Added

- Add proxy feature to `PocketIcRuntime` ([#92](https://github.com/dfinity/canhttp/pull/92))

### Changed

- Update dependencies ([#89](https://github.com/dfinity/canhttp/pull/89))

[0.4.1]: https://github.com/dfinity/canhttp/compare/ic-pocket-canister-runtime-v0.4.0..ic-pocket-canister-runtime-v0.4.1

## [0.4.0] - 2026-02-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion ic-pocket-canister-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-pocket-canister-runtime"
version = "0.4.0"
version = "0.4.1"
description = "Canisters runtime on the Internet Computer using Pocket IC"
license.workspace = true
homepage.workspace = true
Expand Down
Loading