@adobe/helix-html-pipeline 6.14.7 → 6.14.9

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
+ ## [6.14.9](https://github.com/adobe/helix-html-pipeline/compare/v6.14.8...v6.14.9) (2024-09-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @adobe/helix-markdown-support to v7.1.6 ([#699](https://github.com/adobe/helix-html-pipeline/issues/699)) ([7722d18](https://github.com/adobe/helix-html-pipeline/commit/7722d18fe772b7e1b399c889c9cf46a4b2d5e55a))
7
+
8
+ ## [6.14.8](https://github.com/adobe/helix-html-pipeline/compare/v6.14.7...v6.14.8) (2024-09-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * missing config/support should not be treated as 500 ([#694](https://github.com/adobe/helix-html-pipeline/issues/694)) ([63e905b](https://github.com/adobe/helix-html-pipeline/commit/63e905b624fbe5987d57c8f10b40a693ad99f554))
14
+
1
15
  ## [6.14.7](https://github.com/adobe/helix-html-pipeline/compare/v6.14.6...v6.14.7) (2024-09-18)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-html-pipeline",
3
- "version": "6.14.7",
3
+ "version": "6.14.9",
4
4
  "description": "Helix HTML Pipeline",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -43,21 +43,21 @@
43
43
  "node": ">=16.x"
44
44
  },
45
45
  "dependencies": {
46
- "@adobe/helix-markdown-support": "7.1.5",
46
+ "@adobe/helix-markdown-support": "7.1.6",
47
47
  "@adobe/helix-shared-utils": "3.0.2",
48
48
  "@adobe/mdast-util-gridtables": "4.0.6",
49
49
  "@adobe/remark-gridtables": "3.0.6",
50
50
  "github-slugger": "2.0.0",
51
51
  "hast-util-raw": "9.0.4",
52
52
  "hast-util-select": "6.0.2",
53
- "hast-util-to-html": "9.0.2",
53
+ "hast-util-to-html": "9.0.3",
54
54
  "hast-util-to-string": "3.0.0",
55
55
  "hastscript": "9.0.0",
56
56
  "lodash.escape": "4.0.1",
57
57
  "mdast-util-to-hast": "13.2.0",
58
58
  "mdast-util-to-string": "4.0.0",
59
59
  "mime": "4.0.4",
60
- "rehype-format": "5.0.0",
60
+ "rehype-format": "5.0.1",
61
61
  "rehype-parse": "9.0.0",
62
62
  "remark-parse": "11.0.0",
63
63
  "strip-markdown": "6.0.0",
@@ -76,7 +76,7 @@
76
76
  "@semantic-release/git": "10.0.1",
77
77
  "@semantic-release/npm": "12.0.1",
78
78
  "c8": "10.1.2",
79
- "eslint": "8.57.0",
79
+ "eslint": "8.57.1",
80
80
  "eslint-import-resolver-exports": "1.0.0-beta.5",
81
81
  "eslint-plugin-header": "3.1.1",
82
82
  "eslint-plugin-import": "2.30.0",
@@ -84,7 +84,7 @@
84
84
  "husky": "9.1.6",
85
85
  "js-yaml": "4.1.0",
86
86
  "jsdom": "25.0.0",
87
- "junit-report-builder": "5.0.0",
87
+ "junit-report-builder": "5.1.1",
88
88
  "lint-staged": "15.2.10",
89
89
  "mocha": "10.7.3",
90
90
  "mocha-multi-reporters": "1.5.1",
@@ -55,10 +55,10 @@ export default async function validateCaptcha(state, body) {
55
55
  // Check captcha type is correctly configured
56
56
  const validator = SUPPORTED_CAPTCHA_TYPES[captcha.type];
57
57
  if (!validator) {
58
- throw new PipelineStatusError(500, `The captcha type ${captcha.type} is not supported.`);
58
+ throw new PipelineStatusError(400, `The captcha type ${captcha.type} is not supported.`);
59
59
  }
60
60
  if (!captcha.secret) {
61
- throw new PipelineStatusError(500, 'Captcha secret key is not configured.');
61
+ throw new PipelineStatusError(400, 'Captcha secret key is not configured.');
62
62
  }
63
63
 
64
64
  // Perform validation