@adobe/helix-html-pipeline 3.11.0 → 3.11.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 +7 -0
- package/package.json +1 -1
- package/src/steps/extract-metadata.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.11.1](https://github.com/adobe/helix-html-pipeline/compare/v3.11.0...v3.11.1) (2023-04-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* mappedMetadata should be drawn from unmapped path ([8aa7b79](https://github.com/adobe/helix-html-pipeline/commit/8aa7b795a7d6b8b84e1572b471e881bfdbe640d0))
|
|
7
|
+
|
|
1
8
|
# [3.11.0](https://github.com/adobe/helix-html-pipeline/compare/v3.10.2...v3.11.0) (2023-04-24)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -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
|
|