From d4c947f6728c339649a10999a6a6362e5c7b9490 Mon Sep 17 00:00:00 2001 From: Constantine Nathanson Date: Mon, 13 May 2019 17:27:40 +0300 Subject: [PATCH] Version 1.14.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ composer.json | 2 +- src/Cloudinary.php | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1daaacdf..d5505bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,26 @@ +1.14.0 / 2019-05-13 +=================== + +New functionality and features +------------------------------ + * Add `delete_folder` admin API + * Add `filename` parameter to `upload` API + * Add `derived_next_cursor` to `resource` admin API + * Add `SignatureVerifier` class + * Add `force_version` option to delivery urls + +Other Changes +------------- + * Fix notice message in `generate_sprite` method + * Fix acl and url escaping in auth_token generation + * Ignore URL in AuthToken generation if ACL is provided + * Fix base64 regex validation template + * Add support of PHP 7.3 + * Improve error handling when trying to upload non-existing file. + * Add `test_secure_distribution_from_config` unit test + * Remove redundant quotes in `update_version.sh` + 1.13.0 / 2018-12-16 =================== diff --git a/composer.json b/composer.json index 5fb07f61..dd1ac7ae 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "cloudinary/cloudinary_php", - "version": "1.13.0", + "version": "1.14.0", "description": "Cloudinary PHP SDK", "keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"], "type": "library", diff --git a/src/Cloudinary.php b/src/Cloudinary.php index 396ef013..529329bf 100644 --- a/src/Cloudinary.php +++ b/src/Cloudinary.php @@ -12,7 +12,7 @@ class Cloudinary const RANGE_VALUE_RE = '/^(?P(\d+\.)?\d+)(?P[%pP])?$/'; const RANGE_RE = '/^(\d+\.)?\d+[%pP]?\.\.(\d+\.)?\d+[%pP]?$/'; - const VERSION = "1.13.0"; + const VERSION = "1.14.0"; /** * @internal