@adobe/helix-html-pipeline 5.0.9 → 5.0.11

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
+ ## [5.0.11](https://github.com/adobe/helix-html-pipeline/compare/v5.0.10...v5.0.11) (2023-10-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 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))
7
+
8
+ ## [5.0.10](https://github.com/adobe/helix-html-pipeline/compare/v5.0.9...v5.0.10) (2023-10-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency @adobe/remark-gridtables to v2.0.2 ([38bd2fa](https://github.com/adobe/helix-html-pipeline/commit/38bd2fad0b12d1f9b87b16c304eccef3842e56d2))
14
+
1
15
  ## [5.0.9](https://github.com/adobe/helix-html-pipeline/compare/v5.0.8...v5.0.9) (2023-10-14)
2
16
 
3
17
 
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.11",
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",
@@ -61,7 +61,7 @@
61
61
  "rehype-parse": "9.0.0",
62
62
  "remark-parse": "11.0.0",
63
63
  "strip-markdown": "5.0.1",
64
- "unified": "11.0.3",
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
  /**