@adobe/helix-html-pipeline 6.15.0 → 6.15.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 +8 -0
- package/package.json +1 -1
- package/src/robots-pipe.js +1 -0
- package/src/sitemap-pipe.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [6.15.1](https://github.com/adobe/helix-html-pipeline/compare/v6.15.0...v6.15.1) (2024-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* adding newline at the end of robots.txt ([95ec386](https://github.com/adobe/helix-html-pipeline/commit/95ec386898c4c5b55b435415e3afd7b31c65ea46))
|
|
7
|
+
* adding newline at the end of sitemap.xml ([2e8382d](https://github.com/adobe/helix-html-pipeline/commit/2e8382dcde265277ea98962d33ae26eacc052647))
|
|
8
|
+
|
|
1
9
|
# [6.15.0](https://github.com/adobe/helix-html-pipeline/compare/v6.14.13...v6.15.0) (2024-10-08)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
package/src/robots-pipe.js
CHANGED
package/src/sitemap-pipe.js
CHANGED
|
@@ -52,6 +52,7 @@ async function generateSitemap(state) {
|
|
|
52
52
|
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">',
|
|
53
53
|
...data.map((record) => loc(record)),
|
|
54
54
|
'</urlset>',
|
|
55
|
+
'',
|
|
55
56
|
].join('\n');
|
|
56
57
|
return new PipelineResponse(xml, {
|
|
57
58
|
status: 200,
|