@slashgear/gdpr-cookie-scanner 1.1.0 → 1.2.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 +11 -0
- package/package.json +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @slashgear/gdpr-cookie-scanner
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 15deb9e: chore: simplify npm publishing — token-based auth, no GitHub Packages
|
|
8
|
+
|
|
9
|
+
The release pipeline now publishes exclusively to npmjs.org using a classic
|
|
10
|
+
NPM_TOKEN secret. GitHub Packages publishing and GitHub Releases creation have
|
|
11
|
+
been removed to reduce complexity. OIDC trusted publishing has been dropped in
|
|
12
|
+
favour of the more straightforward token approach.
|
|
13
|
+
|
|
3
14
|
## 1.1.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slashgear/gdpr-cookie-scanner",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "CLI tool to scan websites for GDPR cookie consent compliance",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"compliance",
|
|
@@ -12,7 +12,16 @@
|
|
|
12
12
|
"rgpd",
|
|
13
13
|
"scanner"
|
|
14
14
|
],
|
|
15
|
+
"homepage": "https://github.com/Slashgear/gdpr-report#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/Slashgear/gdpr-report/issues"
|
|
18
|
+
},
|
|
15
19
|
"license": "MIT",
|
|
20
|
+
"author": "Antoine Caron (https://slashgear.github.io)",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/Slashgear/gdpr-report.git"
|
|
24
|
+
},
|
|
16
25
|
"bin": {
|
|
17
26
|
"gdpr-scan": "dist/cli.js"
|
|
18
27
|
},
|