From 4beb758746bd872d37ac3188da47508405527ca3 Mon Sep 17 00:00:00 2001 From: Amir Tocker Date: Sun, 9 Apr 2017 10:24:21 +0300 Subject: [PATCH] Version 1.7.0 --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ lib/cloudinary/version.rb | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d0d5067..18d62a69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,43 @@ +1.7.0 / 2017-04-09 +================== + +New functionality and features +------------------------------ + + * Added resource publishing API + * `Api.publish_by_prefix` + * `Api.publish_by_tag` + * `Api.publish_by_ids` + * Support remote URLs in `Uploader.upload_large` API + * Add missing parameters to generate-archive + * `skip_transformation_name` + * `allow_missing` + * Added context API methods + * `Api.add_context` + * `Api.remove_all_context` + * Added `Uploader.remove_all_tags` method + * Support URL SEO suffix for authenticated images + * Add support of "format" parameter to responsive-breakpoints hash + * Add notification_url to update API + + +Other Changes +------------- + + * Remove tag from test + * Change test criteria from changing versions to bytes + * Use `TRAVIS_JOB_ID` if available or random. Move auth test constants to spec_helper. + * Add test for deleting public IDs which contain commas + * Move expression and replacement to constants + * Don't normalize negative numbers + * Added generic aliasing to methods named with image + * Added Private annotation to certain utility methods + * Add `encode_context` method to `Utils` + * Escape = and | characters in context values + test + * Add more complex eager test cases + * Switch alias_method_chain to alias_method to support Rails version >5.1 + 1.6.0 / 2017-03-08 ================== diff --git a/lib/cloudinary/version.rb b/lib/cloudinary/version.rb index 51dc7417..576ae20a 100644 --- a/lib/cloudinary/version.rb +++ b/lib/cloudinary/version.rb @@ -1,4 +1,4 @@ # Copyright Cloudinary module Cloudinary - VERSION = "1.6.0" + VERSION = "1.7.0" end