SAS token version related change (#3399)

This commit is contained in:
JinmingHu 2022-03-08 15:48:00 +08:00 committed by GitHub
parent 7af1e39c27
commit 73304d6328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 7 deletions

View File

@ -18,6 +18,7 @@ namespace Azure { namespace Storage { namespace _internal {
constexpr static const char* HttpHeaderContentType = "content-type";
constexpr static const char* HttpHeaderContentLength = "content-length";
constexpr static const char* HttpHeaderContentRange = "content-range";
constexpr static const char* DefaultSasVersion = "2020-02-10";
constexpr int ReliableStreamRetryCount = 3;
}}} // namespace Azure::Storage::_internal

View File

@ -2,14 +2,10 @@
## 12.0.0-beta.4 (Unreleased)
### Features Added
### Breaking Changes
### Bugs Fixed
### Other Changes
- Changed SAS token signed version to `2018-03-28`.
## 12.0.0-beta.3 (2022-02-14)
### Other Changes

View File

@ -9,7 +9,7 @@
namespace Azure { namespace Storage { namespace Sas {
namespace {
constexpr static const char* SasVersion = "2020-02-10";
constexpr static const char* SasVersion = "2018-03-28";
}
void QueueSasBuilder::SetPermissions(QueueSasPermissions permissions)