@adobe/helix-shared-config 9.1.0 → 9.1.2

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
+ # [@adobe/helix-shared-config-v9.1.2](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v9.1.1...@adobe/helix-shared-config-v9.1.2) (2022-11-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([6d20238](https://github.com/adobe/helix-shared/commit/6d20238f8e8fb6e79447b71e7a417e3b3b8f863e))
7
+
8
+ # [@adobe/helix-shared-config-v9.1.1](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v9.1.0...@adobe/helix-shared-config-v9.1.1) (2022-09-23)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * @adobe/helix-fetch -> @adobe/helix ([0d05930](https://github.com/adobe/helix-shared/commit/0d05930fa34bcb9f641f1bd85b603647e7b210cf))
14
+
1
15
  # [@adobe/helix-shared-config-v9.1.0](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v9.0.0...@adobe/helix-shared-config-v9.1.0) (2022-09-13)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-shared-config",
3
- "version": "9.1.0",
3
+ "version": "9.1.2",
4
4
  "description": "Shared modules of the Helix Project - config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -28,23 +28,23 @@
28
28
  "reporter-options": "configFile=.mocha-multi.json"
29
29
  },
30
30
  "dependencies": {
31
- "@adobe/helix-fetch": "^3.0.3",
31
+ "@adobe/fetch": "^3.1.4",
32
32
  "@adobe/helix-shared-git": "^2.0.4",
33
33
  "@adobe/helix-shared-prune": "^1.0.5",
34
- "@adobe/helix-shared-utils": "^2.0.11",
35
- "ajv": "8.11.0",
34
+ "@adobe/helix-shared-utils": "^2.1.0",
35
+ "ajv": "8.11.2",
36
36
  "ajv-formats": "2.1.1",
37
37
  "cookie": "0.5.0",
38
38
  "fs-extra": "10.1.0",
39
39
  "ignore": "5.2.0",
40
- "lru-cache": "7.10.2",
40
+ "lru-cache": "7.14.0",
41
41
  "object-hash": "3.0.0",
42
42
  "uri-js": "4.4.1",
43
- "yaml": "2.1.1"
43
+ "yaml": "2.1.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@adobe/helix-shared-wrap": "^1.0.5",
47
- "@adobe/helix-testutils": "0.4.13",
47
+ "@adobe/helix-testutils": "0.4.14",
48
48
  "@pollyjs/adapter-node-http": "6.0.5",
49
49
  "@pollyjs/core": "6.0.5",
50
50
  "@pollyjs/persister-fs": "6.0.5",
@@ -44,7 +44,7 @@ function stripQuery(m, ...specialparams) {
44
44
 
45
45
  const onedriveDecorator = {
46
46
  test(m) {
47
- return /https:\/\/.*\.sharepoint\.com/.test(m.url) || m.url.startsWith('https://1drv.ms/') || m.url.startsWith('onedrive:');
47
+ return /^https:\/\/[^/]+\.sharepoint\.com\//.test(m.url) || m.url.startsWith('https://1drv.ms/') || m.url.startsWith('onedrive:');
48
48
  },
49
49
  decorate(m) {
50
50
  return {
@@ -9,7 +9,7 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
- const fetchAPI = require('@adobe/helix-fetch');
12
+ const fetchAPI = require('@adobe/fetch');
13
13
  const { NamedMapHandler } = require('./NamedMapHandler.js');
14
14
 
15
15
  const wrap = (sitemap) => {
@@ -9,7 +9,7 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
- const { Request, Response } = require('@adobe/helix-fetch');
12
+ const { Request, Response } = require('@adobe/fetch');
13
13
  const { cleanupHeaderValue } = require('@adobe/helix-shared-utils');
14
14
  const fstab = require('./MountConfig');
15
15
  const index = require('./IndexConfig');
@@ -88,7 +88,7 @@ function wrap(func, required, ...configs) {
88
88
  options.headers.authorization = authorization;
89
89
  }
90
90
 
91
- // init is a helper function in helix-fetch that makes it easy
91
+ // init is a helper function in @adobe.fetch that makes it easy
92
92
  // to recreate a request by returning the inital options
93
93
  // the request needs to be re-created because `getData` consumed
94
94
  // the body
@@ -10,7 +10,7 @@
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
12
 
13
- const fetchAPI = require('@adobe/helix-fetch');
13
+ const fetchAPI = require('@adobe/fetch');
14
14
  const utils = require('@adobe/helix-shared-utils');
15
15
  const cache = require('./cache');
16
16