Skip to content

Commit 3206d7c

Browse files
0.68.0
1 parent 5edce80 commit 3206d7c

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGELOG.md

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

3-
## v0.68.0 (in development)
3+
## v0.69.0(in development)
44

5-
No changes.
5+
No changes yet.
6+
7+
## v0.68.0 (Nov 28, 2025)
8+
9+
### Enhancements
10+
11+
* Improve `tabled` column names for `AuthenticationAttemptStatistics`.
612

713
## v0.67.0 (Nov 28, 2025)
814

README.md

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

2323
```toml
24-
rabbitmq_http_client = { version = "0.67.0", features = ["core", "blocking"] }
24+
rabbitmq_http_client = { version = "0.68.0", features = ["core", "blocking"] }
2525
```
2626

2727
### Async Client
2828

2929
```toml
30-
rabbitmq_http_client = { version = "0.67.0", features = ["core", "async"] }
30+
rabbitmq_http_client = { version = "0.68.0", features = ["core", "async"] }
3131
```
3232

3333
### Blocking Client with Tabled Support
3434

3535
```toml
36-
rabbitmq_http_client = { version = "0.67.0", features = ["core", "blocking", "tabled"] }
36+
rabbitmq_http_client = { version = "0.68.0", features = ["core", "blocking", "tabled"] }
3737
```
3838

3939
### Async Client with Tabled Support
4040

4141
```toml
42-
rabbitmq_http_client = { version = "0.67.0", features = ["core", "async", "tabled"] }
42+
rabbitmq_http_client = { version = "0.68.0", features = ["core", "async", "tabled"] }
4343
```
4444

4545

src/responses/cluster.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,12 +445,16 @@ impl From<GlobalRuntimeParameterValue> for ClusterTags {
445445
#[derive(Debug, Deserialize, Clone, Eq, PartialEq)]
446446
#[cfg_attr(feature = "tabled", derive(Tabled))]
447447
pub struct AuthenticationAttemptStatistics {
448+
#[cfg_attr(feature = "tabled", tabled(rename = "Protocol"))]
448449
pub protocol: SupportedProtocol,
449450
#[serde(rename = "auth_attempts")]
451+
#[cfg_attr(feature = "tabled", tabled(rename = "Number of attempts"))]
450452
pub all_attempt_count: u64,
451453
#[serde(rename = "auth_attempts_failed")]
454+
#[cfg_attr(feature = "tabled", tabled(rename = "Failed"))]
452455
pub failure_count: u64,
453456
#[serde(rename = "auth_attempts_succeeded")]
457+
#[cfg_attr(feature = "tabled", tabled(rename = "Successful"))]
454458
pub success_count: u64,
455459
}
456460

0 commit comments

Comments
 (0)