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: release v0.24.6 #1469

Merged
merged 1 commit into from
Oct 7, 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [v0.24.6] - 2024-10-07

This is a bug-fix release that fixes that the `ConnectionGuard` was dropped before the future was resolved which,
could lead to that HTTP calls were not counted correctly in the `ConnectionGuard`. This impacts only the server.

### [Fixed]
- fix(server): count http calls in connection guard ([#1468](https://github.com/paritytech/jsonrpsee/pull/1468))

## [v0.24.5] - 2024-09-26

This is a patch release that mainly fixes a compilation issue for the server because the feature `tower/util` was not enabled.
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resolver = "2"

[workspace.package]
authors = ["Parity Technologies <admin@parity.io>", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
version = "0.24.5"
version = "0.24.6"
edition = "2021"
rust-version = "1.74.1"
license = "MIT"
Expand All @@ -31,11 +31,11 @@ keywords = ["jsonrpc", "json", "http", "websocket", "WASM"]
readme = "README.md"

[workspace.dependencies]
jsonrpsee-types = { path = "types", version = "0.24.5" }
jsonrpsee-core = { path = "core", version = "0.24.5" }
jsonrpsee-server = { path = "server", version = "0.24.5" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.24.5" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.24.5" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.24.5" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.24.5" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.24.5" }
jsonrpsee-types = { path = "types", version = "0.24.6" }
jsonrpsee-core = { path = "core", version = "0.24.6" }
jsonrpsee-server = { path = "server", version = "0.24.6" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.24.6" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.24.6" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.24.6" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.24.6" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.24.6" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
![MIT](https://img.shields.io/crates/l/jsonrpsee.svg)
[![CI](https://github.com/paritytech/jsonrpsee/actions/workflows/ci.yml/badge.svg)](https://github.com/paritytech/jsonrpsee/actions/workflows/ci.yml)
[![Benchmarks](https://github.com/paritytech/jsonrpsee/actions/workflows/benchmarks_gitlab.yml/badge.svg)](https://github.com/paritytech/jsonrpsee/actions/workflows/benchmarks_gitlab.yml)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.24.5/status.svg)](https://deps.rs/crate/jsonrpsee/0.24.5)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.24.6/status.svg)](https://deps.rs/crate/jsonrpsee/0.24.6)

JSON-RPC library designed for async/await in Rust.

Expand Down
Loading