@adobe/helix-google-support 3.0.36 → 3.0.38

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.0.38](https://github.com/adobe/helix-google-support/compare/v3.0.37...v3.0.38) (2024-03-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update adobe fixes ([1ec8b88](https://github.com/adobe/helix-google-support/commit/1ec8b88aa69791e5258c4aed2496a18a1aa3d806))
7
+
8
+ ## [3.0.37](https://github.com/adobe/helix-google-support/compare/v3.0.36...v3.0.37) (2024-03-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * allow overwriting property parent ([#338](https://github.com/adobe/helix-google-support/issues/338)) ([776695d](https://github.com/adobe/helix-google-support/commit/776695da3c3780d4417716e07eb663c25d368ffb))
14
+
1
15
  ## [3.0.36](https://github.com/adobe/helix-google-support/compare/v3.0.35...v3.0.36) (2024-03-19)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-google-support",
3
- "version": "3.0.36",
3
+ "version": "3.0.38",
4
4
  "description": "Helix Google Support",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -30,12 +30,12 @@
30
30
  "reporter-options": "configFile=.mocha-multi.json"
31
31
  },
32
32
  "dependencies": {
33
- "@adobe/helix-onedrive-support": "11.3.14",
33
+ "@adobe/helix-onedrive-support": "11.3.15",
34
34
  "googleapis": "134.0.0",
35
35
  "lru-cache": "10.2.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@adobe/helix-shared-tokencache": "1.3.30",
38
+ "@adobe/helix-shared-tokencache": "1.3.31",
39
39
  "@adobe/eslint-config-helix": "2.0.6",
40
40
  "@semantic-release/changelog": "6.0.3",
41
41
  "@semantic-release/git": "10.0.1",
@@ -272,6 +272,7 @@ export class GoogleClient {
272
272
  if (children.length) {
273
273
  // add parent references not-enumerable to avoid deep structures during serialization
274
274
  Object.defineProperty(children[children.length - 1], 'parent', {
275
+ configurable: true,
275
276
  enumerable: false,
276
277
  value: pathItem,
277
278
  });