Releases: scify/laravel-cookies-consent
v2.0.1 - Bug fix on missing assets
This release fixes the missing assets (.css, .js, and .png) files.
Described in this issue.
v2.0.0 - GDPR & UI Improvements
The v2 of the Laravel Cookies Consent plugin has been released! 🎉🥳😍
Features
This version includes some important changes and improvements, such as:
- A new configuration file format. Now you can declare the cookies each cookie category uses in a
more structured way. - A new, clean, and intuitive UI for the cookies consent modal.
- An option to present the cookies consent dialog in a separate page instead of a modal.
- A stick cookies button that allows users to change their cookies preferences at any time. This button is optional and
it's existence can be tweaked in the configuration file. - A separate page for the cookies preferences, where users can read more about each cookie category and change their
preferences.
How to upgrade to v2.0.0
Take a thorough look at Readme, and find the link to the upgrade guide.
v1.1.3 - UI Improvements for compliance with GDPR
- Changed the background color of the "Allow all cookies" button, in order to be compliant with the GDPR rules
- Fixed the padding of the button texts
v.1.1.2 - Portoguese Language v2
Added Portuguese Language corrections, thanks to this PR by ViNiSeNnAtt
v1.1.1 - Portuguese Language
- Added Portuguese Language, thanks to this commit by ViNiSeNnAtt
v1.1.0 - Improvements regarding the styles file, Composer lib updates
Improvements regarding the styles file, Composer lib updates
List of Updates:
- Fixed z-index issue (as reported in #10)
- Now the front-end assets (styles) file is not automatically published, to avoid causing overriding (reported in #11)
- Composer libraries update
- Improved Development guidelines in Readme file
Notable Changes:
Now, in order to publish the styles file to public/vendor/cookies_consent/css/style.css
it is required to manually run the publishing command:
php artisan vendor:publish \
--provider="SciFY\LaravelCookiesConsent\LaravelCookiesConsentServiceProvider" \
--tag="cookies-consent-assets"
v1.0.1 - Fixed bug on setting "all" cookies button
This release addresses this issue, regarding the cookie prefix when accepting "all" cookies.
v1.0.0 - First Stable Release
This is the first stable release of the plugin!
Feel free to download, try and customize it. If you find any issues, please report them to the issue page.
Check out the CONTRIBUTING.md guide to contribute to this open-source project!
v0.9.4 - Use of langPath() Laravel method, in order to publish the translation resources
The plugin now uses Laravel's app()->langPath()
method, in order to publish the translation files.
v0.9.3 - Plugin is now compatible with all 7.x and 8.x versions
Set the required PHP version to either 7.x
or 8.x
, in order to accommodate older Laravel installations.