Skip to content

Commit

Permalink
chore: version v0.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Automation committed Oct 17, 2024
1 parent b5b6952 commit 22c7368
Show file tree
Hide file tree
Showing 13 changed files with 61 additions and 39 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

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

## [0.40.0] - 2024-10-17

### 🚀 Features

- Protect FlightSQL server with sql options. (#544)
- Aes 291 continuous queries in olap aggregator (#538)
- Migrate from file list (#501)
- Use data container wrapper for mutable metadata (#559)
- Add query command to ceramic-one (#545)

### 🐛 Bug Fixes

- Only write out error counts on errors (#560)
- Use correct index for the conclusion feed. (#561)
- Use tokio::time::Interval for scheduling anchor batches (#563)
- Subscribe to server shutdown signal in insert task (#553)

### ⚙️ Miscellaneous Tasks

- Record the per item duration of an insert_many request (#551)

## [0.39.0] - 2024-10-07

### 🐛 Bug Fixes
Expand All @@ -11,6 +32,7 @@ All notable changes to this project will be documented in this file.
### ⚙️ Miscellaneous Tasks

- Always log options at startup (#554)
- Version v0.39.0 (#557)

## [0.38.0] - 2024-10-07

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 @@ -241,7 +241,7 @@ zeroize = "1.4"


[workspace.package]
version = "0.39.0"
version = "0.40.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.39.0"
version = "0.40.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.39.0
- Build date: 2024-10-07T22:15:07.398424168Z[Etc/UTC]
- API version: 0.40.0
- Build date: 2024-10-17T18:51:28.818325470Z[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.39.0
version: 0.40.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.39.0";
pub const API_VERSION: &str = "0.40.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.39.0
version: 0.40.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.39.0"
version = "0.40.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.39.0
- Build date: 2024-10-07T22:15:09.633328921Z[Etc/UTC]
- API version: 0.40.0
- Build date: 2024-10-17T18:51:31.008931216Z[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.39.0
version: 0.40.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.39.0";
pub const API_VERSION: &str = "0.40.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.39.0
version: 0.40.0
title: Kubo RPC API
license:
name: MIT
Expand Down

0 comments on commit 22c7368

Please sign in to comment.