Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version v0.46.0 #630

Merged
merged 1 commit into from
Dec 9, 2024
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
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

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

## [0.46.0] - 2024-12-09

### 🚀 Features

- Add peer entry and peer key structs ([#615](https://github.com/ceramicnetwork/rust-ceramic/issues/615))
- Add support for local file object store ([#623](https://github.com/ceramicnetwork/rust-ceramic/issues/623))
- Add support for prepared statements ([#600](https://github.com/ceramicnetwork/rust-ceramic/issues/600))
- Add peer recon ring ([#616](https://github.com/ceramicnetwork/rust-ceramic/issues/616))
- Use many tasks to order streams and discover undelivered events at startup ([#620](https://github.com/ceramicnetwork/rust-ceramic/issues/620))
- Adds transitive sharing of peer information ([#618](https://github.com/ceramicnetwork/rust-ceramic/issues/618))
- Adds /peers endpoint ([#628](https://github.com/ceramicnetwork/rust-ceramic/issues/628))

### 🐛 Bug Fixes

- Sqlite optimize during connect could timeout and allow specifying db options ([#622](https://github.com/ceramicnetwork/rust-ceramic/issues/622))

### 🚜 Refactor

- Remove offset/limit where too generic ([#624](https://github.com/ceramicnetwork/rust-ceramic/issues/624))
- Remove unused version code ([#627](https://github.com/ceramicnetwork/rust-ceramic/issues/627))

### ⚙️ Miscellaneous Tasks

- Log current highwater mark when processing events ([#619](https://github.com/ceramicnetwork/rust-ceramic/issues/619))
- Run sqlite optimize at startup and interval ([#621](https://github.com/ceramicnetwork/rust-ceramic/issues/621))
- Use arrow release 53.3 ([#625](https://github.com/ceramicnetwork/rust-ceramic/issues/625))

## [0.45.0] - 2024-11-25

### 🚀 Features
Expand All @@ -16,6 +43,7 @@ All notable changes to this project will be documented in this file.
### ⚙️ Miscellaneous Tasks

- Automatically select release level ([#612](https://github.com/ceramicnetwork/rust-ceramic/issues/612))
- Version v0.45.0 ([#617](https://github.com/ceramicnetwork/rust-ceramic/issues/617))

## [0.44.0] - 2024-11-18

Expand Down
52 changes: 26 additions & 26 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 @@ -244,7 +244,7 @@ zeroize = "1.4"


[workspace.package]
version = "0.45.0"
version = "0.46.0"
edition = "2021"
authors = [
"Danny Browning <[email protected]>",
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.45.0"
version = "0.46.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.45.0
- Build date: 2024-12-06T08:58:05.827048302-07:00[America/Denver]
- API version: 0.46.0
- Build date: 2024-12-09T20:17:08.556875752Z[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.45.0
version: 0.46.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 @@ -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.45.0";
pub const API_VERSION: &str = "0.46.0";

#[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.45.0
version: 0.46.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.45.0"
version = "0.46.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.45.0
- Build date: 2024-11-25T18:44:36.536427437Z[Etc/UTC]
- API version: 0.46.0
- Build date: 2024-12-09T20:17:10.763483392Z[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.45.0
version: 0.46.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 @@ -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.45.0";
pub const API_VERSION: &str = "0.46.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.45.0
version: 0.46.0
title: Kubo RPC API
license:
name: MIT
Expand Down
Loading