Strapi v3.0.0-beta.17 Release Notes

Release Date: 2019-10-16 // over 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