@adobe/helix-html-pipeline 1.5.7 → 1.6.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 +21 -0
- package/package.json +6 -6
- package/src/forms-pipe.js +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [1.6.1](https://github.com/adobe/helix-html-pipeline/compare/v1.6.0...v1.6.1) (2022-05-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @adobe/helix-markdown-support to v3.1.6 ([#68](https://github.com/adobe/helix-html-pipeline/issues/68)) ([9f47826](https://github.com/adobe/helix-html-pipeline/commit/9f47826b5104013145056260d58e8ebe4e1343a7))
|
|
7
|
+
|
|
8
|
+
# [1.6.0](https://github.com/adobe/helix-html-pipeline/compare/v1.5.8...v1.6.0) (2022-05-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* adding maintenance branch ([ce43691](https://github.com/adobe/helix-html-pipeline/commit/ce43691b0ed7ef39ae137027c5eb3046812d46f6))
|
|
14
|
+
|
|
15
|
+
## [1.5.8](https://github.com/adobe/helix-html-pipeline/compare/v1.5.7...v1.5.8) (2022-05-19)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* forms service expect repo and owner in message body ([a14e6a0](https://github.com/adobe/helix-html-pipeline/commit/a14e6a0800704a49173ae62ca95dfcbc2cdd3638))
|
|
21
|
+
|
|
1
22
|
## [1.5.7](https://github.com/adobe/helix-html-pipeline/compare/v1.5.6...v1.5.7) (2022-05-17)
|
|
2
23
|
|
|
3
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-html-pipeline",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Helix HTML Pipeline",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"loader": "esmock"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@adobe/helix-markdown-support": "3.1.
|
|
33
|
+
"@adobe/helix-markdown-support": "3.1.6",
|
|
34
34
|
"@adobe/helix-shared-utils": "2.0.10",
|
|
35
35
|
"github-slugger": "1.4.0",
|
|
36
36
|
"hast-util-raw": "7.2.1",
|
|
37
|
-
"hast-util-select": "5.0.
|
|
37
|
+
"hast-util-select": "5.0.2",
|
|
38
38
|
"hast-util-to-html": "8.0.3",
|
|
39
39
|
"hast-util-to-string": "2.0.0",
|
|
40
40
|
"hastscript": "7.0.2",
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"@semantic-release/changelog": "6.0.1",
|
|
70
70
|
"@semantic-release/git": "10.0.1",
|
|
71
71
|
"@semantic-release/npm": "9.0.1",
|
|
72
|
-
"c8": "7.11.
|
|
73
|
-
"eslint": "8.
|
|
72
|
+
"c8": "7.11.3",
|
|
73
|
+
"eslint": "8.16.0",
|
|
74
74
|
"eslint-plugin-header": "3.1.1",
|
|
75
75
|
"eslint-plugin-import": "2.26.0",
|
|
76
76
|
"esmock": "1.7.5",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"jsdoc-to-markdown": "7.1.1",
|
|
80
80
|
"jsdom": "19.0.0",
|
|
81
81
|
"junit-report-builder": "3.0.0",
|
|
82
|
-
"lint-staged": "12.4.
|
|
82
|
+
"lint-staged": "12.4.2",
|
|
83
83
|
"mocha": "10.0.0",
|
|
84
84
|
"mocha-multi-reporters": "1.5.1",
|
|
85
85
|
"remark-gfm": "3.0.1",
|
package/src/forms-pipe.js
CHANGED
|
@@ -140,10 +140,12 @@ export async function formsPipe(state, request) {
|
|
|
140
140
|
// sheet and the source location is not null
|
|
141
141
|
const host = getOriginalHost(request.headers);
|
|
142
142
|
|
|
143
|
+
// Forms service expect owner and repo in the message body
|
|
144
|
+
body.owner = owner;
|
|
145
|
+
body.repo = repo;
|
|
146
|
+
|
|
143
147
|
const message = {
|
|
144
148
|
url: `https://${ref}--${repo}--${owner}.hlx.live${resourcePath}`,
|
|
145
|
-
owner,
|
|
146
|
-
repo,
|
|
147
149
|
body,
|
|
148
150
|
host,
|
|
149
151
|
sourceLocation,
|