Releases: eexit/ghost-storage-cloudinary
Releases · eexit/ghost-storage-cloudinary
v3.0.2
What's Changed
- chore(deps): bump image-size from 1.1.1 to 1.2.1 by @dependabot in #181
- fix: rename getSanitizedFileName to sanitizeFileName and update deps by @jahanson in #180
- chore: Update depencencies by @eexit in #182
- revert: fix: rename getSanitizedFileName to sanitizeFileName and update deps #180 by @eexit in #183
New Contributors
Full Changelog: v3.0.1...v3.0.2
v3.0.1
v3.0.0
- [BC] Update plugins configuration #155
The plugin configuration has changed.
RetinaJS configuration was inghost-storage-cloudinary.rjs
JSON
property, while it's now wrapped into aplugins
object.
Before:
{
"storage": {
"active": "ghost-storage-cloudinary",
"ghost-storage-cloudinary": {
"rjs": {
"baseWidth": 960,
"fireForget": true
}
}
}
}
Now:
{
"storage": {
"active": "ghost-storage-cloudinary",
"ghost-storage-cloudinary": {
"plugins": {
"retinajs": {
"baseWidth": 960,
"fireForget": true
}
}
}
}
}