Skip to content

Commit 96c035c

Browse files
authored
chore: Release v0.19.0 (#1155)
* Update changelog Signed-off-by: Alexandru Vasile <[email protected]> * cargo: Bump version to 0.18.3 Signed-off-by: Alexandru Vasile <[email protected]> * Change the release to v0.19.0 Signed-off-by: Alexandru Vasile <[email protected]> * tests: Change expected error to accomodate rust from gitlab Signed-off-by: Alexandru Vasile <[email protected]> * Revert "tests: Change expected error to accomodate rust from gitlab" This reverts commit ac70559. * changelog: Remove unrelated changes Signed-off-by: Alexandru Vasile <[email protected]> --------- Signed-off-by: Alexandru Vasile <[email protected]>
1 parent fa8132a commit 96c035c

File tree

2 files changed

+29
-12
lines changed

2 files changed

+29
-12
lines changed

CHANGELOG.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,27 @@ The format is based on [Keep a Changelog].
44

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

7+
## [v0.19.0] - 2023-07-20
8+
9+
### [Fixed]
10+
11+
- Fixed connections processing await on server shutdown ([#1153](https://github.com/paritytech/jsonrpsee/pull/1153))
12+
- fix: include error code in RpcLogger ([#1135](https://github.com/paritytech/jsonrpsee/pull/1135))
13+
- fix: downgrade more logs to `debug` ([#1127](https://github.com/paritytech/jsonrpsee/pull/1127))
14+
- fix(server): remove `MethodSinkPermit` to fix backpressure issue on concurrent subscriptions ([#1126](https://github.com/paritytech/jsonrpsee/pull/1126))
15+
- fix readme links ([#1152](https://github.com/paritytech/jsonrpsee/pull/1152))
16+
17+
### [Changed]
18+
19+
- server: downgrade connection logs to debug ([#1123](https://github.com/paritytech/jsonrpsee/pull/1123))
20+
- refactor(server): make `Server::start` infallible and add `fn builder()` ([#1137](https://github.com/paritytech/jsonrpsee/pull/1137))
721

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

1024
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`
1125

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

@@ -18,10 +33,12 @@ This release improves error message for `too big batch response` and exposes the
1833
This release fixes a couple bugs and improves the ergonomics for the HTTP client
1934
when no tower middleware is enabled.
2035

21-
### Changed
36+
### [Changed]
37+
2238
- http client: add default generic param for the backend ([#1099](https://github.com/paritytech/jsonrpsee/pull/1099))
2339

24-
### Fixed
40+
### [Fixed]
41+
2542
- rpc module: fix race in subscription close callback ([#1098](https://github.com/paritytech/jsonrpsee/pull/1098))
2643
- client: add missing batch request tracing span ([#1097](https://github.com/paritytech/jsonrpsee/pull/1097))
2744
- ws server: don't wait for graceful shutdown when connection already closed ([#1103](https://github.com/paritytech/jsonrpsee/pull/1103))

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resolver = "2"
1919

2020
[workspace.package]
2121
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
22-
version = "0.18.2"
22+
version = "0.19.0"
2323
edition = "2021"
2424
rust-version = "1.64.0"
2525
license = "MIT"
@@ -30,11 +30,11 @@ keywords = ["jsonrpc", "json", "http", "websocket", "WASM"]
3030
readme = "README.md"
3131

3232
[workspace.dependencies]
33-
jsonrpsee-types = { path = "types", version = "0.18.2" }
34-
jsonrpsee-core = { path = "core", version = "0.18.2" }
35-
jsonrpsee-server = { path = "server", version = "0.18.2" }
36-
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.18.2" }
37-
jsonrpsee-http-client = { path = "client/http-client", version = "0.18.2" }
38-
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.18.2" }
39-
jsonrpsee-client-transport = { path = "client/transport", version = "0.18.2" }
40-
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.18.2" }
33+
jsonrpsee-types = { path = "types", version = "0.19.0" }
34+
jsonrpsee-core = { path = "core", version = "0.19.0" }
35+
jsonrpsee-server = { path = "server", version = "0.19.0" }
36+
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.19.0" }
37+
jsonrpsee-http-client = { path = "client/http-client", version = "0.19.0" }
38+
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.19.0" }
39+
jsonrpsee-client-transport = { path = "client/transport", version = "0.19.0" }
40+
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.19.0" }

0 commit comments

Comments
 (0)