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

Commit

Permalink
Merge pull request #316 from katmsft/doc
Browse files Browse the repository at this point in the history
  • Loading branch information
katmsft authored Sep 9, 2021
2 parents ee935e8 + 092af67 commit 2930b73
Show file tree
Hide file tree
Showing 15 changed files with 35 additions and 10 deletions.
5 changes: 5 additions & 0 deletions azure-storage-blob/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2021.09 - version 1.5.3
* Upgraded dependency for `azure-storage-common` to version 1.5.2.
* Resolved some interface inconsistency between `IBlob`/`BlobRestProxy`.
* Imported `Psr\Http\Message\StreamInterface` in `IBlob`.

2020.12 - version 1.5.2
* Resolved an issue where access condition does not work for large block blob uploads.
* Guzzle version is now updated to support both 6.x and 7.x.
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.2",
"version": "1.5.3",
"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.2';
const BLOB_SDK_VERSION = '1.5.3';
const STORAGE_API_LATEST_VERSION = '2017-11-09';

// Error messages
Expand Down
9 changes: 9 additions & 0 deletions azure-storage-common/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2021.09 - version 1.5.2
* Added support for guzzle 7.3.
* Resolve some warnings when calling `Psr7\stream_for`, uses `Utils::streamFor` instead.
* Added colon to non-UTC timestamps.
* Fixed type hint for `ServiceException::getResponse()`.
* Fixed random number range that might cause an overflow in the guid generation.
* Added logic to convert to exception when promise is rejected with string.
* Compares `strlen` result with an integer instead of string.

2020.12 - version 1.5.1
* Guzzle version is now updated to support both 6.x and 7.x.

Expand Down
2 changes: 1 addition & 1 deletion azure-storage-common/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-common",
"version": "1.5.1",
"version": "1.5.2",
"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",
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-common/src/Common/Internal/Resources.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class Resources
const BEARER = 'Bearer ';

// Header values
const COMMON_SDK_VERSION = '1.5.1';
const COMMON_SDK_VERSION = '1.5.2';
const INT32_MAX = 2147483647;
const INT32_MIN = -2147483648;

Expand Down
3 changes: 3 additions & 0 deletions azure-storage-file/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2021.09 - version 1.2.5
* Upgraded dependency for `azure-storage-common` to version 1.5.2.

2020.12 - version 1.2.4
* Fixed an issue where 400 is reported for some curl versions.
* Guzzle version is now updated to support both 6.x and 7.x.
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-file/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-file",
"version": "1.2.4",
"version": "1.2.5",
"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",
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-file/src/File/Internal/FileResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class FileResources extends Resources
{
// @codingStandardsIgnoreStart

const FILE_SDK_VERSION = '1.2.4';
const FILE_SDK_VERSION = '1.2.5';
const STORAGE_API_LATEST_VERSION = '2016-05-31';

// Error messages
Expand Down
3 changes: 3 additions & 0 deletions azure-storage-queue/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2021.09 - version 1.3.4
* Upgraded dependency for `azure-storage-common` to version 1.5.2.

2020.12 - version 1.3.3
* Guzzle version is now updated to support both 6.x and 7.x.

Expand Down
2 changes: 1 addition & 1 deletion azure-storage-queue/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-queue",
"version": "1.3.3",
"version": "1.3.4",
"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 Down
2 changes: 1 addition & 1 deletion azure-storage-queue/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.3';
const QUEUE_SDK_VERSION = '1.3.4';
const STORAGE_API_LATEST_VERSION = '2017-11-09';

// Error messages
Expand Down
5 changes: 5 additions & 0 deletions azure-storage-table/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
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.
* Return integer from a sorting callback, not bool.

2020.12 - version 1.1.4
* Guzzle version is now updated to support both 6.x and 7.x.

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.4",
"version": "1.1.5",
"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.4';
const TABLE_SDK_VERSION = '1.1.5';
const STORAGE_API_LATEST_VERSION = '2016-05-31';

const DATA_SERVICE_VERSION_VALUE = '3.0';
Expand Down

0 comments on commit 2930b73

Please sign in to comment.