Skip to content

Commit

Permalink
chore: Release v0.19.0 (#1155)
Browse files Browse the repository at this point in the history
* Update changelog

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* cargo: Bump version to 0.18.3

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* Change the release to v0.19.0

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* tests: Change expected error to accomodate rust from gitlab

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* Revert "tests: Change expected error to accomodate rust from gitlab"

This reverts commit ac70559.

* changelog: Remove unrelated changes

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

---------

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
  • Loading branch information
lexnv authored Jul 22, 2023
1 parent fa8132a commit 96c035c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 12 deletions.
23 changes: 20 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,27 @@ The format is based on [Keep a Changelog].

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

## [v0.19.0] - 2023-07-20

### [Fixed]

- Fixed connections processing await on server shutdown ([#1153](https://github.com/paritytech/jsonrpsee/pull/1153))
- fix: include error code in RpcLogger ([#1135](https://github.com/paritytech/jsonrpsee/pull/1135))
- fix: downgrade more logs to `debug` ([#1127](https://github.com/paritytech/jsonrpsee/pull/1127))
- fix(server): remove `MethodSinkPermit` to fix backpressure issue on concurrent subscriptions ([#1126](https://github.com/paritytech/jsonrpsee/pull/1126))
- fix readme links ([#1152](https://github.com/paritytech/jsonrpsee/pull/1152))

### [Changed]

- server: downgrade connection logs to debug ([#1123](https://github.com/paritytech/jsonrpsee/pull/1123))
- refactor(server): make `Server::start` infallible and add `fn builder()` ([#1137](https://github.com/paritytech/jsonrpsee/pull/1137))

## [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
### [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))

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

### Changed
### [Changed]

- http client: add default generic param for the backend ([#1099](https://github.com/paritytech/jsonrpsee/pull/1099))

### Fixed
### [Fixed]

- rpc module: fix race in subscription close callback ([#1098](https://github.com/paritytech/jsonrpsee/pull/1098))
- client: add missing batch request tracing span ([#1097](https://github.com/paritytech/jsonrpsee/pull/1097))
- ws server: don't wait for graceful shutdown when connection already closed ([#1103](https://github.com/paritytech/jsonrpsee/pull/1103))
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.2"
version = "0.19.0"
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.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" }
jsonrpsee-types = { path = "types", version = "0.19.0" }
jsonrpsee-core = { path = "core", version = "0.19.0" }
jsonrpsee-server = { path = "server", version = "0.19.0" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.19.0" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.19.0" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.19.0" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.19.0" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.19.0" }

0 comments on commit 96c035c

Please sign in to comment.