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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 2026-04-08

### didc 0.6.1

* Non-breaking changes:
+ `didc check` now reports **all** incompatible changes at once, grouped by method, instead of stopping at the first error
+ Clearer error messages: e.g. "missing in new interface" and "function annotation changed from query to update"

### candid_parser 0.3.1

* Non-breaking changes:
+ Add `service_compatibility_report()` returning a full grouped compatibility report as a string

### Candid 0.10.27

* Non-breaking changes:
+ Add `subtype_check_all()` to collect all subtype errors in one pass (previously stopped at the first)
+ Add `Incompatibility` type and `format_report()` for structured, hierarchical error reporting

## 2026-03-18

### Candid 0.10.26
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions rust/bench/Cargo.lock

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

4 changes: 2 additions & 2 deletions rust/candid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "candid"
# sync with the version in `candid_derive/Cargo.toml`
version = "0.10.26"
version = "0.10.27"
edition = "2021"
rust-version.workspace = true
authors = ["DFINITY Team"]
Expand All @@ -16,7 +16,7 @@ keywords = ["internet-computer", "idl", "candid", "dfinity"]
include = ["src", "Cargo.toml", "LICENSE", "README.md"]

[dependencies]
candid_derive = { path = "../candid_derive", version = "=0.10.26" }
candid_derive = { path = "../candid_derive", version = "=0.10.27" }
ic_principal = { path = "../ic_principal", version = "0.1.0" }
binread = { version = "2.2", features = ["debug_template"] }
byteorder = "1.5.0"
Expand Down
3 changes: 1 addition & 2 deletions rust/candid/src/types/internal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ pub struct TypeId {
impl TypeId {
pub fn of<T: ?Sized>() -> Self {
let name = std::any::type_name::<T>();
#[allow(function_casts_as_integer)]
TypeId {
id: TypeId::of::<T> as usize,
id: TypeId::of::<T> as *const () as usize,
name,
}
}
Expand Down
Loading
Loading