@guardian/pan-domain-node 1.2.0 → 1.2.2
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.
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
name: CORE4 label enforcement
|
|
2
|
+
permissions:
|
|
3
|
+
contents: read
|
|
4
|
+
on:
|
|
5
|
+
pull_request:
|
|
6
|
+
types: [opened, labeled, unlabeled, synchronize, reopened, edited]
|
|
7
|
+
jobs:
|
|
8
|
+
require-label:
|
|
9
|
+
uses: guardian/.github/.github/workflows/require-label.yaml@4cb5024736632ffcc564b7f4b772c38b8e5ce739 # v2.0.0
|
|
@@ -22,6 +22,11 @@ jobs:
|
|
|
22
22
|
cache: npm
|
|
23
23
|
cache-dependency-path: "package-lock.json"
|
|
24
24
|
|
|
25
|
+
# See https://docs.npmjs.com/trusted-publishers
|
|
26
|
+
# Find the latest version with `npm info npm@latest version`
|
|
27
|
+
- name: Install suitable NPM version for trusted publishing
|
|
28
|
+
run: npm install -g npm@11.10.1
|
|
29
|
+
|
|
25
30
|
- name: Install
|
|
26
31
|
run: npm ci
|
|
27
32
|
|
|
@@ -54,4 +59,3 @@ jobs:
|
|
|
54
59
|
|
|
55
60
|
env:
|
|
56
61
|
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
57
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @guardian/pan-domain-node
|
|
2
2
|
|
|
3
|
+
## 1.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 567436a: no-op release to test migration to NPM trusted publishing #2
|
|
8
|
+
|
|
9
|
+
## 1.2.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 502bbd5: no-op release to test migration to NPM trusted publishing
|
|
14
|
+
|
|
3
15
|
## 1.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guardian/pan-domain-node",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "NodeJs implementation of Guardian pan-domain auth verification",
|
|
5
5
|
"main": "dist/src/api.js",
|
|
6
6
|
"types": "dist/src/api.d.ts",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/guardian/pan-domain-
|
|
9
|
+
"url": "git+https://github.com/guardian/pan-domain-node.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"auth",
|