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

patch release v0.18.2 #1114

Merged
merged 2 commits into from
May 10, 2023
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ The format is based on [Keep a Changelog].

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


## [v0.18.2] - 2023-05-10

This release improves error message for `too big batch response` and exposes the `BatchRequestConfig type` in order to make it possible to use `ServerBuilder::set_batch_request_config`

### Fixed
- server: export BatchRequestConfig ([#1112](https://github.com/paritytech/jsonrpsee/pull/1112))
- fix(server): improve too big batch response msg ([#1107](https://github.com/paritytech/jsonrpsee/pull/1107))

## [v0.18.1] - 2023-04-26

This release fixes a couple bugs and improves the ergonomics for the HTTP client
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resolver = "2"

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

[workspace.dependencies]
jsonrpsee-types = { path = "types", version = "0.18.1" }
jsonrpsee-core = { path = "core", version = "0.18.1" }
jsonrpsee-server = { path = "server", version = "0.18.1" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.18.1" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.18.1" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.18.1" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.18.1" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.18.1" }
jsonrpsee-types = { path = "types", version = "0.18.2" }
jsonrpsee-core = { path = "core", version = "0.18.2" }
jsonrpsee-server = { path = "server", version = "0.18.2" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.18.2" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.18.2" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.18.2" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.18.2" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.18.2" }