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
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,42 @@

All notable changes to this project will be documented in this file.

## [0.58.1] - 2026-01-23

### 🐛 Bug Fixes

- Compare hashes instead of CIDs for anchor proof validation ([#754](https://github.com/ceramicnetwork/rust-ceramic/issues/754))
- Use cid.hash().digest() for codec-agnostic hash extraction ([#755](https://github.com/ceramicnetwork/rust-ceramic/issues/755))
- Clippy
- Self-anchoring never stored inclusion proofs, causing concluder failures
- Revert RPC autodiscovery of proofs to self-heal unstored self-anchors
- Allow fallback validation to accept codec-shifted digests in chain proofs

### 🧪 Testing

- Fix self-anchoring tests against local kind cluster using desci-labs images

### ⚙️ Miscellaneous Tasks

- Update forked workflows
- Fix docker login
- Fix aws auth
- Gate docker login on fork PRs
- Set wf concurrency group to limit concurrent checks
- Fix image publish workflow runner
- Skip release-debug builds by default
- Fix ecr-public login for integration suite publish

## [0.58.0] - 2025-12-08

### 🚀 Features

- *(anchor-evm)* Add CLI options for EVM self-anchoring ([#748](https://github.com/ceramicnetwork/rust-ceramic/issues/748))

### ⚙️ Miscellaneous Tasks

- Version v0.58.0 ([#749](https://github.com/ceramicnetwork/rust-ceramic/issues/749))

## [0.57.0] - 2025-11-28

### 🚀 Features
Expand Down
58 changes: 29 additions & 29 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ zeroize = "1.4"


[workspace.package]
version = "0.58.0"
version = "0.58.1"
edition = "2021"
authors = [
"Danny Browning <dbrowning@3box.io>",
Expand Down
2 changes: 1 addition & 1 deletion api-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ceramic-api-server"
version = "0.58.0"
version = "0.58.1"
authors = ["OpenAPI Generator team and contributors"]
description = "This is the Ceramic API for working with streams and events "
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions api-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ To see how to make this your own, look here:

[README]((https://openapi-generator.tech))

- API version: 0.58.0
- Build date: 2025-12-08T21:21:04.734650742Z[Etc/UTC]
- API version: 0.58.1
- Build date: 2026-01-23T11:01:22.452340609Z[Etc/UTC]



Expand Down
2 changes: 1 addition & 1 deletion api-server/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
name: MIT
url: https://mit-license.org/
title: Ceramic API
version: 0.58.0
version: 0.58.1
servers:
- url: /ceramic
paths:
Expand Down
2 changes: 1 addition & 1 deletion api-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use swagger::{ApiError, ContextWrapper};
type ServiceError = Box<dyn Error + Send + Sync + 'static>;

pub const BASE_PATH: &str = "/ceramic";
pub const API_VERSION: &str = "0.58.0";
pub const API_VERSION: &str = "0.58.1";

#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub enum ConfigNetworkGetResponse {
Expand Down
2 changes: 1 addition & 1 deletion api/ceramic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
description: >
This is the Ceramic API for working with streams and events
version: 0.58.0
version: 0.58.1
title: Ceramic API
#license:
# name: Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ceramic-kubo-rpc-server"
version = "0.58.0"
version = "0.58.1"
authors = ["OpenAPI Generator team and contributors"]
description = "This is the Kubo RPC API for working with IPLD data on IPFS This API only defines a small subset of the official API. "
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions kubo-rpc-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ To see how to make this your own, look here:

[README]((https://openapi-generator.tech))

- API version: 0.58.0
- Build date: 2025-12-08T21:21:07.440026047Z[Etc/UTC]
- API version: 0.58.1
- Build date: 2026-01-23T11:01:25.214451313Z[Etc/UTC]



Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc-server/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
name: MIT
url: https://mit-license.org/
title: Kubo RPC API
version: 0.58.0
version: 0.58.1
servers:
- url: /api/v0
paths:
Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use swagger::{ApiError, ContextWrapper};
type ServiceError = Box<dyn Error + Send + Sync + 'static>;

pub const BASE_PATH: &str = "/api/v0";
pub const API_VERSION: &str = "0.58.0";
pub const API_VERSION: &str = "0.58.1";

#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[must_use]
Expand Down
Loading
Loading