Skip to content

Commit

Permalink
chore: version v0.10.0 (#261)
Browse files Browse the repository at this point in the history
Co-authored-by: Github Automation <[email protected]>
  • Loading branch information
2 people authored and smrz2001 committed Feb 6, 2024
1 parent 5099e4d commit 6b1a15f
Show file tree
Hide file tree
Showing 13 changed files with 101 additions and 41 deletions.
69 changes: 69 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,84 @@

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

## [0.10.0] - 2024-02-06

### Bug Fixes

- Check limits first before other behaviours (#183)
- Panic with divide by zero duration math (#184)
- Fix JSON log format errors (#185)
- Update comment to pass clippy (#189)
- Run publisher in its own task (#188)
- Trickle publisher keys to swarm (#191)
- Use AIMD for publisher batch size (#195)
- Do not use bootstrap list with kademlia (#199)
- Simplify the publisher (#200)
- Always collect metrics (#202)
- Typo (#203)
- Upgrade to libp2p 0.53 (#205)
- Clippy accessing first element with first (#212)
- Update deploy workflows for k8s (#216)
- Rename workflows (#223)
- Add a BUILD tag if it's not a PR merge (#256)
- Refactor recon storage and remove sqlx dependency from recon and core crates (#254)
- Update git config for release pr workflow

### Features

- Continously publish provider records (#175)
- Add publisher batch metrics (#187)
- Add config for republish_max_concurrent (#192)
- Add peering support (#194)
- Add tokio metrics (#206)
- Merge migration script with ceramic-one (#190)
- Add metrics to api and recon (#208)
- Schedule_k8s_deploy github action (#213)
- Recon-over-http (#168)
- Remove all usage of gossipsub (#209)
- Stop publishing CIDs to DHT on write (#211)
- On tag publish deploy to envs (#220)
- Add sqlite read/write pool split (#218)
- Add recon store metrics (#221)
- Add value support to Recon (#217)
- Post-deployment tests (#242)
- Updated release workflow (#241)
- Modify recon storage tables, trait and sqlite config to improve throughput (#243)
- Synchronize value for synchronized ranges (#238)
- Workflow_dispatch build job (#249)
- Add unified recon block store implementation (#245)
- Interest registration endpoint (#246)
- Added correctness test (#248)
- Support for set type documents (#259)
- Add API to fetch eventData from event String (#258)
- Add feed endpoint to propagate event data to js-ceramic (#255)

### Miscellaneous Tasks

- Use latest stable openapi-generator-cli (#222)
- Use docker root user (#251)
- Adding ci for cargo machete (#252)
- Run fast post-deployment tests for all envs (#257)
- Fix false positive in checking generated servers (#260)

### Refactor

- Update bitswap logs to use structured logging (#193)

## [0.9.0] - 2023-11-13

### Bug Fixes

- Rename iroh to ceramic-one in agent (#181)

### Features

- Add control over autonat (#176)

### Miscellaneous Tasks

- Pass manual flag through in deployment job (#180)
- Release version v0.9.0 (#182)

## [0.8.3] - 2023-11-09

Expand Down
47 changes: 19 additions & 28 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 @@ -192,7 +192,7 @@ xtaskops = "0.3"
zeroize = "1.4"

[workspace.package]
version = "0.9.0"
version = "0.10.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.9.0"
version = "0.10.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.9.0
- Build date: 2024-02-06T12:39:48.492094-07:00[America/Denver]
- API version: 0.10.0
- Build date: 2024-02-06T23:16:38.846842842Z[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.9.0
version: 0.10.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.9.0";
pub const API_VERSION: &str = "0.10.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.9.0
version: 0.10.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.9.0"
version = "0.10.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.9.0
- Build date: 2024-01-31T10:27:32.734206359-07:00[America/Denver]
- API version: 0.10.0
- Build date: 2024-02-06T23:16:40.850718655Z[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.9.0
version: 0.10.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.9.0";
pub const API_VERSION: &str = "0.10.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.9.0
version: 0.10.0
title: Kubo RPC API
license:
name: MIT
Expand Down

0 comments on commit 6b1a15f

Please sign in to comment.