All Versions
32
Latest Version
Avg Release Cycle
7 days
Latest Release
1240 days ago

Changelog History
Page 4

  • v3.0.0-beta.18 Changes

    December 17, 2019

    πŸ“š You can read the Migration guide here

    🍱 πŸ› Bug fix

    • [Admin] Fix empty date wrong display (#4440) @AHgPuK
    • ⚑️ [Framework] Use the id of entry to update relations (#4645) @Froelund
    • [Framework] Fix environment typo (#4696) @CKGrafico
    • 🍱 [Plugin] πŸ’₯ Fix uploaded file order by size (#4351) @chriswinch
    • πŸ”Œ [Plugin] Fix no response when get user permission role with internal network (#4638) @Cow258
    • πŸ“š [Plugin] Update Swagger-UI for Documentation plugin (#4652) @derrickmehaffy
    • ⚑️ [Plugin] Updated ApolloServer configuration for introspection queries (GraphQL Plugin) (#4660) @micheleriva

    🍱 πŸ’… Enhancement

    • [Admin] New design for the server homepage (#4418) @Aurelsicoko
    • ⚑️ [Admin] Update KO translation (#4651) @iicdii
    • 0️⃣ [Admin] Change admin UI's default language to English if browser's preferred language is not found (#4694) @0LL1
    • πŸ“š [Documentation] Remove old admin panel warning (#4405) @mhelmetag
    • πŸ“š [Documentation] Add data response customization (#4571) @lauriejim
    • πŸ“š [Documentation] Some documentation update (#4575) @lauriejim
    • πŸ“š [Documentation] Add guide to customize admin and plugin (#4579) @lauriejim
    • πŸ“š [Documentation] Update link to pm2 guide (#4585) @dearprakash
    • πŸ“š [Documentation] Change "Mac O/S" to "macOS" (#4654) @AnandChowdhary
    • πŸ“š [Documentation] Added missed comma in ecosystem.config.js example (#4657) @pravosud
    • πŸ“š [Documentation] Update upload.md (#4659) @pouyamiralayi
    • πŸ“š [Documentation] Add strapi console command (#4667) @lauriejim
    • πŸ“š [Documentation] Add sqreen guide (#4668) @lauriejim
    • πŸ“š [Documentation] Add guide to create a draft system (#4671) @lauriejim
    • πŸ“š [Documentation] Alphabetize concepts/file-structure.md docs (#4682) @RodEsp
    • πŸ“š [Documentation] Update documentation with dynamic zone feature (#4688) @alexandrebodin
    • πŸ“š [Documentation] Tutorial update for compo (#4726) @lauriejim
    • πŸ“š [Documentation] Update configurations.md (#4733) @franciskone
    • ⚑️ [Framework] Update initialisation detection when starting a project (#4380) @Aurelsicoko
    • 🚚 [Framework] Remove search engine for index.html page (#4623) @lauriejim
    • ⚑️ [Framework] Update model.template (#4656) @shuson
    • [Framework] Wrap tsvector attributes with coalesce before join (#4674) @mnelemans
    • 🍱 [Plugin] πŸ’₯ Populate only role relation to authorize user (#4540) @victorlambert

    🍱 πŸš€ New feature

  • v3.0.0-beta.17 Changes

    October 16, 2019

    🍱 πŸ’₯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