@adobe/helix-html-pipeline 5.0.9 → 5.0.12

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,24 @@
1
+ ## [5.0.12](https://github.com/adobe/helix-html-pipeline/compare/v5.0.11...v5.0.12) (2023-10-31)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external major ([#444](https://github.com/adobe/helix-html-pipeline/issues/444)) ([2632db5](https://github.com/adobe/helix-html-pipeline/commit/2632db59521878ce42331b9486a3e5d07469624d))
7
+
8
+ ## [5.0.11](https://github.com/adobe/helix-html-pipeline/compare/v5.0.10...v5.0.11) (2023-10-30)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * respect in preview and live host ([#443](https://github.com/adobe/helix-html-pipeline/issues/443)) ([e70e369](https://github.com/adobe/helix-html-pipeline/commit/e70e36965d16c6bc1696d46a0522cefb3e824be5))
14
+
15
+ ## [5.0.10](https://github.com/adobe/helix-html-pipeline/compare/v5.0.9...v5.0.10) (2023-10-14)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **deps:** update dependency @adobe/remark-gridtables to v2.0.2 ([38bd2fa](https://github.com/adobe/helix-html-pipeline/commit/38bd2fad0b12d1f9b87b16c304eccef3842e56d2))
21
+
1
22
  ## [5.0.9](https://github.com/adobe/helix-html-pipeline/compare/v5.0.8...v5.0.9) (2023-10-14)
2
23
 
3
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-html-pipeline",
3
- "version": "5.0.9",
3
+ "version": "5.0.12",
4
4
  "description": "Helix HTML Pipeline",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -45,7 +45,7 @@
45
45
  "@adobe/helix-markdown-support": "7.1.0",
46
46
  "@adobe/helix-shared-utils": "3.0.0",
47
47
  "@adobe/mdast-util-gridtables": "3.0.2",
48
- "@adobe/remark-gridtables": "2.0.1",
48
+ "@adobe/remark-gridtables": "2.0.2",
49
49
  "cookie": "0.5.0",
50
50
  "github-slugger": "2.0.0",
51
51
  "hast-util-raw": "9.0.1",
@@ -53,15 +53,15 @@
53
53
  "hast-util-to-html": "9.0.0",
54
54
  "hast-util-to-string": "3.0.0",
55
55
  "hastscript": "8.0.0",
56
- "jose": "4.15.4",
56
+ "jose": "5.0.1",
57
57
  "mdast-util-to-hast": "13.0.2",
58
58
  "mdast-util-to-string": "4.0.0",
59
59
  "mime": "3.0.0",
60
60
  "rehype-format": "5.0.0",
61
61
  "rehype-parse": "9.0.0",
62
62
  "remark-parse": "11.0.0",
63
- "strip-markdown": "5.0.1",
64
- "unified": "11.0.3",
63
+ "strip-markdown": "6.0.0",
64
+ "unified": "11.0.4",
65
65
  "unist-util-map": "4.0.0",
66
66
  "unist-util-remove": "4.0.0",
67
67
  "unist-util-remove-position": "5.0.0",
@@ -70,25 +70,25 @@
70
70
  "unist-util-visit-parents": "6.0.1"
71
71
  },
72
72
  "devDependencies": {
73
- "@adobe/eslint-config-helix": "2.0.3",
73
+ "@adobe/eslint-config-helix": "2.0.4",
74
74
  "@markedjs/html-differ": "4.0.2",
75
75
  "@semantic-release/changelog": "6.0.3",
76
76
  "@semantic-release/git": "10.0.1",
77
77
  "@semantic-release/npm": "11.0.0",
78
78
  "c8": "8.0.1",
79
- "eslint": "8.51.0",
79
+ "eslint": "8.52.0",
80
80
  "eslint-import-resolver-exports": "1.0.0-beta.5",
81
81
  "eslint-plugin-header": "3.1.1",
82
- "eslint-plugin-import": "2.28.1",
83
- "esmock": "2.5.4",
82
+ "eslint-plugin-import": "2.29.0",
83
+ "esmock": "2.5.8",
84
84
  "husky": "8.0.3",
85
85
  "js-yaml": "4.1.0",
86
86
  "jsdom": "22.1.0",
87
87
  "junit-report-builder": "3.1.0",
88
- "lint-staged": "14.0.1",
88
+ "lint-staged": "15.0.2",
89
89
  "mocha": "10.2.0",
90
90
  "mocha-multi-reporters": "1.5.1",
91
- "mocha-suppress-logs": "0.3.1",
91
+ "mocha-suppress-logs": "0.4.1",
92
92
  "semantic-release": "22.0.5"
93
93
  },
94
94
  "lint-staged": {
@@ -42,7 +42,8 @@ function replaceParams(str, info) {
42
42
  }
43
43
  return str
44
44
  .replaceAll('$owner', info.owner)
45
- .replaceAll('$repo', info.repo);
45
+ .replaceAll('$repo', info.repo)
46
+ .replaceAll('$ref', info.ref);
46
47
  }
47
48
 
48
49
  /**