strapi

πŸš€ Strapi is the leading open-source headless CMS. It’s 100% JavaScript/TypeScript, fully customizable and developer-first.

OTHER License

Downloads
6.9M
Stars
60.8K
Committers
1K
strapi - v3.0.0-beta.19.1

Published by alexandrebodin over 4 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.19

Published by alexandrebodin over 4 years ago

Read the migration guide Here

πŸ’… Enhancement

πŸ› Bug fix

πŸš€ New feature

strapi - v3.0.0-beta.18.8

Published by alexandrebodin over 4 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.18.7

Published by alexandrebodin over 4 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.18.6

Published by alexandrebodin over 4 years ago

πŸ› Bug fix

strapi - v3.0.0-beta.18.5

Published by alexandrebodin almost 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

πŸš€ New feature

strapi - v3.0.0-beta.18.4

Published by alexandrebodin almost 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

πŸš€ New feature

strapi - v3.0.0-beta.18.3

Published by alexandrebodin almost 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.18.2

Published by alexandrebodin almost 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.18.1

Published by alexandrebodin almost 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.18

Published by alexandrebodin almost 5 years ago

You can read the Migration guide here

πŸ› Bug fix

πŸ’… Enhancement

πŸš€ New feature

strapi - v3.0.0-beta.17.8

Published by alexandrebodin almost 5 years ago

πŸ› Bug fix

strapi - v3.0.0-beta.17.7

Published by lauriejim almost 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.17.6

Published by alexandrebodin almost 5 years ago

πŸ› Bug fix

πŸš€ New feature

πŸ’… Enhancement

strapi - v3.0.0-beta.17.5

Published by alexandrebodin almost 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.17.4

Published by alexandrebodin almost 5 years ago

Read more here: Migration guide

πŸ’₯ Breaking Change

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.17.3

Published by alexandrebodin about 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.17.2

Published by alexandrebodin about 5 years ago

πŸ’… Enhancement

πŸ› Bug fix

strapi - v3.0.0-beta.17.1

Published by alexandrebodin about 5 years ago

πŸ› Bug fix

strapi - v3.0.0-beta.17

Published by alexandrebodin about 5 years ago

πŸ’₯Breaking Change

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