Skip to content

Commit

Permalink
source code copied from azure-storage-php for v1.3.2-queue release
Browse files Browse the repository at this point in the history
  • Loading branch information
vinjiang committed Aug 28, 2020
1 parent c85f9c6 commit e4be8a7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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.3.2
* Lower case query parameter names.

2020.01 - version 1.3.1
* Fixed the issue in SAS token where special characters were not correctly encoded.

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-queue",
"version": "1.3.1",
"version": "1.3.2",
"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",
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
2 changes: 1 addition & 1 deletion src/Queue/Internal/QueueResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class QueueResources extends Resources
{
// @codingStandardsIgnoreStart

const QUEUE_SDK_VERSION = '1.3.1';
const QUEUE_SDK_VERSION = '1.3.2';
const STORAGE_API_LATEST_VERSION = '2017-11-09';

// Error messages
Expand Down
6 changes: 3 additions & 3 deletions src/Queue/QueueRestProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,12 +231,12 @@ public function listQueuesAsync(ListQueuesOptions $options = null)
$marker = $options->getNextMarker();

$this->addOptionalQueryParam($queryParams, Resources::QP_COMP, 'list');
$this->addOptionalQueryParam($queryParams, Resources::QP_PREFIX, $prefix);
$this->addOptionalQueryParam($queryParams, Resources::QP_MARKER, $marker);
$this->addOptionalQueryParam($queryParams, Resources::QP_PREFIX_LOWERCASE, $prefix);
$this->addOptionalQueryParam($queryParams, Resources::QP_MARKER_LOWERCASE, $marker);
$this->addOptionalQueryParam($queryParams, Resources::QP_INCLUDE, $include);
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_MAX_RESULTS,
Resources::QP_MAX_RESULTS_LOWERCASE,
$maxResults
);

Expand Down

0 comments on commit e4be8a7

Please sign in to comment.