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
133 changes: 67 additions & 66 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.4.0", path = "canhttp" }
canhttp = { version = "0.5.0", 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.1", path = "ic-canister-runtime" }
ic-canister-runtime = { version = "0.1.2", path = "ic-canister-runtime" }
ic-cdk = "0.19.0"
ic-error-types = "0.2"
ic-management-canister-types = "0.5.0"
Expand Down
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.5.0] - 2026-01-30

### Added

- Add support for batched JSON-RPC requests ([#65](https://github.com/dfinity/canhttp/pull/65))
- Add replicated request extension ([#70](https://github.com/dfinity/canhttp/pull/70))

### Changed

- 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.4.0] - 2025-11-21

### 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.4.0"
version = "0.5.0"
description = "Rust library to issue HTTPs outcalls from a canister on the Internet Computer"
license.workspace = true
readme.workspace = true
Expand Down
10 changes: 9 additions & 1 deletion ic-agent-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@ 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.1.2] - 2026-01-30
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why increasing the patch number? AFAIK this is not a bug fix release so I would go with 0.2.0.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question. I generally try to avoid bumping the major version for such a small change (just dependency updates here) since this breaks Cargo compatibility. From the docs:

This guide uses the terms β€œmajor” and β€œminor” assuming this relates to a β€œ1.0.0” release or later. Initial development releases starting with β€œ0.y.z” can treat changes in β€œy” as a major release, and β€œz” as a minor release. β€œ0.0.z” releases are always major changes. This is because Cargo uses the convention that only changes in the left-most non-zero component are considered incompatible.

According to semver.org though:

Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable.

I guess the right thing to do would be to just bump to v1.0.0 here sooner rather than later... WDYT?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see, thanks for the explanation! Let's follow the more specific guidelines from Cargo then. I think we should bump everything to v1 once we have JSON-RPC batch used in the EVM RPC canister, WDYT?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good!


### Changed

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

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

## [0.1.1] - 2025-12-09

### Fixed

- Point to correct READMEs ([#60](https://github.com/dfinity/canhttp/pull/60))

[0.1.1]: https://github.com/dfinity/canhttp/compare/0.1.0..0.1.1
[0.1.1]: https://github.com/dfinity/canhttp/compare/ic-agent-canister-runtime-v0.1.0..ic-agent-canister-runtime-v0.1.1

## [0.1.0] - 2025-11-21

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.1"
version = "0.1.2"
description = "Implementation of a canister runtime of the Internet Computer for `ic-agent`"
license.workspace = true
homepage.workspace = true
Expand Down
10 changes: 9 additions & 1 deletion ic-canister-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@ 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.1.2] - 2026-01-30

### Changed

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

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

## [0.1.1] - 2025-12-09

### Fixed

- Point to correct READMEs ([#60](https://github.com/dfinity/canhttp/pull/60))

[0.1.1]: https://github.com/dfinity/canhttp/compare/0.1.0..0.1.1
[0.1.1]: https://github.com/dfinity/canhttp/compare/ic-canister-runtime-v0.1.0..ic-canister-runtime-v0.1.1

## [0.1.0] - 2025-11-21

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.1"
version = "0.1.2"
description = "Rust library that abstracts the canister runtime on the Internet Computer"
license.workspace = true
homepage.workspace = true
Expand Down
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,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.3.0] - 2026-01-30

### Changed

- **Breaking:** Bump `pocket-ic` to v12.0.0 ([#72](https://github.com/dfinity/canhttp/pull/72))

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

## [0.2.0] - 2025-12-09

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

- Point to correct READMEs ([#60](https://github.com/dfinity/canhttp/pull/60))

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

## [0.1.0] - 2025-11-21

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