Skip to content

Commit d3d1640

Browse files
0.53.0
1 parent 7a08aa8 commit d3d1640

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Rust Client for the RabbitMQ HTTP API Change Log
22

3-
## v0.53.0 (in development)
3+
## v0.54.0 (in development)
4+
5+
## v0.53.0 (Sep 18, 2025)
46

57
### Enhancements
68

7-
* `uris::UriBuilder` is a convenient way of modifying URIs used by [federation upstreams](https://www.rabbitmq.com/docs/federation#what-does-it-do) and [shovels](https://www.rabbitmq.com/docs/shovel)
9+
* `uris::UriBuilder` is a convenient way of modifying URIs used by [federation upstreams](https://www.rabbitmq.com/docs/federation#what-does-it-do) and [shovels](https://www.rabbitmq.com/docs/shovel).
10+
Its `replace` and `merge` methods are now much more efficient
11+
as they no longer rebuild the URI query string multiple times.
812

913
```rust
1014
use rabbitmq_http_client::uris::UriBuilder;

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ All older series have [reached End of Life](https://www.rabbitmq.com/release-inf
1919
### Blocking Client
2020

2121
```toml
22-
rabbitmq_http_client = { version = "0.52.0", features = ["core", "blocking"] }
22+
rabbitmq_http_client = { version = "0.53.0", features = ["core", "blocking"] }
2323
```
2424

2525
### Async Client
2626

2727
```toml
28-
rabbitmq_http_client = { version = "0.52.0", features = ["core", "async"] }
28+
rabbitmq_http_client = { version = "0.53.0", features = ["core", "async"] }
2929
```
3030

3131
### Blocking Client with Tabled Support
3232

3333
```toml
34-
rabbitmq_http_client = { version = "0.52.0", features = ["core", "blocking", "tabled"] }
34+
rabbitmq_http_client = { version = "0.53.0", features = ["core", "blocking", "tabled"] }
3535
```
3636

3737
### Async Client with Tabled Support
3838

3939
```toml
40-
rabbitmq_http_client = { version = "0.52.0", features = ["core", "async", "tabled"] }
40+
rabbitmq_http_client = { version = "0.53.0", features = ["core", "async", "tabled"] }
4141
```
4242

4343

0 commit comments

Comments
 (0)