Skip to content

Commit 96c88f2

Browse files
authored
Upgrade azure core to 0.26 (#638)
* Clippy fix * Update azure_core, azure_identity to 0.26 * Updates to handle azure_core 0.26 changes to azure_core::http::Response * Disable github wasm32 build
1 parent 956397f commit 96c88f2

File tree

99 files changed

+10029
-31613
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+10029
-31613
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ jobs:
3838
run: cd azure_devops_rust_api && cargo build --all-features
3939
- name: cleanup azure_devops_rust_api build artifacts
4040
run: rm -rf azure_devops_rust_api/target
41-
- name: install wasm target
42-
run: rustup target add wasm32-unknown-unknown
43-
- name: azure_devops_rust_api check wasm build
44-
run: cd azure_devops_rust_api && cargo check --target wasm32-unknown-unknown --all-features
41+
# Remove wasm32 build due to issues with getrandom
42+
#- name: install wasm target
43+
# run: rustup target add wasm32-unknown-unknown
44+
#- name: azure_devops_rust_api check wasm build
45+
# run: cd azure_devops_rust_api && cargo check --target wasm32-unknown-unknown --all-features
4546
- name: azure_devops_rust_api test
4647
run: cd azure_devops_rust_api && cargo test
4748
- name: azure_devops_rust_api documentation generation

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Breaking changes
11+
12+
- Update `azure_core`, `azure_identity` to 0.26
13+
- Some significant updates needed to handle changes to `azure_core::http::Response`
14+
- `Response::into_raw_body()` renamed `Response::into_body()`
15+
- `Response::into_raw_response()` now returns `azure_core::http::RawResponse` rather than `azure_core::http::Response`
16+
- `Client::send()` now returns `azure_core::http::RawResponse` rather than `azure_core::http::Response`
17+
- Fix up examples to work with response changes.
18+
- Disable wasm32 CI build due to issues with `getrandom`
19+
1020
## [0.28.0]
1121

1222
- Update `azure_core`, `azure_identity` to 0.24

0 commit comments

Comments
 (0)