Skip to content

Commit

Permalink
Chore(release): Publish version 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraM committed May 22, 2023
1 parent 1deb32e commit 34e2340
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<a name="2.3.3"></a>
## [2.3.3](https://github.com/lmc-eu/cookie-consent-manager/compare/2.3.2...2.3.3) (2023-05-22)

### Bug Fixes

- Cannot use 'in' operator to search for 'uid' in undefined ([1deb32e](https://github.com/lmc-eu/cookie-consent-manager/commit/1deb32e))

### Chores

- **deps:** Bump json5 from 1.0.1 to 1.0.2 ([2548df7](https://github.com/lmc-eu/cookie-consent-manager/commit/2548df7))
- Disable update of stylelint-config ([eeaa415](https://github.com/lmc-eu/cookie-consent-manager/commit/eeaa415))


<a name="2.3.2"></a>
## [2.3.2](https://github.com/lmc-eu/cookie-consent-manager/compare/2.3.1...2.3.2) (2022-12-22)

Expand Down
2 changes: 1 addition & 1 deletion dist/LmcCookieConsentManager.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,7 @@ var LmcCookieConsentManager = (serviceName, args) => {
};
const onFirstAcceptHandler = (userPreferences, cookie) => {
const cookieData = cookieConsent.get("data");
if (cookieData === null || !("uid" in cookieData)) {
if (cookieData == null || !("uid" in cookieData)) {
cookieConsent.set("data", {
value: { serviceName, uid: nanoid() },
mode: "update"
Expand Down
2 changes: 1 addition & 1 deletion dist/LmcCookieConsentManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@
};
const onFirstAcceptHandler = (userPreferences, cookie) => {
const cookieData = cookieConsent.get("data");
if (cookieData === null || !("uid" in cookieData)) {
if (cookieData == null || !("uid" in cookieData)) {
cookieConsent.set("data", {
value: { serviceName, uid: nanoid() },
mode: "update"
Expand Down
2 changes: 1 addition & 1 deletion dist/LmcCookieConsentManager.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1622,7 +1622,7 @@ var LmcCookieConsentManager = (serviceName, args) => {
};
const onFirstAcceptHandler = (userPreferences, cookie) => {
const cookieData = cookieConsent.get("data");
if (cookieData === null || !("uid" in cookieData)) {
if (cookieData == null || !("uid" in cookieData)) {
cookieConsent.set("data", {
value: { serviceName, uid: nanoid() },
mode: "update"
Expand Down
2 changes: 1 addition & 1 deletion dist/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@
};
const onFirstAcceptHandler = (userPreferences, cookie) => {
const cookieData = cookieConsent.get("data");
if (cookieData === null || !("uid" in cookieData)) {
if (cookieData == null || !("uid" in cookieData)) {
cookieConsent.set("data", {
value: { serviceName, uid: nanoid() },
mode: "update"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lmc-eu/cookie-consent-manager",
"version": "2.3.2",
"version": "2.3.3",
"description": "Cookie Consent Manager mainly for LMC products",
"keywords": [
"lmc-eu",
Expand Down

0 comments on commit 34e2340

Please sign in to comment.