Skip to content

Commit b0a45c6

Browse files
authored
Prepare to release v0.26.0 (#1595)
* PRepare to release v0.26.0 * Tweak changelog
1 parent 9e551cb commit b0a45c6

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ The format is based on [Keep a Changelog].
44

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

7+
## [v0.26.0] - 2025-08-11
8+
9+
This is just a small release; the only breaking change is the addition of `max_frame_size` to `WsTransportClientBuilder`, which necessitates a minor version bump.
10+
11+
The other changes are as follows:
12+
13+
### [Changed]
14+
15+
- Fix new Rust 1.89 lifetime warnings and impl ToRpcParams on serde_json::Map ([#1594](https://github.com/paritytech/jsonrpsee/pull/1594))
16+
- feat(keepalive): expose tcp keep-alive options ([#1583](https://github.com/paritytech/jsonrpsee/pull/1583))
17+
- chore: expose `TowerServiceNoHttp` type ([#1588](https://github.com/paritytech/jsonrpsee/pull/1588))
18+
- chore(deps): update socket2 requirement from 0.5.1 to 0.6.0 ([#1587](https://github.com/paritytech/jsonrpsee/pull/1587))
19+
- Allow max websocket frame size to be set ([#1585](https://github.com/paritytech/jsonrpsee/pull/1585))
20+
- chore(deps): update pprof requirement from 0.14 to 0.15 ([#1577](https://github.com/paritytech/jsonrpsee/pull/1577))
21+
- Expose `jsonrpsee_http_client::RpcService` ([#1574](https://github.com/paritytech/jsonrpsee/pull/1574))
22+
23+
### [Fixed]
24+
25+
- fix: Remove username and password from URL after building Authorization header ([#1581](https://github.com/paritytech/jsonrpsee/pull/1581))
26+
727
## [v0.25.1] - 2025-04-24
828

929
A small follow-up patch release that adds a `Clone impl` for the middleware RpcLogger which was missing

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resolver = "3"
2020

2121
[workspace.package]
2222
authors = ["Parity Technologies <admin@parity.io>", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
23-
version = "0.25.1"
23+
version = "0.26.0"
2424
edition = "2024"
2525
rust-version = "1.85.0"
2626
license = "MIT"
@@ -32,14 +32,14 @@ readme = "README.md"
3232

3333
[workspace.dependencies]
3434
# Internal jsonrpsee crates
35-
jsonrpsee-client-transport = { path = "client/transport", version = "0.25.1" }
36-
jsonrpsee-core = { path = "core", version = "0.25.1" }
37-
jsonrpsee-http-client = { path = "client/http-client", version = "0.25.1" }
38-
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.25.1" }
39-
jsonrpsee-server = { path = "server", version = "0.25.1" }
40-
jsonrpsee-types = { path = "types", version = "0.25.1" }
41-
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.25.1" }
42-
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.25.1" }
35+
jsonrpsee-client-transport = { path = "client/transport", version = "0.26.0" }
36+
jsonrpsee-core = { path = "core", version = "0.26.0" }
37+
jsonrpsee-http-client = { path = "client/http-client", version = "0.26.0" }
38+
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.26.0" }
39+
jsonrpsee-server = { path = "server", version = "0.26.0" }
40+
jsonrpsee-types = { path = "types", version = "0.26.0" }
41+
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.26.0" }
42+
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.26.0" }
4343

4444
# Deps used by the jsonrpsee crates.
4545
async-trait = "0.1"

0 commit comments

Comments
 (0)