Skip to content

Commit

Permalink
Version 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Mar 12, 2018
1 parent ec70fce commit 3f76261
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,38 @@

1.9.0 / 2018-03-12
==================

New functionality and features
------------------------------

* Add `delete_derived_by_transformation` API
* Add `remove_all_tags` to `Uploader`
* Add `resources_by_context` to `Api`
* Add `access_control` parameter to uploader `upload` and api `update`
* Support remote URLs in upload_large API
* Add `transformations` parameter to delete_resources APIs
* Support `quality_override` param for `update` and `explicit` api
* Adding Streaming Profile to transformation.
* Add URL suffix support for image/authenticated, video/upload
* Remove restriction of URL suffix in shared CDN
* Support string $public_ids parameter in `delete_derived_by_transformation`
* Support `0` and `0.0` in `norm_range_value` function. Fixes #64 (#97)

Other Changes
-------------

* Improve PSR-2 compliance (#101)
* Add `next_cursor` test of `transformation()` API
* Add `encode_array_to_json`
* Fix encoding of attributes and url in html tags. Fixes #87
* Add PHP versions to TravisCI setup
* Add a test of streaming_profile parameter
* Fix Categorization test
* Add `UNIQUE_TEST_ID` to test helper
* Remove `test_auto_tagging` unit test (#95)
* Update Readme.md for setup with composer
* Remove unreachable code. Fixes #66

1.8.0 / 2017-05-03
==================

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudinary/cloudinary_php",
"version": "1.8.0",
"version": "1.9.0",
"description": "Cloudinary PHP SDK",
"keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"],
"type": "library",
Expand Down
4 changes: 2 additions & 2 deletions src/Cloudinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ class Cloudinary
const RANGE_VALUE_RE = '/^(?P<value>(\d+\.)?\d+)(?P<modifier>[%pP])?$/';
const RANGE_RE = '/^(\d+\.)?\d+[%pP]?\.\.(\d+\.)?\d+[%pP]?$/';

const VERSION = "1.8.0";
const VERSION = "1.9.0";
/** @internal Do not change this value */
const USER_AGENT = "CloudinaryPHP/1.8.0";
const USER_AGENT = "CloudinaryPHP/1.9.0";

/**
* Additional information to be passed with the USER_AGENT, e.g. "CloudinaryMagento/1.0.1".
Expand Down

0 comments on commit 3f76261

Please sign in to comment.