Skip to content

Releases: scify/laravel-cookies-consent

v2.0.1 - Bug fix on missing assets

20 Nov 12:28
Compare
Choose a tag to compare

This release fixes the missing assets (.css, .js, and .png) files.
Described in this issue.

v2.0.0 - GDPR & UI Improvements

10 Oct 12:12
Compare
Choose a tag to compare

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

26 Oct 11:51
fe97c79
Compare
Choose a tag to compare
  • 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

26 Oct 07:50
a0ce037
Compare
Choose a tag to compare

Added Portuguese Language corrections, thanks to this PR by ViNiSeNnAtt

v1.1.1 - Portuguese Language

21 Oct 12:45
828689b
Compare
Choose a tag to compare

v1.1.0 - Improvements regarding the styles file, Composer lib updates

18 Oct 11:14
29a7f65
Compare
Choose a tag to compare

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

16 Mar 07:22
Compare
Choose a tag to compare

This release addresses this issue, regarding the cookie prefix when accepting "all" cookies.

v1.0.0 - First Stable Release

19 Dec 08:23
Compare
Choose a tag to compare

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

09 Dec 09:15
Compare
Choose a tag to compare

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

21 Nov 13:37
Compare
Choose a tag to compare

Set the required PHP version to either 7.x or 8.x, in order to accommodate older Laravel installations.