diff --git a/azure-storage-blob/ChangeLog.md b/azure-storage-blob/ChangeLog.md index 6fbdd8b27..4f87f40bd 100644 --- a/azure-storage-blob/ChangeLog.md +++ b/azure-storage-blob/ChangeLog.md @@ -1,3 +1,7 @@ +2020.12 - version 1.5.2 +* Resolved an issue where access condition does not work for large block blob uploads. +* Guzzle version is no updated to support both 6.x and 7.x. + 2020.08 - version 1.5.1 * Lower case query parameter names. diff --git a/azure-storage-blob/composer.json b/azure-storage-blob/composer.json index 9a26c787a..b74c369e7 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.1", + "version": "1.5.2", "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 ec736e4f5..73eb34ba9 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.1'; + const BLOB_SDK_VERSION = '1.5.2'; 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 bc914f8ab..ac86ba05e 100644 --- a/azure-storage-common/ChangeLog.md +++ b/azure-storage-common/ChangeLog.md @@ -1,3 +1,6 @@ +2020.12 - version 1.5.1 +* Guzzle version is no updated to support both 6.x and 7.x. + 2020.08 - version 1.5.0 * Resolved TLS 1.2 issue and some test issues. * Check $uri null type before array/string access. diff --git a/azure-storage-common/composer.json b/azure-storage-common/composer.json index a62156040..3e94b8dfc 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.0", + "version": "1.5.1", "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 e6ba09709..48128d4f1 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.0'; + const COMMON_SDK_VERSION = '1.5.1'; const INT32_MAX = 2147483647; const INT32_MIN = -2147483648; diff --git a/azure-storage-file/ChangeLog.md b/azure-storage-file/ChangeLog.md index a3b84b1bf..d6881183d 100644 --- a/azure-storage-file/ChangeLog.md +++ b/azure-storage-file/ChangeLog.md @@ -1,3 +1,7 @@ +2020.12 - version 1.2.4 +* Fixed an issue where 400 is reported for some curl versions. +* Guzzle version is no updated to support both 6.x and 7.x. + 2020.08 - version 1.2.3 * Lower case query parameter names. diff --git a/azure-storage-file/composer.json b/azure-storage-file/composer.json index f5c109934..7f84c7a14 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.3", + "version": "1.2.4", "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 0e42eb24b..9af7e31dc 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.3'; + const FILE_SDK_VERSION = '1.2.4'; 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 c4052e481..ad7428f01 100644 --- a/azure-storage-queue/ChangeLog.md +++ b/azure-storage-queue/ChangeLog.md @@ -1,3 +1,6 @@ +2020.12 - version 1.3.3 +* Guzzle version is no updated to support both 6.x and 7.x. + 2020.08 - version 1.3.2 * Lower case query parameter names. diff --git a/azure-storage-queue/composer.json b/azure-storage-queue/composer.json index 594d1cc24..51a340def 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.2", + "version": "1.3.3", "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 b3a0cd1bc..093b274a0 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.2'; + const QUEUE_SDK_VERSION = '1.3.3'; 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 83c0ba476..01d6e38c1 100644 --- a/azure-storage-table/ChangeLog.md +++ b/azure-storage-table/ChangeLog.md @@ -1,3 +1,6 @@ +2020.12 - version 1.1.4 +* Guzzle version is no updated to support both 6.x and 7.x. + 2020.08 - version 1.1.3 * Lower case query parameter names. diff --git a/azure-storage-table/composer.json b/azure-storage-table/composer.json index 7bdbd584c..377823eed 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.3", + "version": "1.1.4", "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 ce97a125e..c1ba9c679 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.3'; + const TABLE_SDK_VERSION = '1.1.4'; const STORAGE_API_LATEST_VERSION = '2016-05-31'; const DATA_SERVICE_VERSION_VALUE = '3.0';