Skip to content

Commit

Permalink
chore: version v0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Automation authored and nathanielc committed May 9, 2024
1 parent 8246494 commit 032981d
Show file tree
Hide file tree
Showing 13 changed files with 60 additions and 31 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,34 @@

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

## [0.16.0] - 2024-05-06
## [0.17.0] - 2024-05-09

### 🚀 Features

- Update events GET API to return event CID instead of EventID
- Return event root cid instead of EventID from feed
- Update experimental API for getting a range of events to return event root CID, not EventID (#337)
- Simplify event id
- Add serde methods for Events
- Make event creation endpoint infer EventID from event CAR file data (#341)
- Remove id argument from events POST endpoint (#347)

### 🐛 Bug Fixes

- Parse unsigned init events
- Handle data events with unsigned init events (#348)

### 🚜 Refactor

- Rename payload -> init_payload

### ⚙️ Miscellaneous Tasks

- SQL queries for event blocks dont need order_key
- Update comment for Event type in API (#338)
- Make gen-api-server

## [0.16.0] - 2024-05-08

### 🚀 Features

Expand All @@ -16,11 +43,13 @@ All notable changes to this project will be documented in this file.
### 🚜 Refactor

- Update deps cid, multihash, and ipld (#309)
- Update recon word list test to make it easier to debug (#342)

### ⚙️ Miscellaneous Tasks

- Add bad request response to get events API (#329)
- Run build/test/check CI on all PRs (#333)
- Version v0.16.0 (#336)

## [0.15.0] - 2024-04-29

Expand Down
34 changes: 17 additions & 17 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 @@ -205,7 +205,7 @@ zeroize = "1.4"


[workspace.package]
version = "0.16.0"
version = "0.17.0"
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.16.0"
version = "0.17.0"
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.16.0
- Build date: 2024-05-09T10:16:59.415295720-06:00[America/Denver]
- API version: 0.17.0
- Build date: 2024-05-09T17:10:14.357128797Z[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.16.0
version: 0.17.0
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 @@ -20,7 +20,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.16.0";
pub const API_VERSION: &str = "0.17.0";

#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[must_use]
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.16.0
version: 0.17.0
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.16.0"
version = "0.17.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"
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.16.0
- Build date: 2024-05-06T17:47:32.418154163Z[Etc/UTC]
- API version: 0.17.0
- Build date: 2024-05-09T17:10:16.378384439Z[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.16.0
version: 0.17.0
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 @@ -20,7 +20,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.16.0";
pub const API_VERSION: &str = "0.17.0";

#[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.16.0
version: 0.17.0
title: Kubo RPC API
license:
name: MIT
Expand Down

0 comments on commit 032981d

Please sign in to comment.