·
831 commits
to main
since this release
Major Changes
-
#614
2d10626
Thanks @simonihmig! - Use Record-based API for cloudinary transformationsInstead of passing cloudinary transformations as a string according to the Cloudinary Transformation URL API, you need to pass them as an object. If you want to use chained transformations, pass an array of objects.
// using @resposive-image/cdn const simpleTransformation = cloudinaryProvider('foo/bar.jpg', { transformations: { co: 'rgb:20a020', e: 'colorize:50' }, }); const chainedTransformation = cloudinaryProvider('foo/bar.jpg', { transformations: [ { co: 'rgb:20a020', e: 'colorize:50' }, { ar: '1.0', c: 'fill', w: '150' }, { r: 'max' }, ], });
Patch Changes
-
#646
9661f86
Thanks @simonihmig! - Remove use of @ember/render-modifiers -
Updated dependencies [
2d10626
]:- @responsive-image/[email protected]