Skip to content
Closed
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
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions canhttp/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.3.1] - 2025-11-20

### Added

- Add `JsonRpcHttpLayer` which combines the `HttpConversionLayer`, `JsonConversionLayer` and `ConsistentJsonRpcIdFilter` middlewares into a single convenient-to-use layer ([#46](https://github.com/dfinity/canhttp/pull/46))
- Add example canisters demonstrating JSON-RPC functionalities and parallel calls ([#48](https://github.com/dfinity/canhttp/pull/48))

### Fixed

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

[0.3.1]: https://github.com/dfinity/canhttp/compare/canhttp-0.3.0..canhttp-0.3.1

## [0.3.0] - 2025-10-08

### 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.3.0"
version = "0.3.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: 7 additions & 1 deletion ic-agent-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,10 @@ 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).

## Unreleased
## [0.1.0] - 2025-11-20

### Added

- Add `AgentRuntime` ([#36](https://github.com/dfinity/canhttp/pull/36))

[0.1.0]: https://github.com/dfinity/canhttp/releases/tag/ic-agent-canister-runtime-v0.1.0
12 changes: 11 additions & 1 deletion ic-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +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).

## Unreleased
## [0.1.0] - 2025-11-20

### Added

- Add helper methods to `CyclesWalletRuntime` ([#44](https://github.com/dfinity/canhttp/pull/44))
- Add READMEs and examples ([#42](https://github.com/dfinity/canhttp/pull/42))
- Add `StubRuntime` ([#41](https://github.com/dfinity/canhttp/pull/41))
- Add `CyclesWalletRuntime` ([#37](https://github.com/dfinity/canhttp/pull/37))
- Add `Runtime` crate and `IcRuntime` implementation ([#35](https://github.com/dfinity/canhttp/pull/35))

[0.1.0]: https://github.com/dfinity/canhttp/releases/tag/ic-canister-runtime-v0.1.0
10 changes: 9 additions & 1 deletion ic-pocket-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,12 @@ 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).

## Unreleased
## [0.1.0] - 2025-11-20

### Added

- Add `ExecuteHttpOutcallMocks` trait and support for PocketIC live mode ([#43](https://github.com/dfinity/canhttp/pull/43))
- Add READMEs and examples ([#42](https://github.com/dfinity/canhttp/pull/42))
- Add `PocketIcRuntime` and mock HTTP mock infrastructure ([#38](https://github.com/dfinity/canhttp/pull/38))

[0.1.0]: https://github.com/dfinity/canhttp/releases/tag/ic-pocket-canister-runtime-v0.1.0