From 82448e9377e5ab3a465165ec00560eba6221dc4c Mon Sep 17 00:00:00 2001 From: Mohsin Zaidi <2236875+smrz2001@users.noreply.github.com> Date: Mon, 26 Aug 2024 18:09:57 -0400 Subject: [PATCH] chore: version v0.34.0 (#506) Co-authored-by: Github Automation --- CHANGELOG.md | 18 ++++++++++++++ Cargo.lock | 40 ++++++++++++++++---------------- Cargo.toml | 2 +- api-server/Cargo.toml | 2 +- api-server/README.md | 4 ++-- api-server/api/openapi.yaml | 2 +- api-server/src/lib.rs | 2 +- api/ceramic.yaml | 2 +- kubo-rpc-server/Cargo.toml | 2 +- kubo-rpc-server/README.md | 4 ++-- kubo-rpc-server/api/openapi.yaml | 2 +- kubo-rpc-server/src/lib.rs | 2 +- kubo-rpc/kubo-rpc.yaml | 2 +- 13 files changed, 51 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fe881e4e..0a0a99607 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ All notable changes to this project will be documented in this file. +## [0.34.0] - 2024-08-26 + +### 🚀 Features + +- Eth and sol pkh cacao validation (#496) +- Jws signature validation (#498) +- Check cacao resources against stream information (#502) + +### 🐛 Bug Fixes + +- Use cacao timestamp strings and parse (#504) + +### ⚙️ Miscellaneous Tasks + +- Add logic to dispatch validation based on event type (#493) +- Modify cacao, unvalidated module, jwk to add functionality needed for event validation (#492) + ## [0.33.0] - 2024-08-19 ### 🚀 Features @@ -27,6 +44,7 @@ All notable changes to this project will be documented in this file. - Remove an iteration pass in OrderEvents::try_new (#489) - Add TODO comment (#491) - Remove EventMetadata type (#490) +- Version v0.33.0 (#494) ## [0.32.0] - 2024-08-07 diff --git a/Cargo.lock b/Cargo.lock index 2f37ccdd3..c95b6d0f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1315,7 +1315,7 @@ dependencies = [ [[package]] name = "ceramic-api" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-trait", @@ -1343,7 +1343,7 @@ dependencies = [ [[package]] name = "ceramic-api-server" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "chrono", @@ -1371,7 +1371,7 @@ dependencies = [ [[package]] name = "ceramic-car" -version = "0.33.0" +version = "0.34.0" dependencies = [ "cid 0.11.1", "futures", @@ -1387,7 +1387,7 @@ dependencies = [ [[package]] name = "ceramic-core" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "base64 0.21.7", @@ -1418,7 +1418,7 @@ dependencies = [ [[package]] name = "ceramic-event" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "base64 0.21.7", @@ -1443,7 +1443,7 @@ dependencies = [ [[package]] name = "ceramic-kubo-rpc" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-stream", @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "ceramic-kubo-rpc-server" -version = "0.33.0" +version = "0.34.0" dependencies = [ "async-trait", "chrono", @@ -1507,7 +1507,7 @@ dependencies = [ [[package]] name = "ceramic-metadata" -version = "0.33.0" +version = "0.34.0" dependencies = [ "built", "project-root", @@ -1516,7 +1516,7 @@ dependencies = [ [[package]] name = "ceramic-metrics" -version = "0.33.0" +version = "0.34.0" dependencies = [ "console-subscriber", "lazy_static", @@ -1537,7 +1537,7 @@ dependencies = [ [[package]] name = "ceramic-olap" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "ceramic-metrics", @@ -1560,7 +1560,7 @@ dependencies = [ [[package]] name = "ceramic-one" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-stream", @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "ceramic-p2p" -version = "0.33.0" +version = "0.34.0" dependencies = [ "ahash 0.8.11", "anyhow", @@ -1648,7 +1648,7 @@ dependencies = [ [[package]] name = "ceramic-service" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-trait", @@ -1683,7 +1683,7 @@ dependencies = [ [[package]] name = "ceramic-store" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-trait", @@ -1719,7 +1719,7 @@ dependencies = [ [[package]] name = "ceramic-validation" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-trait", @@ -4429,7 +4429,7 @@ dependencies = [ [[package]] name = "iroh-bitswap" -version = "0.33.0" +version = "0.34.0" dependencies = [ "ahash 0.8.11", "anyhow", @@ -4469,7 +4469,7 @@ dependencies = [ [[package]] name = "iroh-rpc-client" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-stream", @@ -4487,7 +4487,7 @@ dependencies = [ [[package]] name = "iroh-rpc-types" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "bytes 1.6.0", @@ -4502,7 +4502,7 @@ dependencies = [ [[package]] name = "iroh-util" -version = "0.33.0" +version = "0.34.0" dependencies = [ "cid 0.11.1", "multihash-codetable", @@ -7522,7 +7522,7 @@ dependencies = [ [[package]] name = "recon" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 993bea233..94ed52faa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -213,7 +213,7 @@ zeroize = "1.4" [workspace.package] -version = "0.33.0" +version = "0.34.0" edition = "2021" authors = [ "Danny Browning ", diff --git a/api-server/Cargo.toml b/api-server/Cargo.toml index 202e021ea..bb43fdbe2 100644 --- a/api-server/Cargo.toml +++ b/api-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ceramic-api-server" -version = "0.33.0" +version = "0.34.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 1e4e7de7d..595931cf6 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.33.0 -- Build date: 2024-08-19T21:46:51.718190589Z[Etc/UTC] +- API version: 0.34.0 +- Build date: 2024-08-26T21:42:47.754879189Z[Etc/UTC] diff --git a/api-server/api/openapi.yaml b/api-server/api/openapi.yaml index c0a91a228..c77bce530 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.33.0 + version: 0.34.0 servers: - url: /ceramic paths: diff --git a/api-server/src/lib.rs b/api-server/src/lib.rs index f0cf8009a..d62b6a23f 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.33.0"; +pub const API_VERSION: &str = "0.34.0"; #[derive(Debug, PartialEq, Serialize, Deserialize)] pub enum ConfigNetworkGetResponse { diff --git a/api/ceramic.yaml b/api/ceramic.yaml index 06184847e..18e6696a8 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.33.0 + version: 0.34.0 title: Ceramic API #license: # name: Apache 2.0 diff --git a/kubo-rpc-server/Cargo.toml b/kubo-rpc-server/Cargo.toml index a6a4c3fb3..64d389e6d 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.33.0" +version = "0.34.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 6432bd8a8..a2bf7d447 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.33.0 -- Build date: 2024-08-19T21:46:54.142711439Z[Etc/UTC] +- API version: 0.34.0 +- Build date: 2024-08-26T21:42:49.846750291Z[Etc/UTC] diff --git a/kubo-rpc-server/api/openapi.yaml b/kubo-rpc-server/api/openapi.yaml index da37ec5f6..fee37b17e 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.33.0 + version: 0.34.0 servers: - url: /api/v0 paths: diff --git a/kubo-rpc-server/src/lib.rs b/kubo-rpc-server/src/lib.rs index 8b5426df7..c2d1a9c62 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.33.0"; +pub const API_VERSION: &str = "0.34.0"; #[derive(Debug, PartialEq, Serialize, Deserialize)] #[must_use] diff --git a/kubo-rpc/kubo-rpc.yaml b/kubo-rpc/kubo-rpc.yaml index aa486366b..90caf71e4 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.33.0 + version: 0.34.0 title: Kubo RPC API license: name: MIT