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

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
vinjiang committed Sep 2, 2022
2 parents 03bea20 + 6375364 commit 4138bfc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions azure-storage-blob/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2022.08 - version 1.5.4
* Check `$copyProgress` is not null before using it in `strpos`.

2021.09 - version 1.5.3
* Upgraded dependency for `azure-storage-common` to version 1.5.2.
* Resolved some interface inconsistency between `IBlob`/`BlobRestProxy`.
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-blob/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-blob",
"version": "1.5.3",
"version": "1.5.4",
"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",
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-blob/src/Blob/Internal/BlobResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class BlobResources extends Resources
{
// @codingStandardsIgnoreStart

const BLOB_SDK_VERSION = '1.5.3';
const BLOB_SDK_VERSION = '1.5.4';
const STORAGE_API_LATEST_VERSION = '2017-11-09';

// Error messages
Expand Down
3 changes: 3 additions & 0 deletions azure-storage-table/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2022.08 - version 1.1.6
* Removed EOL from Content-Type header in batch API.

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.
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-table/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-table",
"version": "1.1.5",
"version": "1.1.6",
"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",
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-table/src/Table/Internal/TableResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class TableResources extends Resources
{
// @codingStandardsIgnoreStart

const TABLE_SDK_VERSION = '1.1.5';
const TABLE_SDK_VERSION = '1.1.6';
const STORAGE_API_LATEST_VERSION = '2016-05-31';

const DATA_SERVICE_VERSION_VALUE = '3.0';
Expand Down

0 comments on commit 4138bfc

Please sign in to comment.