Directus v8.8.0 Release Notes

Release Date: 2020-06-18 // almost 4 years ago
  • ๐Ÿ”„ Changes

    App

    • ๐Ÿš€ Ignore prereleases in requirements check
    • ๐Ÿ›  Fix date formatting in file interface in Safari
    • ๐Ÿ›  Fix activity tab crashing when user doesn't exist

    https://github.com/directus/app/projects/73

    API

    • ๐Ÿ”ง โœจ Make SameSite and Secure cookie flags configurable

    This allows you to run Directus without the HTTPS requirement and opt-in to the Secure flag in the cookie when using the cookie auth mode from JS cross-domain.

    ๐Ÿ”ง This can be configured by adding the following to your config file:

    'cookie' =\> [// Controls for the auth cookie mode'same\_site' =\> 'None'// Set the SameSite flag'secure' =\> true// Add the Secure flag],
    

    https://github.com/directus/api/projects/66