@adobe/helix-google-support 2.0.43 → 2.0.45

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
+ ## [2.0.45](https://github.com/adobe/helix-google-support/compare/v2.0.44...v2.0.45) (2023-01-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @adobe/helix-onedrive-support to v9.1.8 ([59ed939](https://github.com/adobe/helix-google-support/commit/59ed9394c55c55f5e17be5647cafa5bbe91b4830))
7
+
8
+ ## [2.0.44](https://github.com/adobe/helix-google-support/compare/v2.0.43...v2.0.44) (2023-01-15)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * 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))
14
+
1
15
  ## [2.0.43](https://github.com/adobe/helix-google-support/compare/v2.0.42...v2.0.43) (2023-01-10)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-google-support",
3
- "version": "2.0.43",
3
+ "version": "2.0.45",
4
4
  "description": "Helix Google Support",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -30,7 +30,7 @@
30
30
  "reporter-options": "configFile=.mocha-multi.json"
31
31
  },
32
32
  "dependencies": {
33
- "@adobe/helix-onedrive-support": "9.1.7",
33
+ "@adobe/helix-onedrive-support": "9.1.8",
34
34
  "googleapis": "110.0.0",
35
35
  "lru-cache": "7.14.1"
36
36
  },
@@ -39,15 +39,15 @@
39
39
  "@semantic-release/changelog": "6.0.2",
40
40
  "@semantic-release/git": "10.0.1",
41
41
  "c8": "7.12.0",
42
- "eslint": "8.31.0",
42
+ "eslint": "8.32.0",
43
43
  "eslint-plugin-header": "3.1.1",
44
- "eslint-plugin-import": "2.26.0",
44
+ "eslint-plugin-import": "2.27.5",
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.2.9",
50
+ "nock": "13.3.0",
51
51
  "semantic-release": "20.0.0"
52
52
  },
53
53
  "lint-staged": {
@@ -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.warn(`unable to get items for ${fileId}. Not found`);
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}`);