@adobe/helix-html-pipeline 3.11.0 → 3.11.2
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 +14 -0
- package/package.json +4 -4
- package/src/steps/extract-metadata.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.11.2](https://github.com/adobe/helix-html-pipeline/compare/v3.11.1...v3.11.2) (2023-04-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([e9a798c](https://github.com/adobe/helix-html-pipeline/commit/e9a798ccccf57a5ab73d22470cb8549f9962a1de))
|
|
7
|
+
|
|
8
|
+
## [3.11.1](https://github.com/adobe/helix-html-pipeline/compare/v3.11.0...v3.11.1) (2023-04-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* mappedMetadata should be drawn from unmapped path ([8aa7b79](https://github.com/adobe/helix-html-pipeline/commit/8aa7b795a7d6b8b84e1572b471e881bfdbe640d0))
|
|
14
|
+
|
|
1
15
|
# [3.11.0](https://github.com/adobe/helix-html-pipeline/compare/v3.10.2...v3.11.0) (2023-04-24)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-html-pipeline",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.2",
|
|
4
4
|
"description": "Helix HTML Pipeline",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"hast-util-to-html": "8.0.4",
|
|
51
51
|
"hast-util-to-string": "2.0.0",
|
|
52
52
|
"hastscript": "7.2.0",
|
|
53
|
-
"jose": "4.14.
|
|
53
|
+
"jose": "4.14.3",
|
|
54
54
|
"mdast-util-gfm-footnote": "1.0.2",
|
|
55
55
|
"mdast-util-gfm-strikethrough": "1.0.3",
|
|
56
56
|
"mdast-util-gfm-table": "1.0.7",
|
|
@@ -92,11 +92,11 @@
|
|
|
92
92
|
"js-yaml": "4.1.0",
|
|
93
93
|
"jsdom": "21.1.1",
|
|
94
94
|
"junit-report-builder": "3.0.1",
|
|
95
|
-
"lint-staged": "13.2.
|
|
95
|
+
"lint-staged": "13.2.2",
|
|
96
96
|
"mocha": "10.2.0",
|
|
97
97
|
"mocha-multi-reporters": "1.5.1",
|
|
98
98
|
"remark-gfm": "3.0.1",
|
|
99
|
-
"semantic-release": "21.0.
|
|
99
|
+
"semantic-release": "21.0.2"
|
|
100
100
|
},
|
|
101
101
|
"lint-staged": {
|
|
102
102
|
"*.js": "eslint",
|
|
@@ -158,7 +158,7 @@ export default function extractMetaData(state, req) {
|
|
|
158
158
|
// with local metadata from document
|
|
159
159
|
const metaConfig = Object.assign(
|
|
160
160
|
state.metadata.getModifiers(state.info.unmappedPath || state.info.path),
|
|
161
|
-
state.mappedMetadata.getModifiers(state.info.
|
|
161
|
+
state.mappedMetadata.getModifiers(state.info.unmappedPath),
|
|
162
162
|
getLocalMetadata(hast),
|
|
163
163
|
);
|
|
164
164
|
|