You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/core/azure_core/CHANGELOG.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,9 @@
5
5
### Features Added
6
6
7
7
- Added `ItemIterator::continuation_token()` and `with_continuation_token()` to resume paging items. The current page is restarted until _after_ all items have been iterated.
8
-
- Added `Response::to_raw_response()` function to create a `RawResponse` from cloned data.
8
+
- Added `PipelineOptions::retry_status_codes` for configuring which status codes should trigger a retry.
- Added `Response<T, F>::to_raw_response()` function to create a `RawResponse` from cloned data.
9
11
- Added `UrlExt::append_path()`.
10
12
- Implemented `IntoFuture` for a `Poller`. Call `await` on a Poller to get the final model, or `into_stream()` to get a `futures::Stream` to poll the operation manually.
11
13
- Re-exported `serde_json::Value` as `azure_core::Value` ([#1687](https://github.com/Azure/azure-sdk-for-rust/issues/1687))
@@ -24,6 +26,9 @@
24
26
- Removed `Poller::wait()` function. Call `await` on a `Poller` to wait for it to complete and, upon success, return the final model.
25
27
- Removed `xml::read_xml_str()`.
26
28
- Renamed `BearerTokenCredentialPolicy` to `BearerTokenAuthorizationPolicy`.
29
+
- Renamed `BufResponse` to `AsyncRawResponse` so that `AsyncRawResponse` is to `RawResponse` as `AsyncIterator` is to `Iterator`.
30
+
- Renamed `BufResponseBody` to `AsyncResponseBody` so that `AsyncResponseBody` is to `ResponseBody` as `AsyncIterator` is to `Iterator`.
31
+
- Renamed `Response<T, F>::into_body(self) -> Result<Response<T>>` to `into_model(self) -> Result<Response<T>>`. `into_body(self)` now returns a `ResponseBody`.
27
32
- Renamed `RetryPolicy::get_retry_headers()` to `RetryPolicy::retry_headers()`
28
33
- Renamed `xml::read_xml()` to `xml::from_xml()` congruent with `json::from_json()`.
0 commit comments