@duckduckgo/autoconsent 7.0.0 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ # v7.1.0 (Wed Jan 03 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - iWink rule [#123](https://github.com/duckduckgo/autoconsent/pull/123) ([@Tomassie91](https://github.com/Tomassie91) [@muodov](https://github.com/muodov))
6
+ - Improve Tealium support [#315](https://github.com/duckduckgo/autoconsent/pull/315) ([@muodov](https://github.com/muodov))
7
+
8
+ #### 🐛 Bug Fix
9
+
10
+ - Monthly Coverage data update [#330](https://github.com/duckduckgo/autoconsent/pull/330) (dax@duckduckgo.com [@sammacbeth](https://github.com/sammacbeth))
11
+
12
+ #### Authors: 4
13
+
14
+ - [@Tomassie91](https://github.com/Tomassie91)
15
+ - Dax the Deployer (dax@duckduckgo.com)
16
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
17
+ - Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
18
+
19
+ ---
20
+
1
21
  # v7.0.0 (Thu Dec 28 2023)
2
22
 
3
23
  #### 💥 Breaking Change
package/build.sh CHANGED
@@ -3,7 +3,7 @@ set -ex
3
3
 
4
4
  ESBUILD="node_modules/.bin/esbuild --bundle"
5
5
 
6
- $ESBUILD --format=iife --target=chrome90 --minify playwright/content.ts --outfile=dist/autoconsent.playwright.js
6
+ $ESBUILD --format=iife --target=es2021 --minify playwright/content.ts --outfile=dist/autoconsent.playwright.js
7
7
  $ESBUILD --format=esm --target=es2021 lib/web.ts --outfile=dist/autoconsent.esm.js
8
8
  $ESBUILD --format=cjs --target=es2021 --platform=node lib/web.ts --outfile=dist/autoconsent.cjs.js
9
9