@adobe/helix-html-pipeline 6.27.28 → 6.27.30
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/csp.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [6.27.30](https://github.com/adobe/helix-html-pipeline/compare/v6.27.29...v6.27.30) (2026-03-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* avoid NPE with missing content in csp ([#1057](https://github.com/adobe/helix-html-pipeline/issues/1057)) ([7ea40be](https://github.com/adobe/helix-html-pipeline/commit/7ea40bec6d48d0db7cf009fcecc90ef8f350bc2e))
|
|
7
|
+
|
|
8
|
+
## [6.27.29](https://github.com/adobe/helix-html-pipeline/compare/v6.27.28...v6.27.29) (2026-03-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @adobe/remark-gridtables to v3.0.19 ([#1056](https://github.com/adobe/helix-html-pipeline/issues/1056)) ([8ea50ca](https://github.com/adobe/helix-html-pipeline/commit/8ea50ca13d1afe268cdd6be8be9fbb50943ae7a4))
|
|
14
|
+
|
|
1
15
|
## [6.27.28](https://github.com/adobe/helix-html-pipeline/compare/v6.27.27...v6.27.28) (2026-03-23)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-html-pipeline",
|
|
3
|
-
"version": "6.27.
|
|
3
|
+
"version": "6.27.30",
|
|
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.18",
|
|
46
46
|
"@adobe/helix-shared-utils": "3.0.2",
|
|
47
47
|
"@adobe/mdast-util-gridtables": "4.0.18",
|
|
48
|
-
"@adobe/remark-gridtables": "3.0.
|
|
48
|
+
"@adobe/remark-gridtables": "3.0.19",
|
|
49
49
|
"github-slugger": "2.0.0",
|
|
50
50
|
"hast-util-raw": "9.1.0",
|
|
51
51
|
"hast-util-select": "6.0.4",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"unist-util-visit-parents": "6.0.2"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@adobe/eslint-config-helix": "3.0.
|
|
74
|
-
"@eslint/config-helpers": "0.5.
|
|
73
|
+
"@adobe/eslint-config-helix": "3.0.23",
|
|
74
|
+
"@eslint/config-helpers": "0.5.3",
|
|
75
75
|
"@markedjs/html-differ": "5.0.4",
|
|
76
76
|
"@semantic-release/changelog": "6.0.3",
|
|
77
77
|
"@semantic-release/git": "10.0.1",
|
package/src/steps/csp.js
CHANGED
|
@@ -161,7 +161,7 @@ export function contentSecurityPolicyOnAST(res, tree) {
|
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
// CSP with nonce
|
|
164
|
-
if (metaCSP?.properties.content
|
|
164
|
+
if (metaCSP?.properties.content?.includes(NONCE_AEM)
|
|
165
165
|
|| headersCSP?.includes(NONCE_AEM)
|
|
166
166
|
|| headersCSPRO?.includes(NONCE_AEM)
|
|
167
167
|
) {
|