npm strapi-plugin-upload 3.0.0-beta.17
v3.0.0-beta.17

latest releases: 3.6.11, 3.6.10, 3.6.9...
4 years ago

πŸ’₯Breaking Change

  • [Plugin] πŸ’₯ Fix Cloudinary deletion of other files than images (#3691) @DKvistgaard

We introduced a new field in the file content type named provider_metadata to help scaling file upload providers without pouluting the content type. For cloudinary users this means that you will have to migrate your 'public_id' field to the provider_metadate json field. You can see more detailed explanation in the issue.


For GraphQL users with custom queries you will now receive the full graphql context in your custom resolver instead of the koa context.

Before
schema.graphql.js

module.exports = {
  Query: {
    customQuery(root, args, ctx) {
       // ctx is the koa context
    }
  }
}

After
schema.graphql.js

module.exports = {
  Query: {
    customQuery(root, args, ctx) {
       // ctx is the graphql context
       // to access the koa context use ctx.context
    }
  }
}

Now the reset password URL page has to be set in the Users & Permissions advanced settings.

You will have to set the Reset Password URL page.
Roles & Permissions > Advanced settings > Reset password page


πŸ› Bug fix

πŸ’… Enhancement

πŸš€ New feature

Don't miss a new strapi-plugin-upload release

NewReleases is sending notifications on new releases.