Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- (Jaeger) Query resource attributes when Jaeger request carries tags
- Azure Blob Storage: workload identity no longer fails 24 hours after start, since `azure_identity` 1.0 re-reads the projected service account token (#6672)

### Changed
- Azure Blob Storage: migrate to `azure_storage_blob` 1.0, the rewritten Azure SDK (#6672)

### Deprecated

Expand Down
8 changes: 6 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ services:
retries: 100

azurite:
image: mcr.microsoft.com/azure-storage/azurite:${AZURITE_VERSION:-3.24.0}
image: mcr.microsoft.com/azure-storage/azurite:${AZURITE_VERSION:-3.36.0}
container_name: azurite
ports:
- "${MAP_HOST_AZURITE:-127.0.0.1}:10000:10000" # Blob store port
Expand All @@ -137,7 +137,11 @@ services:
- azurite
volumes:
- azurite_data:/data
command: azurite --blobHost 0.0.0.0 --loose
# `--skipApiVersionCheck` because `azure_storage_blob` 1.0 sends a newer
# `x-ms-version` than any released Azurite recognizes. Skipping the check keeps the
# emulated client sending the same request as production, which is the point of the
# test, rather than pinning an older API version only the tests would use.
command: azurite --blobHost 0.0.0.0 --loose --skipApiVersionCheck

fake-gcs-server:
image: fsouza/fake-gcs-server:${FAKE_GCS_SERVER_VERSION:-1.47.7}
Expand Down
Loading