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
386 changes: 276 additions & 110 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.20" }
canhttp = { version = "0.5.0", path = "canhttp" }
canhttp = { version = "0.5.1", path = "canhttp" }
ciborium = "0.2.2"
derive_more = { version = "2.1.1", features = ["from", "try_unwrap", "unwrap"] }
futures-channel = "0.3.31"
futures-util = "0.3.31"
http = "1.4.0"
ic-agent = "0.45.0"
ic-canister-runtime = { version = "0.1.2", path = "ic-canister-runtime" }
ic-canister-runtime = { version = "0.2.0", path = "ic-canister-runtime" }
ic-cdk = "0.19.0"
ic-error-types = "0.2"
ic-management-canister-types = "0.5.0"
Expand Down
12 changes: 10 additions & 2 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.1] - 2026-02-17

### Added

- Middleware to prevent HTTPs outcalls when stopping ([#76](https://github.com/dfinity/canhttp/pull/76))

[0.5.1]: https://github.com/dfinity/canhttp/compare/canhttp-v0.5.0..canhttp-v0.5.1

## [0.5.0] - 2026-01-30

### Added
Expand All @@ -16,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

[0.5.0]: https://github.com/dfinity/canhttp/compare/canhttp-0.4.0..canhttp-0.5.0
[0.5.0]: https://github.com/dfinity/canhttp/compare/canhttp-v0.4.0..canhttp-v0.5.0

## [0.4.0] - 2025-11-21

Expand All @@ -33,7 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Missing optional dependency on `serde` for `multi` feature ([#47](https://github.com/dfinity/canhttp/pull/47))

[0.4.0]: https://github.com/dfinity/canhttp/compare/canhttp-0.3.0..canhttp-0.4.0
[0.4.0]: https://github.com/dfinity/canhttp/compare/canhttp-v0.3.0..canhttp-v0.4.0

## [0.3.0] - 2025-10-08

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.0"
version = "0.5.1"
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.0] - 2026-02-17

### Changed

- Update `ic-canister-runtime` to v0.2.0 ([#83](https://github.com/dfinity/canhttp/pull/83))

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

## [0.1.2] - 2026-01-30

### 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.1.2"
version = "0.2.0"
description = "Implementation of a canister runtime of the Internet Computer for `ic-agent`"
license.workspace = true
homepage.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions ic-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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.0] - 2026-02-17

### Added

- Support for `StubRuntime` returning `IcError` ([#81](https://github.com/dfinity/canhttp/pull/81))
- `Clone` implementation for `StubRuntime` ([#79](https://github.com/dfinity/canhttp/pull/79))

### Changed

- Change the default behavior to prevent inter-canister calls when the canister is stopping ([#78](https://github.com/dfinity/canhttp/pull/78))

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

## [0.1.2] - 2026-01-30

### Changed
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.1.2"
version = "0.2.0"
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.0] - 2026-02-17

### Added

- `AsRef<PocketIc>` implementation for `PocketIcRuntime` ([#82](https://github.com/dfinity/canhttp/pull/82))

### Changed

- Update `ic-canister-runtime` to v0.2.0 ([#83](https://github.com/dfinity/canhttp/pull/83))

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

## [0.3.0] - 2026-01-30

### Changed
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.3.0"
version = "0.4.0"
description = "Canisters runtime on the Internet Computer using Pocket IC"
license.workspace = true
homepage.workspace = true
Expand Down