Releases: 68publishers/consent-management-platform
Releases · 68publishers/consent-management-platform
v1.0.0
v0.12.0
v0.11.0
☁️ Deployment Instructions
- After the migrations (or after the whole deployment) run over the database manually:
VACUUM ANALYZE consent;
VACUUM ANALYZE consent_statistics_projection;
- Flush Redis after deployment due to caching
- 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).
v0.10.0
Added
- Added monthly statistics command
bin/console cmp:monthly-statistics <project-code> [--accepted-all] [--rejected-all] [--by-categories <categories>] [--unique] [--year <year>] [--format <format>]
.
Changed
- Changed
68publishers/php
Docker images to the latest versions.
Fixed
- Fixed number formatting based on user's locale preferences.
- Fixed OpenApi schema loading on the URL
/api/docs
.
v0.9.0
Added
- Added build of production Docker images.
- Added integration with
68publishers/crawler
:- Crawler configuration in the global settings.
- Management for scenarios and scenario schedulers
- Added cookie suggestions based on Crawler's results.
- Added numbers of cookie suggestions in Dashboard statistics and Weekly Overview mail notification.
- Added new mail notification for cookie suggestions.
Changed
- Updated PHP version to
8.1
. - Changed base Docker images to the latest
68publishers/php
. - Updated OpenApi schema.
- Updated coding style (new Php-Cs-Fixer configuration, PHP 8 features).
Fixed
- Fixed performance of the list of consents.
v0.8.0
- Added ability to create cookies with duplicate name but different category in the context of the same provider
- Added ability to define cookie expiration with minutes (i modifier) or seconds (
s
modifier) - Changed behaviour of switch buttons on enter keydown. Enter submits associated form.
- Improved numbers formatting in the application and mails + updated footer links
- Added delete action for cookie lists on pages Admin:Cookies,
Admin:EditProvider
andAdmin:Project:Cookies