Skip to content

v0.11.0

Compare
Choose a tag to compare
@tg666 tg666 released this 24 Oct 00:05
· 19 commits to main since this release

☁️ Deployment Instructions

  1. After the migrations (or after the whole deployment) run over the database manually:
VACUUM ANALYZE consent;
VACUUM ANALYZE consent_statistics_projection;
  1. Flush Redis after deployment due to caching
  2. Restart the worker after deployment
$ bin/console messenger:stop-workers

Added

  • Added ENV variable GRID_COUNT_LIMIT.
  • Added environment integration. In addition to the "Default environment", other custom environments can be defined in the application settings. These environments can be assigned to projects and cookies and can be filtered on them in the consent list or on the dashboard.
  • Added optional query parameter environment in the Cookies API.
  • Added optional body parameter environment in the Consent API.
  • Added new OpenApi schema v1.1.0.

Changed

  • The maximum number of entries in the consent list is limited to value of the ENV variable GRID_COUNT_LIMIT due to performance issues (default 100.000).