Skip to content

v8.8.0

Compare
Choose a tag to compare
@rijkvanzanten rijkvanzanten released this 18 Jun 14:57

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