Skip to content

Commit

Permalink
Version 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Jan 28, 2019
1 parent fbcfb9a commit 918997e
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 3 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,51 @@

2.6.0 / 2019-01-28
==================

Note
----

Sources are now divided into JavaScript modules. However we can't change the public
API of the package or its structure, including the "main" property of the package.json file,
without a major release.

You can import cloudinary from the sources:

```
npm install cloudinary_js
```

```js
import cloudinary from 'cloudinary_js/src';
const cl = cloudinary.Cloudinary.new({cloud_name: 'demo'});
```


The npm packages:
* `cloudinary-core`
* `cloudinary-jquery`
* `cloudinary-jquery-file-upload`

Are still used to distribute the bundled library.

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

* Add picture tag and source tag
* Add support to `fps` transformation parameter (#139)
* Replaced CoffeeScript with JavaScript
* Refactor code as modules

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

* Fix Fetch layer
* Remove grunt
* Update TypeScript configuration
* Remove PhantomJS and bower references
* Fix HTML tag test
* Fix fps test

2.5.0 / 2018-02-13
==================

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudinary",
"version": "2.5.0",
"version": "2.6.0",
"title": "Cloudinary jQuery Plugin",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "cloudinary_js",
"version": "2.5.0",
"version": "2.6.0",
"description": "Cloudinary streamlines your web application’s image manipulation needs. Cloudinary's cloud-based servers automate image uploading, resizing, cropping, optimizing, sprite generation and more. Cloudinary's jQuery plugin allows direct uploading from the browser to the cloud and dynamic cloud-based image transformations and effects.",
"main": "dist/cloudinary-jquery-file-upload.min.js",
"main": "js/jquery.cloudinary.js",
"directories": {
"test": "test"
},
Expand Down

0 comments on commit 918997e

Please sign in to comment.