Skip to content

Commit 498393f

Browse files
0.33.0
1 parent 38089ba commit 498393f

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

CHANGELOG.md

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

3-
## v0.33.0 (in development)
3+
## v0.34.0 (in development)
44

55
No changes yet.
66

77

8+
## v0.33.0 (Jun 10, 2025)
9+
10+
### Bug Fixes
11+
12+
* `NoActiveProtocolListenerDetails` was split into `NoActiveProtocolListenerDetailsPre41` and `NoActiveProtocolListenerDetails41AndLater`
13+
to support `GET /api/health/checks/protocol-listener/{protocols}` responses of both RabbitMQ 4.0.x and 4.1.x.
14+
15+
Relevant RabbitMQ change: [rabbitmq/rabbitmq-server#13871](https://github.com/rabbitmq/rabbitmq-server/pull/13871).
16+
17+
818
## v0.32.0 (Jun 6, 2025)
919

1020
### Enhancements

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ This library is relatively young, breaking API changes are possible.
1414
### Blocking Client
1515

1616
```toml
17-
rabbitmq_http_client = { version = "0.32.0", features = ["core", "blocking"] }
17+
rabbitmq_http_client = { version = "0.33.0", features = ["core", "blocking"] }
1818
```
1919

2020
### Async Client
2121

2222
```toml
23-
rabbitmq_http_client = { version = "0.32.0", features = ["core", "async"] }
23+
rabbitmq_http_client = { version = "0.33.0", features = ["core", "async"] }
2424
```
2525

2626
### Blocking Client with Tabled Support
2727

2828
```toml
29-
rabbitmq_http_client = { version = "0.32.0", features = ["core", "blocking", "tabled"] }
29+
rabbitmq_http_client = { version = "0.33.0", features = ["core", "blocking", "tabled"] }
3030
```
3131

3232
### Async Client with Tabled Support
3333

3434
```toml
35-
rabbitmq_http_client = { version = "0.32.0", features = ["core", "async", "tabled"] }
35+
rabbitmq_http_client = { version = "0.33.0", features = ["core", "async", "tabled"] }
3636
```
3737

3838

0 commit comments

Comments
 (0)