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

Commit 80b9cb4

Browse files
katmsftvinjiang
authored andcommitted
Version and Changelog update
1 parent f729f60 commit 80b9cb4

12 files changed

Lines changed: 26 additions & 11 deletions

File tree

azure-storage-blob/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019.03 - version 1.3.0
2+
* Fixed a bug where blob name '0' cannot be created.
3+
* Documentation refinement.
4+
* `ListContainer` now can have ETag more robustly fetched from response header.
5+
16
2018.08 - version 1.2.0
27

38
* Updated Azure Storage API version from 2016-05-31 to 2017-04-17.

azure-storage-blob/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft/azure-storage-blob",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
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",
@@ -12,7 +12,7 @@
1212
],
1313
"require": {
1414
"php": ">=5.6.0",
15-
"microsoft/azure-storage-common": "~1.2.0"
15+
"microsoft/azure-storage-common": "~1.3.0"
1616
},
1717
"autoload": {
1818
"psr-4": {

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.2.0';
44+
const BLOB_SDK_VERSION = '1.3.0';
4545
const STORAGE_API_LATEST_VERSION = '2017-04-17';
4646

4747
// Error messages

azure-storage-common/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019.03 - version 1.3.0
2+
* Documentation refinement.
3+
14
2018.08 - version 1.2.0
25

36
* Fixed a bug `generateCanonicalResource` returns an empty string if `$resource` starts with "/".

azure-storage-common/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-common",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "This project provides a set of common code shared by Azure Storage Blob, Table, Queue and File PHP client libraries.",
55
"keywords": [ "php", "azure", "storage", "sdk", "common" ],
66
"license": "MIT",

azure-storage-common/src/Common/Internal/Resources.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ class Resources
237237
const DEFAULT_RETRY_INTERVAL = 1000;//Milliseconds
238238

239239
// Header values
240-
const COMMON_SDK_VERSION = '1.2.0';
240+
const COMMON_SDK_VERSION = '1.3.0';
241241
const INT32_MAX = 2147483647;
242242
const INT32_MIN = -2147483648;
243243

azure-storage-file/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2019.03 - version 1.2.0
2+
* Fixed a bug where file name '0' cannot be created.
3+
* Documentation refinement.
4+
15
2018.04 - version 1.1.0
26

37
* MD files are modified for better readability and formatting.

azure-storage-file/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft/azure-storage-file",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage File APIs.",
55
"keywords": [ "php", "azure", "storage", "sdk", "file" ],
66
"license": "MIT",
@@ -12,7 +12,7 @@
1212
],
1313
"require": {
1414
"php": ">=5.6.0",
15-
"microsoft/azure-storage-common": "~1.1"
15+
"microsoft/azure-storage-common": "~1.3"
1616
},
1717
"autoload": {
1818
"psr-4": {

azure-storage-file/src/File/Internal/FileResources.php

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

44-
const FILE_SDK_VERSION = '1.1.0';
44+
const FILE_SDK_VERSION = '1.2.0';
4545
const STORAGE_API_LATEST_VERSION = '2016-05-31';
4646

4747
// Error messages

azure-storage-queue/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019.03 - version 1.2.0
2+
* Documentation refinement.
3+
14
2018.08 - version 1.1.1
25

36
* Fixed a bug in documents that `getMessageId` method should return string instead of integer.

0 commit comments

Comments
 (0)