@adobe/helix-google-support 3.3.3 → 3.3.5
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 +14 -0
- package/package.json +7 -7
- package/src/GoogleClient.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.3.5](https://github.com/adobe/helix-google-support/compare/v3.3.4...v3.3.5) (2025-09-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* decrease log level for not found ([#512](https://github.com/adobe/helix-google-support/issues/512)) ([691b0b6](https://github.com/adobe/helix-google-support/commit/691b0b681f4af82ec9d5cc51e5133186c44cec34))
|
|
7
|
+
|
|
8
|
+
## [3.3.4](https://github.com/adobe/helix-google-support/compare/v3.3.3...v3.3.4) (2025-09-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **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))
|
|
14
|
+
|
|
1
15
|
## [3.3.3](https://github.com/adobe/helix-google-support/compare/v3.3.2...v3.3.3) (2025-06-24)
|
|
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.
|
|
3
|
+
"version": "3.3.5",
|
|
4
4
|
"description": "Helix Google Support",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"lru-cache": "^11.0.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@adobe/eslint-config-helix": "3.0.
|
|
43
|
+
"@adobe/eslint-config-helix": "3.0.10",
|
|
44
44
|
"@adobe/helix-shared-tokencache": "1.5.0",
|
|
45
|
-
"@eslint/config-helpers": "0.
|
|
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",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
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.
|
|
55
|
-
"mocha": "11.7.
|
|
54
|
+
"lint-staged": "16.1.6",
|
|
55
|
+
"mocha": "11.7.2",
|
|
56
56
|
"mocha-multi-reporters": "1.5.1",
|
|
57
|
-
"mocha-suppress-logs": "0.
|
|
57
|
+
"mocha-suppress-logs": "0.6.0",
|
|
58
58
|
"nock": "13.5.6",
|
|
59
|
-
"semantic-release": "24.2.
|
|
59
|
+
"semantic-release": "24.2.7"
|
|
60
60
|
},
|
|
61
61
|
"lint-staged": {
|
|
62
62
|
"*.js": "eslint",
|
package/src/GoogleClient.js
CHANGED
|
@@ -409,7 +409,7 @@ export class GoogleClient {
|
|
|
409
409
|
} catch (e) {
|
|
410
410
|
const err = processError(e);
|
|
411
411
|
if (err.response && err.response.status === 404) {
|
|
412
|
-
log.
|
|
412
|
+
log.debug(`unable to get items for ${fileId}. Not found`);
|
|
413
413
|
return [];
|
|
414
414
|
}
|
|
415
415
|
log.warn(`unable to get items for ${fileId}. ${err}`);
|