[Storage] Prep for v0.5.0 azure_storage_blob release#3002
Merged
vincenttran-msft merged 6 commits intoAzure:mainfrom Sep 16, 2025
Merged
[Storage] Prep for v0.5.0 azure_storage_blob release#3002vincenttran-msft merged 6 commits intoAzure:mainfrom
v0.5.0 azure_storage_blob release#3002vincenttran-msft merged 6 commits intoAzure:mainfrom
Conversation
heaths
approved these changes
Sep 15, 2025
API Change CheckAPIView identified API level changes in this PR and created the following API reviews |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR prepares the azure_storage_blob crate for a v0.5.0 release by updating the generated code and making breaking changes to the set_metadata API. The PR regenerates code against updated TypeSpec definitions and addresses API consistency issues.
Key changes:
- Makes
metadataa required parameter forset_metadatamethods inBlobClientandBlobContainerClient - Updates changelog with new features and breaking changes for v0.5.0
- Regenerates code from updated TypeSpec definitions
Reviewed Changes
Copilot reviewed 6 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tsp-location.yaml | Updates commit hash for TypeSpec regeneration |
| assets.json | Updates asset tag for test resources |
| CHANGELOG.md | Adds v0.5.0 changelog entries with new features and breaking changes |
| blob_client.rs | Updates set_metadata method signature to require metadata parameter and fixes docstring |
| blob_client.rs (tests) | Updates test calls to match new set_metadata API signature |
| checkpoint_store.rs | Refactors EventHub code to work with new set_metadata API |
sdk/eventhubs/azure_messaging_eventhubs_checkpointstore_blob/src/checkpoint_store.rs
Show resolved
Hide resolved
Member
Author
|
cc: @LarryOsterman Larry for the EventHubs portion that was refactored as a result of the breaking change. 🔨 |
LarryOsterman
approved these changes
Sep 15, 2025
heaths
approved these changes
Sep 15, 2025
jalauzon-msft
approved these changes
Sep 15, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
.tsp: Azure/azure-rest-api-specs#37428feature/blob-tsp-rust(which seems to be missing some stuff from latest merged PR, probably bad merge resolution)BlobClient'sset_metadata()casesAlso had to refactor EventHub's code to match the new behavior of
set_metadata()that was missed in a previous PR.