@adobe/helix-shared-config 9.1.0 → 9.1.1
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 +4 -4
- package/src/SitemapHandler.js +1 -1
- package/src/config-wrapper.js +2 -2
- package/src/fetchconfig/fetch.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@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)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* @adobe/helix-fetch -> @adobe/helix ([0d05930](https://github.com/adobe/helix-shared/commit/0d05930fa34bcb9f641f1bd85b603647e7b210cf))
|
|
7
|
+
|
|
1
8
|
# [@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
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-shared-config",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.1",
|
|
4
4
|
"description": "Shared modules of the Helix Project - config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"reporter-options": "configFile=.mocha-multi.json"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@adobe/
|
|
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
|
|
34
|
+
"@adobe/helix-shared-utils": "^2.1.0",
|
|
35
35
|
"ajv": "8.11.0",
|
|
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.
|
|
40
|
+
"lru-cache": "7.14.0",
|
|
41
41
|
"object-hash": "3.0.0",
|
|
42
42
|
"uri-js": "4.4.1",
|
|
43
43
|
"yaml": "2.1.1"
|
package/src/SitemapHandler.js
CHANGED
|
@@ -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/
|
|
12
|
+
const fetchAPI = require('@adobe/fetch');
|
|
13
13
|
const { NamedMapHandler } = require('./NamedMapHandler.js');
|
|
14
14
|
|
|
15
15
|
const wrap = (sitemap) => {
|
package/src/config-wrapper.js
CHANGED
|
@@ -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/
|
|
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
|
|
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
|
package/src/fetchconfig/fetch.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
const fetchAPI = require('@adobe/
|
|
13
|
+
const fetchAPI = require('@adobe/fetch');
|
|
14
14
|
const utils = require('@adobe/helix-shared-utils');
|
|
15
15
|
const cache = require('./cache');
|
|
16
16
|
|