From fd2c498eaac422aa66d8d3214c881b1b12ebc051 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 8 Oct 2022 21:48:29 +0000 Subject: [PATCH] =?UTF-8?q?chore(release):=20=F0=9F=9A=80=20release=20v3.0?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [3.0.0](https://github.com/tinesoft/ngx-cookieconsent/compare/v2.2.3...v3.0.0) (2022-10-08) ### Bug Fixes * **core:** add `rel="noopener"` in html templates with `target="_blank"` ([4907c35](https://github.com/tinesoft/ngx-cookieconsent/commit/4907c354aaf77c26249db3b43b6a5cdf979c1158)) * add missing generic type to angular module ([7a44f3f](https://github.com/tinesoft/ngx-cookieconsent/commit/7a44f3fac3894c2b66671eb2bd6433b8cb5a6e36)) * **bundling:** missing external dependency 'rxjs/operators' ([baa7af8](https://github.com/tinesoft/ngx-cookieconsent/commit/baa7af8273d2756ba4c5643be960555ca3665d1e)) * **demo:** workaround for StackBlitz not supporting external scripts ([845af1a](https://github.com/tinesoft/ngx-cookieconsent/commit/845af1ad626f4c505979e57f21c66334a05626e9)), closes [#69](https://github.com/tinesoft/ngx-cookieconsent/issues/69) * cookieconsent may be undefined ([290cac3](https://github.com/tinesoft/ngx-cookieconsent/commit/290cac31a8789ae8e536c6f14fec6b996f5fa3c6)) ### Code Refactoring * **core:** rename `initialize$` subscription into `initializing$` ([7233aa0](https://github.com/tinesoft/ngx-cookieconsent/commit/7233aa0325393774456500c2c69fda93498822be)) ### Features * **config:** allow `whitelistPage`/ `blacklistPage` to accept RegExp[] ([8c95e6d](https://github.com/tinesoft/ngx-cookieconsent/commit/8c95e6d4a7cef368af94f1dc5f69158c8f0442cc)), closes [#100](https://github.com/tinesoft/ngx-cookieconsent/issues/100) * **core:** add `initialized$` and `initializationError$` subscriptions ([a994f5e](https://github.com/tinesoft/ngx-cookieconsent/commit/a994f5e3eb8f5f23001f3f1913017b424c7931a1)) * **core:** improve `WindowService` to work on both browser and server ([cdb5e0a](https://github.com/tinesoft/ngx-cookieconsent/commit/cdb5e0ac6d99e6b32c5c8e5e129a0478495813b4)) * **core:** loosen version of angular peerDependencies to v12 or higher ([ad9b4a2](https://github.com/tinesoft/ngx-cookieconsent/commit/ad9b4a2718e46e3e04ff574faac8d8de82bb0035)) * **core:** migrate to Angular 12 and Nx workspace ([0d36a56](https://github.com/tinesoft/ngx-cookieconsent/commit/0d36a5650f7fc479faf0de7422cb8eb69e34ef07)) * **core:** migrate to Angular 13 and Nx 13 ([c398496](https://github.com/tinesoft/ngx-cookieconsent/commit/c398496a7031b8ed128e9407eb9b825ef356d356)) ### BREAKING CHANGES * **core:** `initialize$` has been renamed to better reflect when this event is triggered Use `initialized$` to get notify when the `cookieconsent` **has done** initializing successfully *** [skip ci] --- libs/ngx-cookieconsent/CHANGELOG.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 libs/ngx-cookieconsent/CHANGELOG.md diff --git a/libs/ngx-cookieconsent/CHANGELOG.md b/libs/ngx-cookieconsent/CHANGELOG.md new file mode 100644 index 0000000..14e2927 --- /dev/null +++ b/libs/ngx-cookieconsent/CHANGELOG.md @@ -0,0 +1,28 @@ +# [3.0.0](https://github.com/tinesoft/ngx-cookieconsent/compare/v2.2.3...v3.0.0) (2022-10-08) + +### Bug Fixes + +- **core:** add `rel="noopener"` in html templates with `target="_blank"` ([4907c35](https://github.com/tinesoft/ngx-cookieconsent/commit/4907c354aaf77c26249db3b43b6a5cdf979c1158)) +- add missing generic type to angular module ([7a44f3f](https://github.com/tinesoft/ngx-cookieconsent/commit/7a44f3fac3894c2b66671eb2bd6433b8cb5a6e36)) +- **bundling:** missing external dependency 'rxjs/operators' ([baa7af8](https://github.com/tinesoft/ngx-cookieconsent/commit/baa7af8273d2756ba4c5643be960555ca3665d1e)) +- **demo:** workaround for StackBlitz not supporting external scripts ([845af1a](https://github.com/tinesoft/ngx-cookieconsent/commit/845af1ad626f4c505979e57f21c66334a05626e9)), closes [#69](https://github.com/tinesoft/ngx-cookieconsent/issues/69) +- cookieconsent may be undefined ([290cac3](https://github.com/tinesoft/ngx-cookieconsent/commit/290cac31a8789ae8e536c6f14fec6b996f5fa3c6)) + +### Code Refactoring + +- **core:** rename `initialize$` subscription into `initializing$` ([7233aa0](https://github.com/tinesoft/ngx-cookieconsent/commit/7233aa0325393774456500c2c69fda93498822be)) + +### Features + +- **config:** allow `whitelistPage`/ `blacklistPage` to accept RegExp[] ([8c95e6d](https://github.com/tinesoft/ngx-cookieconsent/commit/8c95e6d4a7cef368af94f1dc5f69158c8f0442cc)), closes [#100](https://github.com/tinesoft/ngx-cookieconsent/issues/100) +- **core:** add `initialized$` and `initializationError$` subscriptions ([a994f5e](https://github.com/tinesoft/ngx-cookieconsent/commit/a994f5e3eb8f5f23001f3f1913017b424c7931a1)) +- **core:** improve `WindowService` to work on both browser and server ([cdb5e0a](https://github.com/tinesoft/ngx-cookieconsent/commit/cdb5e0ac6d99e6b32c5c8e5e129a0478495813b4)) +- **core:** loosen version of angular peerDependencies to v12 or higher ([ad9b4a2](https://github.com/tinesoft/ngx-cookieconsent/commit/ad9b4a2718e46e3e04ff574faac8d8de82bb0035)) +- **core:** migrate to Angular 12 and Nx workspace ([0d36a56](https://github.com/tinesoft/ngx-cookieconsent/commit/0d36a5650f7fc479faf0de7422cb8eb69e34ef07)) +- **core:** migrate to Angular 13 and Nx 13 ([c398496](https://github.com/tinesoft/ngx-cookieconsent/commit/c398496a7031b8ed128e9407eb9b825ef356d356)) + +### BREAKING CHANGES + +- **core:** `initialize$` has been renamed to better reflect when this event is triggered + +Use `initialized$` to get notify when the `cookieconsent` **has done** initializing successfully