From 8b6bc92e8cf1583d846e2e26e13e9dcfaebc8b86 Mon Sep 17 00:00:00 2001 From: Tadeo hepperle Date: Wed, 10 May 2023 15:57:02 +0200 Subject: [PATCH 1/2] add changelog and bump version --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 18 +++++++++--------- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 080d0bf423..43c64a1fa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ + +## [v0.18.2] - 2023-04-26 + +This release fixes a couple bugs around batch requests and connection shutdowns. + +### Added +- server: export BatchRequestConfig ([#1112](https://github.com/paritytech/jsonrpsee/pull/1112)) + +### Fixed +- fix(server): improve too big batch response msg ([#1107](https://github.com/paritytech/jsonrpsee/pull/1107)) +- fix: `publish script` to work for workspace members ([#1101](https://github.com/paritytech/jsonrpsee/pull/1101)) +- fix(ws server): fix shutdown on connection closed ([#1103](https://github.com/paritytech/jsonrpsee/pull/1103)) + ## [v0.18.1] - 2023-04-26 This release fixes a couple bugs and improves the ergonomics for the HTTP client diff --git a/Cargo.toml b/Cargo.toml index 8501e17e59..b444afd892 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ resolver = "2" [workspace.package] authors = ["Parity Technologies ", "Pierre Krieger "] -version = "0.18.1" +version = "0.18.2" edition = "2021" rust-version = "1.64.0" license = "MIT" @@ -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" } From 412bc7946223b0348ee28aa9b32d101312b0f2b8 Mon Sep 17 00:00:00 2001 From: Tadeo hepperle Date: Wed, 10 May 2023 17:25:45 +0200 Subject: [PATCH 2/2] implement mistakes --- CHANGELOG.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43c64a1fa8..3b1a1c9421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,17 +5,13 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [v0.18.2] - 2023-04-26 +## [v0.18.2] - 2023-05-10 -This release fixes a couple bugs around batch requests and connection shutdowns. - -### Added -- server: export BatchRequestConfig ([#1112](https://github.com/paritytech/jsonrpsee/pull/1112)) +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)) -- fix: `publish script` to work for workspace members ([#1101](https://github.com/paritytech/jsonrpsee/pull/1101)) -- fix(ws server): fix shutdown on connection closed ([#1103](https://github.com/paritytech/jsonrpsee/pull/1103)) ## [v0.18.1] - 2023-04-26