@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-html-pipeline",
3
- "version": "3.11.0",
3
+ "version": "3.11.1",
4
4
  "description": "Helix HTML Pipeline",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -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.path),
161
+ state.mappedMetadata.getModifiers(state.info.unmappedPath),
162
162
  getLocalMetadata(hast),
163
163
  );
164
164