cloudinary 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +342 -142
- data/README.md +24 -7
- data/Rakefile +45 -19
- data/lib/cloudinary/carrier_wave/storage.rb +4 -1
- data/lib/cloudinary/helper.rb +2 -2
- data/lib/cloudinary/utils.rb +146 -30
- data/lib/cloudinary/version.rb +1 -1
- data/spec/spec_helper.rb +65 -6
- data/spec/utils_methods_spec.rb +3 -3
- data/spec/utils_spec.rb +437 -152
- data/spec/video_tag_spec.rb +1 -1
- data/spec/video_url_spec.rb +63 -22
- data/vendor/assets/html/cloudinary_cors.html +3 -7
- data/vendor/assets/javascripts/cloudinary/canvas-to-blob.min.js +1 -1
- data/vendor/assets/javascripts/cloudinary/jquery.cloudinary.js +3482 -1001
- data/vendor/assets/javascripts/cloudinary/jquery.fileupload-image.js +9 -3
- data/vendor/assets/javascripts/cloudinary/jquery.fileupload-process.js +5 -2
- data/vendor/assets/javascripts/cloudinary/jquery.fileupload-validate.js +6 -3
- data/vendor/assets/javascripts/cloudinary/jquery.fileupload.js +32 -15
- data/vendor/assets/javascripts/cloudinary/jquery.iframe-transport.js +5 -2
- data/vendor/assets/javascripts/cloudinary/jquery.ui.widget.js +29 -15
- data/vendor/assets/javascripts/cloudinary/load-image.all.min.js +1 -0
- data/vendor/assets/javascripts/cloudinary/processing.js +1 -1
- metadata +4 -4
- data/vendor/assets/javascripts/cloudinary/load-image.min.js +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffc7266645b3ced1d9e812359e5465c092a5d235
|
4
|
+
data.tar.gz: c88363381e77a8b0d564ff5166de4f3dce2d719a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0260293a3726a9e27105b5175cc6f9502e85e15c55e20f8d8fe128cff3a0401ce74dc2301d03184cf0494635a6ac30c47b85257806f713a21b48f7232de1e85
|
7
|
+
data.tar.gz: ebd11eb3dd9abe5f2e0c9ec30360c455a758d2bc4b0084989ed68d3d6af4cb0804b4d3725e38b92388b8d733560edc928e8326dd9afc5c5ce35821ef3e08bed5
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,34 @@
|
|
1
|
-
|
1
|
+
|
2
|
+
1.1.1 / 2015-12-04
|
3
|
+
==================
|
4
|
+
|
5
|
+
* Add support for **overlay** and **underlay** options.
|
6
|
+
* Add **correct escaping of text in layers**
|
7
|
+
* Escape layer text twice. Unescape parameters before signing URL.
|
8
|
+
* JavaScript
|
9
|
+
* Recode `fetch_assets` task to **fetch JS files from the latest *release* rather than mater.**
|
10
|
+
* Use new Cloudinary JS library release.
|
11
|
+
* Update Blueimp jQuery File Upload version.
|
12
|
+
* File `load-image.min.js` renamed `load-image.all.min.js`
|
13
|
+
* Tests
|
14
|
+
* Add RSpec matchers for Cloudinary URL
|
15
|
+
* Add `TEST_TAG`. Define failure message in `produce_url`. Replace 'test_cloudinary_url' with custom matchers.
|
16
|
+
* Add `to_be_served_by_cloudinary` matcher.
|
17
|
+
* Test signing with layers.
|
18
|
+
* Normalize values to string. Mark private methods as private.
|
19
|
+
* Merge pull request #171 from pdipietro/master
|
20
|
+
* if order changed for performance reasons; minor changes on Readme
|
21
|
+
* added **support for Neo4j** in carrierwave/storage
|
22
|
+
* Merge pull request #164 from ahastudio/readme-remove-wrong-prompts
|
23
|
+
* Remove prompts in ruby file.
|
24
|
+
* Merge pull request #39 from henrik/patch-1
|
25
|
+
* README: example of passing auth manually.
|
26
|
+
* Check definition and value of `::Rails::VERSION::MAJOR` and `::ActiveRecord::VERSION::MAJOR` instead of Rails.version etc. Fixes #154.
|
27
|
+
* Thanks @henrik, @pdipietro and @ahastudio!
|
28
|
+
|
29
|
+
1.1.0 - 2015-04-21
|
30
|
+
==================
|
31
|
+
|
2
32
|
* Pull request #136 - Update `process.rb` to ensure name value is an array.
|
3
33
|
* CarrierWave
|
4
34
|
* Store `resource_type` and `type` (aka `storage_type`) in carrierwave column for better support of non-image resource types and non-upload types
|
@@ -11,16 +41,22 @@
|
|
11
41
|
* Add `.gitignore` to each sample project. Add files required for testing.
|
12
42
|
* Fix changelog format (missing newline)
|
13
43
|
|
14
|
-
|
15
|
-
|
44
|
+
1.0.85 - 2015-04-08
|
45
|
+
==================
|
46
|
+
|
47
|
+
* Remove symoblize_keys intrusive implementation.
|
16
48
|
* Use upload API endpoint instead of upload_chunked.
|
17
49
|
|
18
|
-
|
50
|
+
1.0.84 - 2015-03-29
|
51
|
+
==================
|
52
|
+
|
19
53
|
* Fixed sources tag url.
|
20
54
|
* Added video thumbnail and video tags to the sample project.
|
21
|
-
* CHANGELOG renamed to CHANGELOG.md
|
55
|
+
* CHANGELOG renamed to CHANGELOG.md
|
56
|
+
|
57
|
+
1.0.83 - 2015-03-22
|
58
|
+
==================
|
22
59
|
|
23
|
-
# Version 1.0.83 - 2015-03-22
|
24
60
|
* Added Video Support
|
25
61
|
* `cl_video_tag` creates an HTML video tag with optionally inner `source` tags
|
26
62
|
* `cl_video_path` provides a url to the video resource
|
@@ -33,20 +69,28 @@
|
|
33
69
|
* Update Cloudinary's jQuery plugin to v1.0.22.
|
34
70
|
* Update .gitignore file
|
35
71
|
|
36
|
-
|
72
|
+
1.0.82 - 2015-02-05
|
73
|
+
==================
|
74
|
+
|
37
75
|
* Solve problem with CarrierWave integration to newer versions on the mongoid and carrierwave-mongoid gems.
|
38
|
-
* Enable root path for shared CDN:
|
76
|
+
* Enable root path for shared CDN:
|
39
77
|
* Modified restriction in utils so that it doesn't fail for root path with shared CDN.
|
40
78
|
* Added Object::present? predicate. Check if Object::present doesn't exist before defining it.
|
41
79
|
* Checking for `defined?(Rails)` is not enough if we want to invoke `Rails.version` etc. It was changed to `defined? Rails::version`.
|
42
80
|
|
43
|
-
|
81
|
+
1.0.81 - 2015-01-08
|
82
|
+
==================
|
83
|
+
|
44
84
|
* CarrierWave - support default_format if format is unknown, support arbitrary format for resource_type raw.
|
45
85
|
|
46
|
-
|
86
|
+
1.0.80 - 2015-01-01
|
87
|
+
==================
|
88
|
+
|
47
89
|
* Support upload_chunked direct upload for large raw files.
|
48
90
|
|
49
|
-
|
91
|
+
1.0.79 - 2014-12-11
|
92
|
+
==================
|
93
|
+
|
50
94
|
* Support folder listing API.
|
51
95
|
* Add support for conditional processing in CarrierWave plugin.
|
52
96
|
* Support tags in upload_large.
|
@@ -56,21 +100,31 @@
|
|
56
100
|
* Support for new domain sharding syntax and secure domain sharding. Support for secure_cdn_subdomain flag.
|
57
101
|
* Update Cloudinary's jQuery plugin to v1.0.21.
|
58
102
|
|
59
|
-
|
103
|
+
1.0.78 - 2014-11-04
|
104
|
+
==================
|
105
|
+
|
60
106
|
* Add app_root method that handled Rails.root, which is a String in old Rails versions.
|
61
107
|
* Issue [#127](https://github.com/cloudinary/cloudinary_gem/issues/127) - solve cyclical dependency in case cloudinary was included after Rails was initialized.
|
62
108
|
|
63
|
-
|
109
|
+
1.0.77 - 2014-09-22
|
110
|
+
==================
|
111
|
+
|
64
112
|
* Update Cloudinary's jQuery plugin to v1.0.20.
|
65
113
|
* Support invalidation in bulk deletion requests.
|
66
114
|
|
67
|
-
|
115
|
+
1.0.76 - 2014-08-24
|
116
|
+
==================
|
117
|
+
|
68
118
|
* Added supported image types for rake cloudinary:sync_static.
|
69
119
|
|
70
|
-
|
120
|
+
1.0.75 - 2014-07-30
|
121
|
+
==================
|
122
|
+
|
71
123
|
* Don't use Rails' image_tag for repsponsive/hidpi to prevent wrong alt and data URIs.
|
72
124
|
|
73
|
-
|
125
|
+
1.0.74 - 2014-07-14
|
126
|
+
==================
|
127
|
+
|
74
128
|
* Support custom_coordinates in upload and update. Support coordinates in resource details.
|
75
129
|
* Support delete_by_token for direct uploads.
|
76
130
|
* Support shorthand blank for cl_image_tag with responsive/hidpi.
|
@@ -79,7 +133,9 @@
|
|
79
133
|
* Support background removal upload and admin API parameter.
|
80
134
|
* Update Cloudinary's jQuery plugin to v1.0.19.
|
81
135
|
|
82
|
-
|
136
|
+
1.0.73 - 2014-06-30
|
137
|
+
==================
|
138
|
+
|
83
139
|
* Support dpr transformation parameter.
|
84
140
|
* Support automatic dpr (for HiDPI) and automatic width (for responsive).
|
85
141
|
* Accept timestamp parameter in upload method options.
|
@@ -89,275 +145,387 @@
|
|
89
145
|
* Make api_key and api_secret optional in unsigned upload.
|
90
146
|
* Support the case Rails is defined but Rails.root isn't.
|
91
147
|
|
92
|
-
|
148
|
+
1.0.72 - 2014-04-15
|
149
|
+
==================
|
150
|
+
|
93
151
|
* Fixing broken sign_request.
|
94
152
|
|
95
|
-
|
153
|
+
1.0.71 - 2014-04-15
|
154
|
+
==================
|
155
|
+
|
96
156
|
* Upload preset support.
|
97
157
|
* Unsigned upload support.
|
98
158
|
* phash upload parameter support.
|
99
159
|
* Resource listing by start_at support.
|
100
160
|
* Updating to jQuery plugin v1.0.14.
|
101
161
|
|
102
|
-
|
103
|
-
|
162
|
+
1.0.70 - 2014-03-25
|
163
|
+
==================
|
164
|
+
|
165
|
+
* Support upload_large without public_id.
|
104
166
|
* Remove public_id from method parameters.
|
105
167
|
* Backward compatibility for old upload_large API.
|
106
168
|
* Issue [#95](https://github.com/cloudinary/cloudinary_gem/issues/95) - exception when using storage_type :private
|
107
169
|
* Updating to jQuery plugin v1.0.13.
|
108
170
|
|
109
|
-
|
171
|
+
1.0.69 - 2014-02-25
|
172
|
+
==================
|
173
|
+
|
110
174
|
* Admin API update method.
|
111
175
|
* Admin API listing by moderation kind and status.
|
112
176
|
* Support moderation status in admin API listing.
|
113
|
-
* Support moderation flag in upload.
|
177
|
+
* Support moderation flag in upload.
|
114
178
|
* New upload and update API parameters: moderation, ocr, raw_conversion, categorization, detection, similarity_search and auto_tagging.
|
115
179
|
* Allow CloudinaryHelper to be included into standalone classes.
|
116
180
|
* Added support for Sequel models using CarrierWave.
|
117
181
|
|
118
|
-
|
182
|
+
1.0.68 - 2014-02-16
|
183
|
+
==================
|
184
|
+
|
119
185
|
* Support for uploading large raw files.
|
120
186
|
* Correct support for image_tag and image_path override.
|
121
187
|
* Add direction support to Admin API listings.
|
122
188
|
|
123
|
-
|
189
|
+
1.0.67 - 2014-01-09
|
190
|
+
==================
|
191
|
+
|
124
192
|
* Support specifying face coordinates in upload API.
|
125
|
-
* Support specifying context (currently alt and caption) in upload API and returning context in API.
|
193
|
+
* Support specifying context (currently alt and caption) in upload API and returning context in API.
|
126
194
|
* Support specifying allowed image formats in upload API.
|
127
195
|
* Support listing resources in admin API by multiple public IDs.
|
128
|
-
* Send User-Agent header with client library version in API request.
|
129
|
-
* Support for signed-URLs to override restricted dynamic URLs.
|
196
|
+
* Send User-Agent header with client library version in API request.
|
197
|
+
* Support for signed-URLs to override restricted dynamic URLs.
|
198
|
+
|
199
|
+
1.0.66 - 2013-11-14
|
200
|
+
==================
|
130
201
|
|
131
|
-
# Version 1.0.66 - 2013-11-14
|
132
202
|
* Support overwrite flag in upload
|
133
203
|
* Support tags flag in resources_by_tag
|
134
204
|
* Support for deletion cursor and delete all
|
135
205
|
|
136
|
-
|
206
|
+
1.0.65 - 2013-11-04
|
207
|
+
==================
|
208
|
+
|
137
209
|
* Support for unique_filename upload parameter
|
138
210
|
* Support the color parameter
|
139
211
|
* Support for uploading Pathname
|
140
212
|
* Support for stored files
|
141
213
|
* Updated Cloudinary's jQuery plugin to v1.0.11: Support color parameter
|
142
214
|
|
143
|
-
|
215
|
+
1.0.64 - 2013-10-17
|
216
|
+
==================
|
217
|
+
|
144
218
|
* Extracted upload_tag_params and upload_url from image_upload_tag. Extracted common code to sign_request.
|
145
219
|
* Updated Cloudinary's jQuery plugin to v1.0.10: Binding jQuery file upload events.
|
146
220
|
* Support line_spacing text parameter.
|
147
221
|
* Added code documentation for cl_image_tag.
|
148
222
|
|
149
|
-
|
223
|
+
1.0.63 - 2013-08-07
|
224
|
+
==================
|
225
|
+
|
150
226
|
* Support folder parameter.
|
151
|
-
* Escape non-http public_ids.
|
227
|
+
* Escape non-http public_ids.
|
152
228
|
* Correct escaping of space and '-'.
|
153
229
|
|
154
|
-
|
230
|
+
1.0.62 - 2013-07-30
|
231
|
+
==================
|
232
|
+
|
155
233
|
* Change secure urls to use *res.cloudinary.com.
|
156
|
-
|
157
|
-
|
234
|
+
|
235
|
+
1.0.61 - 2013-07-18
|
236
|
+
==================
|
237
|
+
|
158
238
|
* Mongoid 4 compatibility fix.
|
159
239
|
* Support raw data URI.
|
160
240
|
* Issue [#81](https://github.com/cloudinary/cloudinary_gem/issues/81) - Error on bootstrap + rails under Rails 4.
|
161
241
|
* Support admin ping API.
|
162
242
|
* Include updated jQuery plugin.
|
163
|
-
|
164
|
-
|
243
|
+
|
244
|
+
1.0.60 - 2013-07-01
|
245
|
+
==================
|
246
|
+
|
165
247
|
* Upgrade to latest jQuery file upload.
|
166
248
|
* Support whitelisted S3 URLs in upload.
|
167
|
-
|
168
|
-
|
249
|
+
|
250
|
+
1.0.59 - 2013-06-13
|
251
|
+
==================
|
252
|
+
|
169
253
|
* Support discard_original_filename.
|
170
254
|
* Support proxy parameter in upload.
|
171
255
|
|
172
|
-
|
256
|
+
1.0.58 - 2013-05-16
|
257
|
+
==================
|
258
|
+
|
173
259
|
* cloudinary_url helper should protect options from modification.
|
174
260
|
* Add jpc jp2 psd to list of support image formats.
|
175
261
|
* Crop mode lfill support.
|
176
|
-
|
177
|
-
|
178
|
-
|
262
|
+
|
263
|
+
1.0.57 - 2013-05-01
|
264
|
+
==================
|
265
|
+
|
266
|
+
* Allow my_public_id to be called from versions.
|
179
267
|
* Fix for giving :version parameters to url in version while overriding public_id.
|
180
268
|
|
181
|
-
|
269
|
+
1.0.56 - 2013-04-24
|
270
|
+
==================
|
271
|
+
|
182
272
|
* Support for uploading raw files in direct upload with CarrierWave.
|
183
273
|
* Support overriding stored version.
|
184
274
|
|
185
|
-
|
275
|
+
1.0.55 - 2013-04-19
|
276
|
+
==================
|
277
|
+
|
186
278
|
* Support folders in PreloadedFile.
|
187
279
|
* Allow cloudinary helpers to work directly with CarrierWave uploaders.
|
188
280
|
* Issue [#70](https://github.com/cloudinary/cloudinary_gem/issues/70) - Return parsed error message for 401,403 and 404 error codes as well.
|
189
281
|
* CarrierWave - allow returning format in dynamic methods.
|
190
282
|
|
191
|
-
|
283
|
+
1.0.54 - 2013-04-05
|
284
|
+
==================
|
285
|
+
|
192
286
|
* Support auto-rename when public_id has random component.
|
193
287
|
|
194
|
-
|
288
|
+
1.0.53 - 2013-04-04
|
289
|
+
==================
|
290
|
+
|
195
291
|
* Fix handling of non-fetch http urls.
|
196
292
|
* Support attachment flag in private download links.
|
197
293
|
|
198
|
-
|
294
|
+
1.0.52 - 2013-03-29
|
295
|
+
==================
|
296
|
+
|
199
297
|
* Support for unsafe transformation update (Admin API).
|
200
|
-
|
201
|
-
|
298
|
+
|
299
|
+
1.0.51 - 2013-03-28
|
300
|
+
==================
|
301
|
+
|
202
302
|
* Fixing issue [#66](https://github.com/cloudinary/cloudinary_gem/issues/66) - folder names are not respected in non-direct uploads.
|
203
303
|
* Fixing issue [#65](https://github.com/cloudinary/cloudinary_gem/issues/65) - allow overwriting existing images when updating preloaded images.
|
204
304
|
* Support ERB in cloudinary.yml.
|
205
|
-
|
206
|
-
|
305
|
+
|
306
|
+
1.0.50 - 2013-03-24
|
307
|
+
==================
|
308
|
+
|
207
309
|
* Support folders.
|
208
310
|
* Short URLs.
|
209
311
|
* Auto rename of preloaded resources in CarrierWave.
|
210
|
-
|
211
|
-
|
312
|
+
|
313
|
+
1.0.49 - 2013-03-21
|
314
|
+
==================
|
315
|
+
|
212
316
|
* Support for renaming public_ids.
|
213
317
|
* Safe handling of booleans to prevent issues with Firefox json deserialization.
|
214
318
|
* Uploader tests.
|
215
319
|
|
216
|
-
|
320
|
+
1.0.48 - 2013-03-20
|
321
|
+
==================
|
322
|
+
|
217
323
|
* Add missing require of rest_client.
|
218
324
|
* Support for rails4 sass asset path integration.
|
219
325
|
* Flag to prevent cloudinary from downloading remote urls directly.
|
220
326
|
* Issue [#61](https://github.com/cloudinary/cloudinary_gem/issues/61) build_upload_params destructively updates options.
|
221
|
-
|
222
|
-
|
327
|
+
|
328
|
+
1.0.47 - 2013-03-14
|
329
|
+
==================
|
330
|
+
|
223
331
|
* Allow overriding config with nil/false.
|
224
332
|
* Akamai CDN support.
|
225
333
|
|
226
|
-
|
334
|
+
1.0.46 - 2013-03-10
|
335
|
+
==================
|
336
|
+
|
227
337
|
* Support for tags flag in resources listing API.
|
228
338
|
* Initial partial support for Rails 4.
|
229
339
|
|
230
|
-
|
340
|
+
1.0.45 - 2013-02-28
|
341
|
+
==================
|
342
|
+
|
231
343
|
* Ignore blank URI to support empty string in remote_image_url.
|
232
344
|
* Issue [#48](https://github.com/cloudinary/cloudinary_gem/issues/48) - Allow carrier wave upload to be given to url/image methods.
|
233
345
|
* Support for explode and multi API. Support async and notification, Correctly delete raw resources uploaded via CarrierWave.
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
*
|
239
|
-
* Support
|
346
|
+
|
347
|
+
1.0.44 - 2013-02-05
|
348
|
+
==================
|
349
|
+
|
350
|
+
* Support new usage API call.
|
351
|
+
* Support image_metadata in upload and API.
|
352
|
+
* Javascript index file for client side processing in jQuery File Upload.
|
353
|
+
* Support use_filename flag.
|
240
354
|
* Added license to the gems specification.
|
241
355
|
|
242
|
-
|
356
|
+
1.0.43 - 2012-12-18
|
357
|
+
==================
|
358
|
+
|
243
359
|
* Support fallback to html border attribute.
|
244
360
|
* Added Google+ Helpers.
|
245
361
|
* Additional Helper Methods.
|
246
362
|
* Add cl_image_path for social images.
|
247
363
|
* Allow giving pages flag to resource details API.
|
248
364
|
* Support opacity flag.
|
249
|
-
|
250
|
-
|
365
|
+
|
366
|
+
1.0.42 - 2012-11-14
|
367
|
+
==================
|
368
|
+
|
251
369
|
* Raise CloudinaryException instead of string everywhere.
|
252
370
|
* Support expires_at in private download.
|
253
371
|
* Support info flags directly on upload.
|
254
372
|
|
255
|
-
|
373
|
+
1.0.41 - 2012-10-28
|
374
|
+
==================
|
375
|
+
|
256
376
|
* Allow Cloudinary.config_from_url to be called before Cloudinary.config.
|
257
377
|
* Normalize file extensions in carrier wave upload.
|
258
|
-
* Support keep_original in resource deletion.
|
378
|
+
* Support keep_original in resource deletion.
|
259
379
|
* Support delete_resources_by_tag, Support for transformation flags.
|
260
380
|
|
261
|
-
|
381
|
+
1.0.40 - 2012-10-10
|
382
|
+
==================
|
383
|
+
|
262
384
|
* Carrierwave - downcase wanted format.
|
263
|
-
|
264
|
-
|
385
|
+
|
386
|
+
1.0.39 - 2012-10-08
|
387
|
+
==================
|
388
|
+
|
265
389
|
* Support max_results in resource drilldown.
|
266
390
|
* Change delete_resources_by_prefix to match other signatures.
|
267
391
|
* Add Cloudinary.config_from_url to use CLOUDINARY_URL even if not from env.
|
268
|
-
|
269
|
-
|
392
|
+
|
393
|
+
1.0.38 - 2012-10-02
|
394
|
+
==================
|
395
|
+
|
270
396
|
* Support additional parameters (border, color space, delay).
|
271
397
|
* Admin API enhancements.
|
272
398
|
* Carrierwave improvments for authenticated imaged.
|
273
399
|
* Allow URI to be used in cloudinary_url, minor fixes.
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
400
|
+
|
401
|
+
1.0.37 - 2012-09-12
|
402
|
+
==================
|
403
|
+
|
404
|
+
* Support for customer headers.
|
405
|
+
* Support for type in tags.
|
278
406
|
* Support for tags in explicit.
|
279
407
|
|
280
|
-
|
408
|
+
1.0.36 - 2012-09-09
|
409
|
+
==================
|
410
|
+
|
281
411
|
* Support storage type in CarrierWave.
|
282
412
|
* Check if resource exists.
|
283
413
|
* Public ID should never start with a digit
|
284
414
|
* Authenticated resources fixes.
|
285
415
|
|
286
|
-
|
416
|
+
1.0.35 - 2012-08-27
|
417
|
+
==================
|
418
|
+
|
287
419
|
* Fix migrator to support retrieve returning a URL.
|
288
420
|
|
289
|
-
|
421
|
+
1.0.34 - 2012-08-27
|
422
|
+
==================
|
423
|
+
|
290
424
|
* Extract PreloadedFile for easy handling of files preloaded by the Cloudinary's jQuery library.
|
291
425
|
* Don't pass width/height to html in case of fit/limit or angle are used.
|
292
426
|
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
* Allow
|
297
|
-
*
|
427
|
+
1.0.33 - 2012-08-05
|
428
|
+
==================
|
429
|
+
|
430
|
+
* Allow specifying angle as array.
|
431
|
+
* Allow specifying array of transformations directly.
|
432
|
+
* Allow using string keys in transformations.
|
433
|
+
* Support for Cloudinary new admin API.
|
298
434
|
* Support for signed authenticated URLs.
|
299
435
|
|
300
|
-
|
436
|
+
1.0.32 - 2012-07-26
|
437
|
+
==================
|
438
|
+
|
301
439
|
* Fix typo in eager support for the explicit API.
|
302
440
|
* Better handling of escaping in URL parameters.
|
303
|
-
* Support passing transformation to all versions (process_all_versions).
|
441
|
+
* Support passing transformation to all versions (process_all_versions).
|
304
442
|
* Support private mode (make_private).
|
305
443
|
|
306
|
-
|
444
|
+
1.0.31 - 2013-07-18
|
445
|
+
==================
|
446
|
+
|
307
447
|
* Support configurable CNAME.
|
308
448
|
* Support for explicitly creating remote resources.
|
309
449
|
|
310
|
-
|
450
|
+
1.0.30 - 2012-07-12
|
451
|
+
==================
|
452
|
+
|
311
453
|
* Force order of including in javascript for asset pipeline.
|
312
454
|
* Support for ZIP download link.
|
313
455
|
|
314
|
-
|
456
|
+
1.0.29 - 2012-07-08
|
457
|
+
==================
|
458
|
+
|
315
459
|
* Page and density parameters.
|
316
460
|
* data-uri upload support.
|
317
461
|
* Allow CarrierWave enable_processing.
|
318
462
|
* Default rake task to spec & ignore Gemfile.lock.
|
319
463
|
|
320
|
-
|
464
|
+
1.0.28 - 2012-07-03
|
465
|
+
==================
|
466
|
+
|
321
467
|
* default_public_id for CarrrierWave and JS asset packaging
|
322
468
|
|
323
|
-
|
469
|
+
1.0.27 - 2012-06-26
|
470
|
+
==================
|
471
|
+
|
324
472
|
* Underlay support.
|
325
473
|
* Backup flag.
|
326
474
|
* Private resource download link.
|
327
475
|
* Secure flag fix.
|
328
476
|
* cloud_name param in API calls.
|
329
477
|
|
330
|
-
|
478
|
+
1.0.26 - 2012-06-08
|
479
|
+
==================
|
480
|
+
|
331
481
|
* Fix issue 13 - rails-admin conflict.
|
332
482
|
|
333
|
-
|
483
|
+
1.0.25 - 2012-06-05
|
484
|
+
==================
|
485
|
+
|
334
486
|
* Issues 18 (mongoid) and 19 (mount_on).
|
335
487
|
|
336
|
-
|
488
|
+
1.0.24 - 2012-05-17
|
489
|
+
==================
|
490
|
+
|
337
491
|
* Renaming effects parameter and add numberic effect parameter.
|
338
492
|
|
339
|
-
|
493
|
+
1.0.23 - 2012-05-14
|
494
|
+
==================
|
495
|
+
|
340
496
|
* Support fetch format and effects parameters.
|
341
497
|
|
342
|
-
|
498
|
+
1.0.21 - 2012-05-10
|
499
|
+
==================
|
500
|
+
|
343
501
|
* Custom dynamic CarrierWave process method support.
|
344
502
|
|
345
|
-
|
503
|
+
1.0.21 - 2012-05-09
|
504
|
+
==================
|
505
|
+
|
346
506
|
* New paramters (angle, overlay).
|
347
507
|
* Text creation.
|
348
508
|
* Fix issue 16.
|
349
509
|
|
350
|
-
|
510
|
+
1.0.20 - 2012-05-06
|
511
|
+
==================
|
512
|
+
|
351
513
|
* Heroku single environment variable.
|
352
514
|
|
353
|
-
|
515
|
+
1.0.18 - 2012-05-02
|
516
|
+
==================
|
517
|
+
|
354
518
|
* Sanitize filename for carrierwave to allow special characters in public_id.
|
355
519
|
* Allow preloaded image with empty format (for raw files).
|
356
520
|
|
357
|
-
|
521
|
+
1.0.17 - 2012-04-28
|
522
|
+
==================
|
523
|
+
|
358
524
|
* Fix issue 12 - tags didn't work in newer versions of carrierwave. Validate tags are not used in versions.
|
359
525
|
|
360
|
-
|
526
|
+
1.0.16 - 2012-04-25
|
527
|
+
==================
|
528
|
+
|
361
529
|
* Background color support.
|
362
530
|
* Add full_public_id method for accessing versioned public_id. Handle unversioned public_ids from DB.
|
363
531
|
* Removing options passed to image_path from cl_image_path.
|
@@ -365,8 +533,10 @@
|
|
365
533
|
* Major CarrierWave plugin cleanup. Fix issue 10. Allow overriding public_id with dynamic public_id. Allow overriding delete_remote? to prevent deleting resources from Cloudinary.
|
366
534
|
* Fix issue [#11](https://github.com/cloudinary/cloudinary_gem/issues/11) - nil input to image_tag throws exception.
|
367
535
|
* Fix docs, fix sass require.
|
368
|
-
|
369
|
-
|
536
|
+
|
537
|
+
1.0.15 - 2012-04-23
|
538
|
+
==================
|
539
|
+
|
370
540
|
* Avoiding id attributes on hidden fields.
|
371
541
|
* Skip hidden tags for empty values.
|
372
542
|
* cl_form_tag: avoiding id attributes on hidden fields.
|
@@ -375,68 +545,98 @@
|
|
375
545
|
* Always return original source if cloudinary is not used.
|
376
546
|
* Support cloudinary-url function in sass.
|
377
547
|
* Cleaner depdency check for sass and sass-rails.
|
378
|
-
|
379
|
-
|
548
|
+
|
549
|
+
1.0.14 - 2012-04-23
|
550
|
+
==================
|
551
|
+
|
380
552
|
* Remove depenedency on active support.
|
381
|
-
* Allow non-Rails use of cloudinary.yml.
|
382
|
-
* Fix update of local url in carrir wave.
|
383
|
-
* Allow supplying DELETE_MISSING flag in static rake task.
|
553
|
+
* Allow non-Rails use of cloudinary.yml.
|
554
|
+
* Fix update of local url in carrir wave.
|
555
|
+
* Allow supplying DELETE_MISSING flag in static rake task.
|
384
556
|
* Disable recreate_versions! as it is not needed.
|
385
|
-
|
386
|
-
|
557
|
+
|
558
|
+
1.0.13 - 2012-04-22
|
559
|
+
==================
|
560
|
+
|
387
561
|
* Default image support.
|
388
|
-
|
389
|
-
|
562
|
+
|
563
|
+
1.0.12 - 2012-04-19
|
564
|
+
==================
|
565
|
+
|
390
566
|
* Fixing resize_to_pad to be resize_and_pad.
|
391
|
-
|
392
|
-
|
567
|
+
|
568
|
+
1.0.11 - 2012-04-19
|
569
|
+
==================
|
570
|
+
|
393
571
|
* Better config initialization.
|
394
572
|
* Fix bug when non-static resource is requested and a static resource existing with the same name.
|
395
573
|
* Gravatar support.
|
396
|
-
|
397
|
-
|
398
|
-
|
574
|
+
|
575
|
+
1.0.10 - 2012-04-18
|
576
|
+
==================
|
577
|
+
|
578
|
+
* Initial tests. Size option fix.
|
399
579
|
* Better rails dependency support.
|
400
580
|
* First version of cloudinary_js integration including file upload.
|
401
|
-
|
402
|
-
|
581
|
+
|
582
|
+
1.0.9 - 2012-04-16
|
583
|
+
==================
|
584
|
+
|
403
585
|
* Support chained transformations.
|
404
|
-
|
405
|
-
|
586
|
+
|
587
|
+
1.0.8 - 2012-04-15
|
588
|
+
==================
|
589
|
+
|
406
590
|
* Support subdomain in CDN according to public id crc32.
|
407
|
-
|
408
|
-
|
591
|
+
|
592
|
+
1.0.7 - 2012-04-12
|
593
|
+
==================
|
594
|
+
|
409
595
|
* Issue [#2](https://github.com/cloudinary/cloudinary_gem/issues/2): Adding support to Mongoid and fixing to_json issue.
|
410
|
-
|
411
|
-
|
596
|
+
|
597
|
+
1.0.6 - 2012-04-11
|
598
|
+
==================
|
599
|
+
|
412
600
|
* Adding cl_form_tag and fixing old and non rails compatibliltiy issues.
|
413
|
-
|
414
|
-
|
601
|
+
|
602
|
+
1.0.5 - 2012-04-10
|
603
|
+
==================
|
604
|
+
|
415
605
|
* Fixing radius parameter.
|
416
|
-
|
417
|
-
|
606
|
+
|
607
|
+
1.0.4 - 2012-04-04
|
608
|
+
==================
|
609
|
+
|
418
610
|
* Static assets: progress printing in sync task, whitelist of image extensions.
|
419
|
-
|
420
|
-
|
611
|
+
|
612
|
+
1.0.3 - 2012-04-02
|
613
|
+
==================
|
614
|
+
|
421
615
|
* Assets no longer include paths. Allow passing kind in upload and destroy.
|
422
616
|
* Better defaults for type which allow working with fetch images.
|
423
617
|
* Restore eager format fix.
|
424
618
|
* Add radius support.
|
425
|
-
* Fix default handling of local images in enhanced image_tag.
|
426
|
-
|
427
|
-
|
619
|
+
* Fix default handling of local images in enhanced image_tag.
|
620
|
+
|
621
|
+
1.0.2 - 2012-04-02
|
622
|
+
==================
|
623
|
+
|
428
624
|
* Support for passing x & y parameters to crop.
|
429
625
|
* fetch_image_tag and escaping support.
|
430
626
|
* Static file support.
|
431
627
|
* Better static sync deletion support. Better image_path integration. Fix access to image_tag with non-relative path.
|
432
628
|
* Handle case of file going into trash and back into folder before delete.
|
433
629
|
* Readded migrator. Reduce concurrency for old versions of ruby.
|
434
|
-
|
435
|
-
|
630
|
+
|
631
|
+
1.0.1 - 2012-03-12
|
632
|
+
==================
|
633
|
+
|
436
634
|
* Replace Array() with safer method.
|
437
635
|
* Support passing format as part of the eager transformation.
|
438
|
-
|
439
|
-
|
636
|
+
|
637
|
+
1.0.0 - 2012-02-22
|
638
|
+
==================
|
639
|
+
|
440
640
|
* Initial public version.
|
441
641
|
|
442
642
|
|