Skip to content

Commit 3f76261

Browse files
author
Amir Tocker
committed
Version 1.9.0
1 parent ec70fce commit 3f76261

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
11

2+
1.9.0 / 2018-03-12
3+
==================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Add `delete_derived_by_transformation` API
9+
* Add `remove_all_tags` to `Uploader`
10+
* Add `resources_by_context` to `Api`
11+
* Add `access_control` parameter to uploader `upload` and api `update`
12+
* Support remote URLs in upload_large API
13+
* Add `transformations` parameter to delete_resources APIs
14+
* Support `quality_override` param for `update` and `explicit` api
15+
* Adding Streaming Profile to transformation.
16+
* Add URL suffix support for image/authenticated, video/upload
17+
* Remove restriction of URL suffix in shared CDN
18+
* Support string $public_ids parameter in `delete_derived_by_transformation`
19+
* Support `0` and `0.0` in `norm_range_value` function. Fixes #64 (#97)
20+
21+
Other Changes
22+
-------------
23+
24+
* Improve PSR-2 compliance (#101)
25+
* Add `next_cursor` test of `transformation()` API
26+
* Add `encode_array_to_json`
27+
* Fix encoding of attributes and url in html tags. Fixes #87
28+
* Add PHP versions to TravisCI setup
29+
* Add a test of streaming_profile parameter
30+
* Fix Categorization test
31+
* Add `UNIQUE_TEST_ID` to test helper
32+
* Remove `test_auto_tagging` unit test (#95)
33+
* Update Readme.md for setup with composer
34+
* Remove unreachable code. Fixes #66
35+
236
1.8.0 / 2017-05-03
337
==================
438

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloudinary/cloudinary_php",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "Cloudinary PHP SDK",
55
"keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"],
66
"type": "library",

src/Cloudinary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ class Cloudinary
1111
const RANGE_VALUE_RE = '/^(?P<value>(\d+\.)?\d+)(?P<modifier>[%pP])?$/';
1212
const RANGE_RE = '/^(\d+\.)?\d+[%pP]?\.\.(\d+\.)?\d+[%pP]?$/';
1313

14-
const VERSION = "1.8.0";
14+
const VERSION = "1.9.0";
1515
/** @internal Do not change this value */
16-
const USER_AGENT = "CloudinaryPHP/1.8.0";
16+
const USER_AGENT = "CloudinaryPHP/1.9.0";
1717

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

0 commit comments

Comments
 (0)