From d63bacdc3bdeae89cc3321a4a2efac09fe60bb1b Mon Sep 17 00:00:00 2001 From: Tank Tang Date: Thu, 9 Sep 2021 16:44:10 +0800 Subject: [PATCH 1/2] Version/Doc change for blob@1.5.3 table@1.1.5 queue@1.3.4 file@1.2.5 common@1.5.2 --- azure-storage-blob/ChangeLog.md | 5 +++++ azure-storage-blob/composer.json | 2 +- azure-storage-blob/src/Blob/Internal/BlobResources.php | 2 +- azure-storage-common/ChangeLog.md | 9 +++++++++ azure-storage-common/composer.json | 2 +- azure-storage-common/src/Common/Internal/Resources.php | 2 +- azure-storage-file/ChangeLog.md | 3 +++ azure-storage-file/composer.json | 2 +- azure-storage-file/src/File/Internal/FileResources.php | 2 +- azure-storage-queue/ChangeLog.md | 3 +++ azure-storage-queue/composer.json | 2 +- .../src/Queue/Internal/QueueResources.php | 2 +- azure-storage-table/ChangeLog.md | 5 +++++ azure-storage-table/composer.json | 2 +- .../src/Table/Internal/TableResources.php | 2 +- 15 files changed, 35 insertions(+), 10 deletions(-) diff --git a/azure-storage-blob/ChangeLog.md b/azure-storage-blob/ChangeLog.md index 212e1fa4..9eb747ad 100644 --- a/azure-storage-blob/ChangeLog.md +++ b/azure-storage-blob/ChangeLog.md @@ -1,3 +1,8 @@ +2021.09 - version 1.5.3 +* Upgraded dependency for `azure-storage-common` to version 1.5.2. +* Resolved some interface inconsistency between `IBlob`/`BlobRestProxy`. +* Imported `Psr\Http\Message\StreamInterface` in `IBlob`. + 2020.12 - version 1.5.2 * Resolved an issue where access condition does not work for large block blob uploads. * Guzzle version is now updated to support both 6.x and 7.x. diff --git a/azure-storage-blob/composer.json b/azure-storage-blob/composer.json index b74c369e..3f9cf74f 100644 --- a/azure-storage-blob/composer.json +++ b/azure-storage-blob/composer.json @@ -1,6 +1,6 @@ { "name": "microsoft/azure-storage-blob", - "version": "1.5.2", + "version": "1.5.3", "description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage Blob APIs.", "keywords": [ "php", "azure", "storage", "sdk", "blob" ], "license": "MIT", diff --git a/azure-storage-blob/src/Blob/Internal/BlobResources.php b/azure-storage-blob/src/Blob/Internal/BlobResources.php index 73eb34ba..d1a9c527 100644 --- a/azure-storage-blob/src/Blob/Internal/BlobResources.php +++ b/azure-storage-blob/src/Blob/Internal/BlobResources.php @@ -41,7 +41,7 @@ class BlobResources extends Resources { // @codingStandardsIgnoreStart - const BLOB_SDK_VERSION = '1.5.2'; + const BLOB_SDK_VERSION = '1.5.3'; const STORAGE_API_LATEST_VERSION = '2017-11-09'; // Error messages diff --git a/azure-storage-common/ChangeLog.md b/azure-storage-common/ChangeLog.md index 0f3418b8..703da4ef 100644 --- a/azure-storage-common/ChangeLog.md +++ b/azure-storage-common/ChangeLog.md @@ -1,3 +1,12 @@ +2020.12 - version 1.5.2 +* Added support for guzzle 7.3. +* Resolve some warnings when calling `Psr7\stream_for`, uses `Utils::streamFor` instead. +* Added colon to non-UTC timestamps. +* Fixed type hint for `ServiceException::getResponse()`. +* Fixed random number range that might cause an overflow in the guid generation. +* Added logic to convert to exception when promise is rejected with string. +* Compares `strlen` result with an integer instead of string. + 2020.12 - version 1.5.1 * Guzzle version is now updated to support both 6.x and 7.x. diff --git a/azure-storage-common/composer.json b/azure-storage-common/composer.json index 8afe15c5..84db042c 100644 --- a/azure-storage-common/composer.json +++ b/azure-storage-common/composer.json @@ -1,6 +1,6 @@ { "name": "microsoft/azure-storage-common", - "version": "1.5.1", + "version": "1.5.2", "description": "This project provides a set of common code shared by Azure Storage Blob, Table, Queue and File PHP client libraries.", "keywords": [ "php", "azure", "storage", "sdk", "common" ], "license": "MIT", diff --git a/azure-storage-common/src/Common/Internal/Resources.php b/azure-storage-common/src/Common/Internal/Resources.php index 48128d4f..d3eff1cc 100644 --- a/azure-storage-common/src/Common/Internal/Resources.php +++ b/azure-storage-common/src/Common/Internal/Resources.php @@ -241,7 +241,7 @@ class Resources const BEARER = 'Bearer '; // Header values - const COMMON_SDK_VERSION = '1.5.1'; + const COMMON_SDK_VERSION = '1.5.2'; const INT32_MAX = 2147483647; const INT32_MIN = -2147483648; diff --git a/azure-storage-file/ChangeLog.md b/azure-storage-file/ChangeLog.md index 0d984761..928009f7 100644 --- a/azure-storage-file/ChangeLog.md +++ b/azure-storage-file/ChangeLog.md @@ -1,3 +1,6 @@ +2020.12 - version 1.2.5 +* Upgraded dependency for `azure-storage-common` to version 1.5.2. + 2020.12 - version 1.2.4 * Fixed an issue where 400 is reported for some curl versions. * Guzzle version is now updated to support both 6.x and 7.x. diff --git a/azure-storage-file/composer.json b/azure-storage-file/composer.json index 7f84c7a1..9c545700 100644 --- a/azure-storage-file/composer.json +++ b/azure-storage-file/composer.json @@ -1,6 +1,6 @@ { "name": "microsoft/azure-storage-file", - "version": "1.2.4", + "version": "1.2.5", "description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage File APIs.", "keywords": [ "php", "azure", "storage", "sdk", "file" ], "license": "MIT", diff --git a/azure-storage-file/src/File/Internal/FileResources.php b/azure-storage-file/src/File/Internal/FileResources.php index 9af7e31d..d55d9652 100644 --- a/azure-storage-file/src/File/Internal/FileResources.php +++ b/azure-storage-file/src/File/Internal/FileResources.php @@ -41,7 +41,7 @@ class FileResources extends Resources { // @codingStandardsIgnoreStart - const FILE_SDK_VERSION = '1.2.4'; + const FILE_SDK_VERSION = '1.2.5'; const STORAGE_API_LATEST_VERSION = '2016-05-31'; // Error messages diff --git a/azure-storage-queue/ChangeLog.md b/azure-storage-queue/ChangeLog.md index 788be5c5..7d3021bb 100644 --- a/azure-storage-queue/ChangeLog.md +++ b/azure-storage-queue/ChangeLog.md @@ -1,3 +1,6 @@ +2020.12 - version 1.3.4 +* Upgraded dependency for `azure-storage-common` to version 1.5.2. + 2020.12 - version 1.3.3 * Guzzle version is now updated to support both 6.x and 7.x. diff --git a/azure-storage-queue/composer.json b/azure-storage-queue/composer.json index 51a340de..86c4b575 100644 --- a/azure-storage-queue/composer.json +++ b/azure-storage-queue/composer.json @@ -1,6 +1,6 @@ { "name": "microsoft/azure-storage-queue", - "version": "1.3.3", + "version": "1.3.4", "description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage Queue APIs.", "keywords": [ "php", "azure", "storage", "sdk", "queue" ], "license": "MIT", diff --git a/azure-storage-queue/src/Queue/Internal/QueueResources.php b/azure-storage-queue/src/Queue/Internal/QueueResources.php index 093b274a..1d98a567 100644 --- a/azure-storage-queue/src/Queue/Internal/QueueResources.php +++ b/azure-storage-queue/src/Queue/Internal/QueueResources.php @@ -41,7 +41,7 @@ class QueueResources extends Resources { // @codingStandardsIgnoreStart - const QUEUE_SDK_VERSION = '1.3.3'; + const QUEUE_SDK_VERSION = '1.3.4'; const STORAGE_API_LATEST_VERSION = '2017-11-09'; // Error messages diff --git a/azure-storage-table/ChangeLog.md b/azure-storage-table/ChangeLog.md index 5a426c46..b5dffa65 100644 --- a/azure-storage-table/ChangeLog.md +++ b/azure-storage-table/ChangeLog.md @@ -1,3 +1,8 @@ +2020.12 - version 1.1.5 +* Upgraded dependency for `azure-storage-common` to version 1.5.2. +* Fixed a bug where `QueryEnttitiesResult` with a null `NextRowKey` won't work. +* Return integer from a sorting callback, not bool. + 2020.12 - version 1.1.4 * Guzzle version is now updated to support both 6.x and 7.x. diff --git a/azure-storage-table/composer.json b/azure-storage-table/composer.json index 377823ee..cb04fd44 100644 --- a/azure-storage-table/composer.json +++ b/azure-storage-table/composer.json @@ -1,6 +1,6 @@ { "name": "microsoft/azure-storage-table", - "version": "1.1.4", + "version": "1.1.5", "description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage Table APIs.", "keywords": [ "php", "azure", "storage", "sdk", "table" ], "license": "MIT", diff --git a/azure-storage-table/src/Table/Internal/TableResources.php b/azure-storage-table/src/Table/Internal/TableResources.php index c1ba9c67..4ed0f3a6 100644 --- a/azure-storage-table/src/Table/Internal/TableResources.php +++ b/azure-storage-table/src/Table/Internal/TableResources.php @@ -41,7 +41,7 @@ class TableResources extends Resources { // @codingStandardsIgnoreStart - const TABLE_SDK_VERSION = '1.1.4'; + const TABLE_SDK_VERSION = '1.1.5'; const STORAGE_API_LATEST_VERSION = '2016-05-31'; const DATA_SERVICE_VERSION_VALUE = '3.0'; From 092af67ef3ea351270355dd5cec57697a85a4ed8 Mon Sep 17 00:00:00 2001 From: Tank Tang Date: Thu, 9 Sep 2021 16:49:28 +0800 Subject: [PATCH 2/2] Changed release time --- azure-storage-common/ChangeLog.md | 2 +- azure-storage-file/ChangeLog.md | 2 +- azure-storage-queue/ChangeLog.md | 2 +- azure-storage-table/ChangeLog.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-storage-common/ChangeLog.md b/azure-storage-common/ChangeLog.md index 703da4ef..00885e97 100644 --- a/azure-storage-common/ChangeLog.md +++ b/azure-storage-common/ChangeLog.md @@ -1,4 +1,4 @@ -2020.12 - version 1.5.2 +2021.09 - version 1.5.2 * Added support for guzzle 7.3. * Resolve some warnings when calling `Psr7\stream_for`, uses `Utils::streamFor` instead. * Added colon to non-UTC timestamps. diff --git a/azure-storage-file/ChangeLog.md b/azure-storage-file/ChangeLog.md index 928009f7..9f2b719a 100644 --- a/azure-storage-file/ChangeLog.md +++ b/azure-storage-file/ChangeLog.md @@ -1,4 +1,4 @@ -2020.12 - version 1.2.5 +2021.09 - version 1.2.5 * Upgraded dependency for `azure-storage-common` to version 1.5.2. 2020.12 - version 1.2.4 diff --git a/azure-storage-queue/ChangeLog.md b/azure-storage-queue/ChangeLog.md index 7d3021bb..1e0941a6 100644 --- a/azure-storage-queue/ChangeLog.md +++ b/azure-storage-queue/ChangeLog.md @@ -1,4 +1,4 @@ -2020.12 - version 1.3.4 +2021.09 - version 1.3.4 * Upgraded dependency for `azure-storage-common` to version 1.5.2. 2020.12 - version 1.3.3 diff --git a/azure-storage-table/ChangeLog.md b/azure-storage-table/ChangeLog.md index b5dffa65..2d24c6b5 100644 --- a/azure-storage-table/ChangeLog.md +++ b/azure-storage-table/ChangeLog.md @@ -1,4 +1,4 @@ -2020.12 - version 1.1.5 +2021.09 - version 1.1.5 * Upgraded dependency for `azure-storage-common` to version 1.5.2. * Fixed a bug where `QueryEnttitiesResult` with a null `NextRowKey` won't work. * Return integer from a sorting callback, not bool.