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

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

## [0.56.1] - 2025-10-01

### 🐛 Bug Fixes

- Aggregator restart missing events ([#737](https://github.com/ceramicnetwork/rust-ceramic/issues/737))
- Adjust some logging and disconnect with peer when we don't have them in our local map and something is wrong ([#739](https://github.com/ceramicnetwork/rust-ceramic/issues/739))

## [0.56.0] - 2025-08-28

### 🚀 Features
Expand All @@ -18,6 +25,7 @@ All notable changes to this project will be documented in this file.

- *(sdk)* Version v0.11.0 ([#727](https://github.com/ceramicnetwork/rust-ceramic/issues/727))
- *(sdk)* Version v0.12.0 ([#731](https://github.com/ceramicnetwork/rust-ceramic/issues/731))
- Version v0.56.0 ([#736](https://github.com/ceramicnetwork/rust-ceramic/issues/736))

## [0.55.1] - 2025-06-18

Expand Down
56 changes: 28 additions & 28 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 @@ -253,7 +253,7 @@ zeroize = "1.4"


[workspace.package]
version = "0.56.0"
version = "0.56.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.56.0"
version = "0.56.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.56.0
- Build date: 2025-08-28T09:08:37.547252970Z[Etc/UTC]
- API version: 0.56.1
- Build date: 2025-10-01T03:24:20.845212584Z[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.56.0
version: 0.56.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.56.0";
pub const API_VERSION: &str = "0.56.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.56.0
version: 0.56.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.56.0"
version = "0.56.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.56.0
- Build date: 2025-08-28T09:08:40.206178294Z[Etc/UTC]
- API version: 0.56.1
- Build date: 2025-10-01T03:24:23.520257659Z[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.56.0
version: 0.56.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.56.0";
pub const API_VERSION: &str = "0.56.1";

#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[must_use]
Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc/kubo-rpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ info:
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.
version: 0.56.0
version: 0.56.1
title: Kubo RPC API
license:
name: MIT
Expand Down
2 changes: 1 addition & 1 deletion pipeline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ mockall.workspace = true
test-log.workspace = true
tracing-subscriber.workspace = true
rand.workspace = true
multihash-codetable.workspace = true
multihash-codetable.workspace = true
Loading