Skip to content

Commit

Permalink
chore: release v0.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed Jun 26, 2024
1 parent b7d601f commit c6344f9
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 10 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ The format is based on [Keep a Changelog].

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

## [v0.23.2] - 2024-06-26

This a small patch release that fixes a couple of bugs and adds a couple of new APIs.

The bug fixes are:
- The `server::ws::on_connect` was not working properly due to a merge nit when upgrading to hyper v1.0
This impacts only users that are using the low-level API and not the server itself.
- `WsTransport::build_with_stream` shouldn't not resolve the socket addresses and it's fixed now, [see #1411 for further info](https://github.com/paritytech/jsonrpsee/issues/1411).
This impacts users that are inject their own TcpStream directly into the `WsTransport`.

### [Added]
- server: add `RpcModule::remove` ([#1416](https://github.com/paritytech/jsonrpsee/pull/1416))
- server: add `capacity and max_capacity` to the subscription API ([#1414](https://github.com/paritytech/jsonrpsee/pull/1414))
- server: add `PendingSubscriptionSink::method_name` ([#1413](https://github.com/paritytech/jsonrpsee/pull/1413))

### [Fixed]
- server: make `ws::on_connect` work again ([#1418](https://github.com/paritytech/jsonrpsee/pull/1418))
- client: `WsTransport::build_with_stream` don't resolve sockaddrs ([#1412](https://github.com/paritytech/jsonrpsee/pull/1412))

## [v0.23.1] - 2024-06-10

This is a patch release that injects the ConnectionId in
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 <[email protected]>", "Pierre Krieger <[email protected]>"]
version = "0.23.1"
version = "0.23.2"
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.23.1" }
jsonrpsee-core = { path = "core", version = "0.23.1" }
jsonrpsee-server = { path = "server", version = "0.23.1" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.23.1" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.23.1" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.23.1" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.23.1" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.23.1" }
jsonrpsee-types = { path = "types", version = "0.23.2" }
jsonrpsee-core = { path = "core", version = "0.23.2" }
jsonrpsee-server = { path = "server", version = "0.23.2" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.23.2" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.23.2" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.23.2" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.23.2" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.23.2" }
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.23.1/status.svg)](https://deps.rs/crate/jsonrpsee/0.23.1)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.23.2/status.svg)](https://deps.rs/crate/jsonrpsee/0.23.2)

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

Expand Down

0 comments on commit c6344f9

Please sign in to comment.