Skip to content

Commit

Permalink
source code copied from azure-storage-php for v1.5.1-blob release
Browse files Browse the repository at this point in the history
  • Loading branch information
vinjiang committed Aug 28, 2020
1 parent 6a333cd commit 44f9268
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020.08 - version 1.5.1
* Lower case query parameter names.

2020.01 - version 1.5.0

* Added support to include deleted in blob list.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-blob",
"version": "1.5.0",
"version": "1.5.1",
"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 All @@ -12,7 +12,7 @@
],
"require": {
"php": ">=5.6.0",
"microsoft/azure-storage-common": "~1.4"
"microsoft/azure-storage-common": "~1.5"
},
"autoload": {
"psr-4": {
Expand Down
12 changes: 6 additions & 6 deletions src/Blob/BlobRestProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -864,17 +864,17 @@ public function listContainersAsync(
);
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_PREFIX,
Resources::QP_PREFIX_LOWERCASE,
$options->getPrefix()
);
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_MARKER,
Resources::QP_MARKER_LOWERCASE,
$options->getNextMarker()
);
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_MAX_RESULTS,
Resources::QP_MAX_RESULTS_LOWERCASE,
$options->getMaxResults()
);
$isInclude = $options->getIncludeMetadata();
Expand Down Expand Up @@ -1522,12 +1522,12 @@ public function listBlobsAsync(
);
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_PREFIX,
Resources::QP_PREFIX_LOWERCASE,
str_replace('\\', '/', $options->getPrefix())
);
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_MARKER,
Resources::QP_MARKER_LOWERCASE,
$options->getNextMarker()
);
$this->addOptionalQueryParam(
Expand All @@ -1537,7 +1537,7 @@ public function listBlobsAsync(
);
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_MAX_RESULTS,
Resources::QP_MAX_RESULTS_LOWERCASE,
$options->getMaxResults()
);

Expand Down
2 changes: 1 addition & 1 deletion 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.0';
const BLOB_SDK_VERSION = '1.5.1';
const STORAGE_API_LATEST_VERSION = '2017-11-09';

// Error messages
Expand Down

0 comments on commit 44f9268

Please sign in to comment.