Releases: michaelklishin/rabbitmq-http-api-rs
Releases · michaelklishin/rabbitmq-http-api-rs
v0.9.0
v0.9.0 (Dec 24, 2024)
Breaking Changes
-
To propagate more request context to the caller,
crate::error::Error
was updated to provide a requset URL, a header map,
and a request body (if available).This reason for doing this comes down to how
reqwest
'sResponse
functions
are designed: the ones that consume and parse the body also consumeself
,
which means propagating aResponse
to the caller is not very useless at best,
and arguably is misleading.
Enhancements
-
crate::api
now provides an async API.crate::blocking_api
provides the
original synchronous API.Contributed by @ikrivosheev.
-
Client#overview
is a new function that corresponds to theGET /api/overview
API endpoint.Contributed by @ikrivosheev.
GitHub issue: #31