@adobe/helix-google-support 3.3.2 → 3.3.4

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,17 @@
1
+ ## [3.3.4](https://github.com/adobe/helix-google-support/compare/v3.3.3...v3.3.4) (2025-09-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency lru-cache to v11.2.1 ([#509](https://github.com/adobe/helix-google-support/issues/509)) ([8fcc136](https://github.com/adobe/helix-google-support/commit/8fcc1366f4c4ea35f9989ec8d88b58415e9d0103))
7
+
8
+ ## [3.3.3](https://github.com/adobe/helix-google-support/compare/v3.3.2...v3.3.3) (2025-06-24)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * arguments to OAuth2 should be passed as object ([#498](https://github.com/adobe/helix-google-support/issues/498)) ([7d7ffff](https://github.com/adobe/helix-google-support/commit/7d7ffff5328ab0764fdb1bf613a60a580989db73))
14
+
1
15
  ## [3.3.2](https://github.com/adobe/helix-google-support/compare/v3.3.1...v3.3.2) (2025-06-17)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-google-support",
3
- "version": "3.3.2",
3
+ "version": "3.3.4",
4
4
  "description": "Helix Google Support",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -40,23 +40,23 @@
40
40
  "lru-cache": "^11.0.2"
41
41
  },
42
42
  "devDependencies": {
43
- "@adobe/eslint-config-helix": "3.0.4",
43
+ "@adobe/eslint-config-helix": "3.0.9",
44
44
  "@adobe/helix-shared-tokencache": "1.5.0",
45
- "@eslint/config-helpers": "0.2.3",
45
+ "@eslint/config-helpers": "0.3.1",
46
46
  "@semantic-release/changelog": "6.0.3",
47
47
  "@semantic-release/git": "10.0.1",
48
48
  "c8": "10.1.3",
49
49
  "eslint": "9.4.0",
50
50
  "eslint-plugin-header": "3.1.1",
51
- "eslint-plugin-import": "2.31.0",
51
+ "eslint-plugin-import": "2.32.0",
52
52
  "husky": "9.1.7",
53
53
  "junit-report-builder": "5.1.1",
54
- "lint-staged": "16.1.2",
55
- "mocha": "11.6.0",
54
+ "lint-staged": "16.1.6",
55
+ "mocha": "11.7.2",
56
56
  "mocha-multi-reporters": "1.5.1",
57
- "mocha-suppress-logs": "0.5.1",
57
+ "mocha-suppress-logs": "0.6.0",
58
58
  "nock": "13.5.6",
59
- "semantic-release": "24.2.5"
59
+ "semantic-release": "24.2.7"
60
60
  },
61
61
  "lint-staged": {
62
62
  "*.js": "eslint",
@@ -114,11 +114,11 @@ export class GoogleClient {
114
114
  auth = new google.auth.OAuth2();
115
115
  auth.setCredentials({ access_token: `${opts.token}` });
116
116
  } else {
117
- auth = new google.auth.OAuth2(
118
- opts.clientId,
119
- opts.clientSecret,
120
- opts.redirectUri,
121
- );
117
+ auth = new google.auth.OAuth2({
118
+ clientId: opts.clientId,
119
+ clientSecret: opts.clientSecret,
120
+ redirectUri: opts.redirectUri,
121
+ });
122
122
  }
123
123
  Object.assign(this, {
124
124
  log: opts.log,