@guardian/pan-domain-node 1.2.0 → 1.2.3

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,23 @@
1
1
  # @guardian/pan-domain-node
2
2
 
3
+ ## 1.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - f72f1c3: Bump @aws-sdk to latest to remove vulnerable fast-xml-parser version
8
+
9
+ ## 1.2.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 567436a: no-op release to test migration to NPM trusted publishing #2
14
+
15
+ ## 1.2.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 502bbd5: no-op release to test migration to NPM trusted publishing
20
+
3
21
  ## 1.2.0
4
22
 
5
23
  ### Minor Changes
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@guardian/pan-domain-node",
3
- "version": "1.2.0",
3
+ "version": "1.2.3",
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-authentication.git"
9
+ "url": "git+https://github.com/guardian/pan-domain-node.git"
10
10
  },
11
11
  "keywords": [
12
12
  "auth",
@@ -22,6 +22,7 @@
22
22
  },
23
23
  "homepage": "https://github.com/guardian/pan-domain-authentication",
24
24
  "devDependencies": {
25
+ "@aws-sdk/types": "^3.973.1",
25
26
  "@changesets/cli": "^2.27.10",
26
27
  "@types/cookie": "^0.4.0",
27
28
  "@types/iniparser": "0.0.29",
@@ -32,9 +33,8 @@
32
33
  "typescript": "^5.7.3"
33
34
  },
34
35
  "dependencies": {
35
- "@aws-sdk/client-s3": "^3.299.0",
36
- "@aws-sdk/credential-providers": "^3.299.0",
37
- "@aws-sdk/types": "^3.299.0",
36
+ "@aws-sdk/client-s3": "^3.995.0",
37
+ "@aws-sdk/credential-providers": "^3.995.0",
38
38
  "cookie": "^0.4.1",
39
39
  "iniparser": "^1.0.5"
40
40
  },