diff --git a/CHANGELOG.md b/CHANGELOG.md index 94f340cdd..4fe881e4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ All notable changes to this project will be documented in this file. +## [0.33.0] - 2024-08-19 + +### 🚀 Features + +- Recon event insert batching (#470) +- Modify recon store to support event validation concepts (#473) +- Add noop ceramic-olap binary (#482) + +### 🐛 Bug Fixes + +- Add better TileDocument detection (#475) +- Fix bug in TimeEvent witness blocks parsing logic (#486) + +### 🚜 Refactor + +- Create sync car crate (#485) + +### ⚙️ Miscellaneous Tasks + +- Flatten EventInsertable type (#480) +- Remove Clone from EventInsertable (#481) +- Change EventInsertable to store the parsed Event object instead of its raw blocks (#487) +- Remove an iteration pass in OrderEvents::try_new (#489) +- Add TODO comment (#491) +- Remove EventMetadata type (#490) + ## [0.32.0] - 2024-08-07 ### 🚀 Features @@ -9,6 +35,10 @@ All notable changes to this project will be documented in this file. - Feature and experimental feature flags (#448) - Change default dir back to shared home location (#471) +### ⚙️ Miscellaneous Tasks + +- Version v0.32.0 (#472) + ## [0.31.0] - 2024-08-02 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 4b4f6c5ed..ef3045e07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1315,7 +1315,7 @@ dependencies = [ [[package]] name = "ceramic-api" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "async-trait", @@ -1343,7 +1343,7 @@ dependencies = [ [[package]] name = "ceramic-api-server" -version = "0.32.0" +version = "0.33.0" dependencies = [ "async-trait", "chrono", @@ -1371,7 +1371,7 @@ dependencies = [ [[package]] name = "ceramic-car" -version = "0.32.0" +version = "0.33.0" dependencies = [ "cid 0.11.1", "futures", @@ -1387,7 +1387,7 @@ dependencies = [ [[package]] name = "ceramic-core" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "base64 0.21.7", @@ -1418,7 +1418,7 @@ dependencies = [ [[package]] name = "ceramic-event" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "base64 0.21.7", @@ -1442,7 +1442,7 @@ dependencies = [ [[package]] name = "ceramic-kubo-rpc" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "async-stream", @@ -1479,7 +1479,7 @@ dependencies = [ [[package]] name = "ceramic-kubo-rpc-server" -version = "0.32.0" +version = "0.33.0" dependencies = [ "async-trait", "chrono", @@ -1506,7 +1506,7 @@ dependencies = [ [[package]] name = "ceramic-metadata" -version = "0.32.0" +version = "0.33.0" dependencies = [ "built", "project-root", @@ -1515,7 +1515,7 @@ dependencies = [ [[package]] name = "ceramic-metrics" -version = "0.32.0" +version = "0.33.0" dependencies = [ "console-subscriber", "lazy_static", @@ -1536,7 +1536,7 @@ dependencies = [ [[package]] name = "ceramic-olap" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "ceramic-metrics", @@ -1559,7 +1559,7 @@ dependencies = [ [[package]] name = "ceramic-one" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "async-stream", @@ -1607,7 +1607,7 @@ dependencies = [ [[package]] name = "ceramic-p2p" -version = "0.32.0" +version = "0.33.0" dependencies = [ "ahash 0.8.11", "anyhow", @@ -1647,7 +1647,7 @@ dependencies = [ [[package]] name = "ceramic-service" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "async-trait", @@ -1682,7 +1682,7 @@ dependencies = [ [[package]] name = "ceramic-store" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "async-trait", @@ -4401,7 +4401,7 @@ dependencies = [ [[package]] name = "iroh-bitswap" -version = "0.32.0" +version = "0.33.0" dependencies = [ "ahash 0.8.11", "anyhow", @@ -4441,7 +4441,7 @@ dependencies = [ [[package]] name = "iroh-rpc-client" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "async-stream", @@ -4459,7 +4459,7 @@ dependencies = [ [[package]] name = "iroh-rpc-types" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "bytes 1.6.0", @@ -4474,7 +4474,7 @@ dependencies = [ [[package]] name = "iroh-util" -version = "0.32.0" +version = "0.33.0" dependencies = [ "cid 0.11.1", "multihash-codetable", @@ -7494,7 +7494,7 @@ dependencies = [ [[package]] name = "recon" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 774052a37..d06fe44c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -209,7 +209,7 @@ zeroize = "1.4" [workspace.package] -version = "0.32.0" +version = "0.33.0" edition = "2021" authors = [ "Danny Browning ", diff --git a/api-server/Cargo.toml b/api-server/Cargo.toml index a18d38f39..202e021ea 100644 --- a/api-server/Cargo.toml +++ b/api-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ceramic-api-server" -version = "0.32.0" +version = "0.33.0" authors = ["OpenAPI Generator team and contributors"] description = "This is the Ceramic API for working with streams and events " license = "MIT" diff --git a/api-server/README.md b/api-server/README.md index 92276025d..1e4e7de7d 100644 --- a/api-server/README.md +++ b/api-server/README.md @@ -14,8 +14,8 @@ To see how to make this your own, look here: [README]((https://openapi-generator.tech)) -- API version: 0.32.0 -- Build date: 2024-08-07T20:35:31.356834865Z[Etc/UTC] +- API version: 0.33.0 +- Build date: 2024-08-19T21:46:51.718190589Z[Etc/UTC] diff --git a/api-server/api/openapi.yaml b/api-server/api/openapi.yaml index 7d5c16768..c0a91a228 100644 --- a/api-server/api/openapi.yaml +++ b/api-server/api/openapi.yaml @@ -6,7 +6,7 @@ info: name: MIT url: https://mit-license.org/ title: Ceramic API - version: 0.32.0 + version: 0.33.0 servers: - url: /ceramic paths: diff --git a/api-server/src/lib.rs b/api-server/src/lib.rs index 662ae920e..f0cf8009a 100644 --- a/api-server/src/lib.rs +++ b/api-server/src/lib.rs @@ -21,7 +21,7 @@ use swagger::{ApiError, ContextWrapper}; type ServiceError = Box; pub const BASE_PATH: &str = "/ceramic"; -pub const API_VERSION: &str = "0.32.0"; +pub const API_VERSION: &str = "0.33.0"; #[derive(Debug, PartialEq, Serialize, Deserialize)] pub enum ConfigNetworkGetResponse { diff --git a/api/ceramic.yaml b/api/ceramic.yaml index ada0157d4..06184847e 100644 --- a/api/ceramic.yaml +++ b/api/ceramic.yaml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: description: > This is the Ceramic API for working with streams and events - version: 0.32.0 + version: 0.33.0 title: Ceramic API #license: # name: Apache 2.0 diff --git a/kubo-rpc-server/Cargo.toml b/kubo-rpc-server/Cargo.toml index 8d3f1a752..a6a4c3fb3 100644 --- a/kubo-rpc-server/Cargo.toml +++ b/kubo-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ceramic-kubo-rpc-server" -version = "0.32.0" +version = "0.33.0" 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" diff --git a/kubo-rpc-server/README.md b/kubo-rpc-server/README.md index b9b6e6016..6432bd8a8 100644 --- a/kubo-rpc-server/README.md +++ b/kubo-rpc-server/README.md @@ -14,8 +14,8 @@ To see how to make this your own, look here: [README]((https://openapi-generator.tech)) -- API version: 0.32.0 -- Build date: 2024-08-07T20:35:33.549219336Z[Etc/UTC] +- API version: 0.33.0 +- Build date: 2024-08-19T21:46:54.142711439Z[Etc/UTC] diff --git a/kubo-rpc-server/api/openapi.yaml b/kubo-rpc-server/api/openapi.yaml index 1188e8347..da37ec5f6 100644 --- a/kubo-rpc-server/api/openapi.yaml +++ b/kubo-rpc-server/api/openapi.yaml @@ -6,7 +6,7 @@ info: name: MIT url: https://mit-license.org/ title: Kubo RPC API - version: 0.32.0 + version: 0.33.0 servers: - url: /api/v0 paths: diff --git a/kubo-rpc-server/src/lib.rs b/kubo-rpc-server/src/lib.rs index 787b46654..8b5426df7 100644 --- a/kubo-rpc-server/src/lib.rs +++ b/kubo-rpc-server/src/lib.rs @@ -21,7 +21,7 @@ use swagger::{ApiError, ContextWrapper}; type ServiceError = Box; pub const BASE_PATH: &str = "/api/v0"; -pub const API_VERSION: &str = "0.32.0"; +pub const API_VERSION: &str = "0.33.0"; #[derive(Debug, PartialEq, Serialize, Deserialize)] #[must_use] diff --git a/kubo-rpc/kubo-rpc.yaml b/kubo-rpc/kubo-rpc.yaml index 533bcd8bc..aa486366b 100644 --- a/kubo-rpc/kubo-rpc.yaml +++ b/kubo-rpc/kubo-rpc.yaml @@ -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.32.0 + version: 0.33.0 title: Kubo RPC API license: name: MIT