@adobe/helix-google-support 2.2.13 → 2.2.15
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 +8 -8
- package/src/GoogleClient.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.2.15](https://github.com/adobe/helix-google-support/compare/v2.2.14...v2.2.15) (2023-08-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update adobe fixes ([#234](https://github.com/adobe/helix-google-support/issues/234)) ([a8f6745](https://github.com/adobe/helix-google-support/commit/a8f6745cf046d7ff77244396a94a4a0b122b93c2))
|
|
7
|
+
|
|
8
|
+
## [2.2.14](https://github.com/adobe/helix-google-support/compare/v2.2.13...v2.2.14) (2023-08-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external major (major) ([#231](https://github.com/adobe/helix-google-support/issues/231)) ([46391e2](https://github.com/adobe/helix-google-support/commit/46391e22effa54488d884d8f5a86ddd180a08b03))
|
|
14
|
+
|
|
1
15
|
## [2.2.13](https://github.com/adobe/helix-google-support/compare/v2.2.12...v2.2.13) (2023-08-14)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-google-support",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.15",
|
|
4
4
|
"description": "Helix Google Support",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -30,25 +30,25 @@
|
|
|
30
30
|
"reporter-options": "configFile=.mocha-multi.json"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@adobe/helix-onedrive-support": "10.3.
|
|
34
|
-
"googleapis": "
|
|
33
|
+
"@adobe/helix-onedrive-support": "10.3.7",
|
|
34
|
+
"googleapis": "124.0.0",
|
|
35
35
|
"lru-cache": "10.0.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@adobe/helix-shared-tokencache": "1.3.
|
|
39
|
-
"@adobe/eslint-config-helix": "2.0.
|
|
38
|
+
"@adobe/helix-shared-tokencache": "1.3.5",
|
|
39
|
+
"@adobe/eslint-config-helix": "2.0.3",
|
|
40
40
|
"@semantic-release/changelog": "6.0.3",
|
|
41
41
|
"@semantic-release/git": "10.0.1",
|
|
42
42
|
"c8": "8.0.1",
|
|
43
43
|
"eslint": "8.47.0",
|
|
44
44
|
"eslint-plugin-header": "3.1.1",
|
|
45
|
-
"eslint-plugin-import": "2.28.
|
|
45
|
+
"eslint-plugin-import": "2.28.1",
|
|
46
46
|
"husky": "8.0.3",
|
|
47
47
|
"junit-report-builder": "3.0.1",
|
|
48
|
-
"lint-staged": "
|
|
48
|
+
"lint-staged": "14.0.0",
|
|
49
49
|
"mocha": "10.2.0",
|
|
50
50
|
"mocha-multi-reporters": "1.5.1",
|
|
51
|
-
"nock": "13.3.
|
|
51
|
+
"nock": "13.3.3",
|
|
52
52
|
"semantic-release": "21.0.7"
|
|
53
53
|
},
|
|
54
54
|
"lint-staged": {
|
package/src/GoogleClient.js
CHANGED
|
@@ -471,6 +471,7 @@ export class GoogleClient {
|
|
|
471
471
|
throw new StatusCodeError(`Not Found: ${fileId}`, 404);
|
|
472
472
|
}
|
|
473
473
|
// convert message to string
|
|
474
|
+
/* c8 ignore next 3 */
|
|
474
475
|
if (e.message instanceof ArrayBuffer) {
|
|
475
476
|
e.message = Buffer.from(e.message).toString('utf-8');
|
|
476
477
|
}
|