Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.

Commit 4138bfc

Browse files
committed
Merge branch 'master' into dev
2 parents 03bea20 + 6375364 commit 4138bfc

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

azure-storage-blob/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022.08 - version 1.5.4
2+
* Check `$copyProgress` is not null before using it in `strpos`.
3+
14
2021.09 - version 1.5.3
25
* Upgraded dependency for `azure-storage-common` to version 1.5.2.
36
* Resolved some interface inconsistency between `IBlob`/`BlobRestProxy`.

azure-storage-blob/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft/azure-storage-blob",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage Blob APIs.",
55
"keywords": [ "php", "azure", "storage", "sdk", "blob" ],
66
"license": "MIT",

azure-storage-blob/src/Blob/Internal/BlobResources.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class BlobResources extends Resources
4141
{
4242
// @codingStandardsIgnoreStart
4343

44-
const BLOB_SDK_VERSION = '1.5.3';
44+
const BLOB_SDK_VERSION = '1.5.4';
4545
const STORAGE_API_LATEST_VERSION = '2017-11-09';
4646

4747
// Error messages

azure-storage-table/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022.08 - version 1.1.6
2+
* Removed EOL from Content-Type header in batch API.
3+
14
2021.09 - version 1.1.5
25
* Upgraded dependency for `azure-storage-common` to version 1.5.2.
36
* Fixed a bug where `QueryEnttitiesResult` with a null `NextRowKey` won't work.

azure-storage-table/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft/azure-storage-table",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage Table APIs.",
55
"keywords": [ "php", "azure", "storage", "sdk", "table" ],
66
"license": "MIT",

azure-storage-table/src/Table/Internal/TableResources.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class TableResources extends Resources
4141
{
4242
// @codingStandardsIgnoreStart
4343

44-
const TABLE_SDK_VERSION = '1.1.5';
44+
const TABLE_SDK_VERSION = '1.1.6';
4545
const STORAGE_API_LATEST_VERSION = '2016-05-31';
4646

4747
const DATA_SERVICE_VERSION_VALUE = '3.0';

0 commit comments

Comments
 (0)