diff --git a/ChangeLog.md b/ChangeLog.md index feb1814ec..d8dc0d23a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,4 @@ -2017.03 - version 0.14.0 +2017.04 - version 0.14.0 ALL * Improved the documentation. @@ -13,10 +13,21 @@ ALL - `MicrosoftAzure\Storage\Common\Internal\Middlewares\MiddlewareBase` was moved to `MicrosoftAzure\Storage\Common\Middlewares\MiddlewareBase` - `MicrosoftAzure\Storage\Common\Internal\RetryMiddlewareFactory` was moved to `MicrosoftAzure\Storage\Common\Middlewares\RetryMiddlewareFactory` * Added Cross-Origin Resource Sharing (CORS) support. Now setting service properties can set CORS rules at the same time. +* Added support for account-level Shared Access Signature generation. +* Resolved an error reported from some IDEs about the phpcs.xml. +* Fixed multiple test issues. Blob * Added API `createPageBlobFromContent` to support creating page blob directly from contents which includes local file, stream, etc... * Added support for append blob. +* Added support for Container ACL. + +Queue +* Added support for Queue ACL. + +Table +* Added support for Table ACL. +* Fixed an issue that user could not set entity type to be double and integer as a value for PHP 7 2017.02 - version 0.13.0 diff --git a/src/Common/Internal/Resources.php b/src/Common/Internal/Resources.php index b55076d2e..af855c5ce 100644 --- a/src/Common/Internal/Resources.php +++ b/src/Common/Internal/Resources.php @@ -255,7 +255,7 @@ class Resources const DEAFULT_RETRY_INTERVAL = 1000;//Milliseconds // Header values - const SDK_VERSION = '0.13.0'; + const SDK_VERSION = '0.14.0'; const STORAGE_API_LATEST_VERSION = '2015-04-05'; const DATA_SERVICE_VERSION_VALUE = '1.0;NetFx'; const MAX_DATA_SERVICE_VERSION_VALUE = '2.0;NetFx';