Skip to content
Merged
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: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "AzStorage"
uuid = "c6697862-1611-5eae-9ef8-48803c85c8d6"
version = "2.9.1"
version = "2.9.2"

[deps]
AbstractStorage = "14dbef02-f468-5f15-853e-5ec8dee7b899"
Expand Down
12 changes: 9 additions & 3 deletions src/AzStorage.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const RETRYABLE_CURL_ERRORS = [
56] # Failure with received network data.

# https://docs.microsoft.com/en-us/rest/api/storageservices/versioning-for-the-azure-storage-services
const API_VERSION = "2025-07-05"
const API_VERSION = "2026-06-06"

# buffer size for holding OAuth2 tokens
const BUFFER_SIZE = unsafe_load(cglobal((:BUFFER_SIZE, libAzStorage), Int32))
Expand Down Expand Up @@ -942,12 +942,16 @@ function generate_user_delegation_sas(c::AzContainer, b::AbstractString; permiss
signedAuthorizedUserObjectId = ""
signedUnauthorizedUserObjectId = ""
signedCorrelationId = ""
signedKeyDelegatedUserTenantId = ""
signedDelegatedUserObjectId = ""
signedIP = ""
signedProtocol = "https"
signedVersion = API_VERSION
signedResource = "b"
signedSnapshotTime = ""
signedEncryptionScope = ""
canonicalizedSignedRequestHeaders = ""
canonicalizedSignedRequestQueryParameters = ""
rscc = ""
rscd = ""
rsce = ""
Expand All @@ -968,14 +972,16 @@ function generate_user_delegation_sas(c::AzContainer, b::AbstractString; permiss
signedAuthorizedUserObjectId * "\n" *
signedUnauthorizedUserObjectId * "\n" *
signedCorrelationId * "\n" *
"\n" *
"\n" *
signedKeyDelegatedUserTenantId * "\n" *
signedDelegatedUserObjectId * "\n" *
signedIP * "\n" *
signedProtocol * "\n" *
signedVersion * "\n" *
signedResource * "\n" *
signedSnapshotTime * "\n" *
signedEncryptionScope * "\n" *
canonicalizedSignedRequestHeaders * "\n" *
canonicalizedSignedRequestQueryParameters * "\n" *
rscc * "\n" *
rscd * "\n" *
rsce * "\n" *
Expand Down
Loading