@adobe/helix-google-support 2.0.43 → 2.0.44
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 +7 -0
- package/package.json +3 -3
- package/src/GoogleClient.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.0.44](https://github.com/adobe/helix-google-support/compare/v2.0.43...v2.0.44) (2023-01-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 404 should be logged as info ([#127](https://github.com/adobe/helix-google-support/issues/127)) ([4a8ca4c](https://github.com/adobe/helix-google-support/commit/4a8ca4c5b3a080ecf770d3768e04ed744e2729c7))
|
|
7
|
+
|
|
1
8
|
## [2.0.43](https://github.com/adobe/helix-google-support/compare/v2.0.42...v2.0.43) (2023-01-10)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-google-support",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.44",
|
|
4
4
|
"description": "Helix Google Support",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
"c8": "7.12.0",
|
|
42
42
|
"eslint": "8.31.0",
|
|
43
43
|
"eslint-plugin-header": "3.1.1",
|
|
44
|
-
"eslint-plugin-import": "2.
|
|
44
|
+
"eslint-plugin-import": "2.27.4",
|
|
45
45
|
"husky": "8.0.3",
|
|
46
46
|
"junit-report-builder": "3.0.1",
|
|
47
47
|
"lint-staged": "13.1.0",
|
|
48
48
|
"mocha": "10.2.0",
|
|
49
49
|
"mocha-multi-reporters": "1.5.1",
|
|
50
|
-
"nock": "13.
|
|
50
|
+
"nock": "13.3.0",
|
|
51
51
|
"semantic-release": "20.0.0"
|
|
52
52
|
},
|
|
53
53
|
"lint-staged": {
|
package/src/GoogleClient.js
CHANGED
|
@@ -379,7 +379,7 @@ export class GoogleClient {
|
|
|
379
379
|
return await this.getItems(fileId, roots);
|
|
380
380
|
} catch (e) {
|
|
381
381
|
if (e.response && e.response.status === 404) {
|
|
382
|
-
log.
|
|
382
|
+
log.info(`unable to get items for ${fileId}. Not found`);
|
|
383
383
|
return [];
|
|
384
384
|
}
|
|
385
385
|
log.warn(`unable to get items for ${fileId}. ${e}`);
|