@plone/volto 16.31.8 → 16.31.9

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.draft CHANGED
@@ -1,7 +1,7 @@
1
- ## 16.31.8 (2024-05-21)
1
+ ## 16.31.9 (2024-05-27)
2
2
 
3
- ### Internal
3
+ ### Bugfix
4
4
 
5
- - Fix `.npmignore` file list - now `npm` seems that honors the undelying filesystem case setting @sneridagh [#0](https://github.com/plone/volto/issues/0)
5
+ - Allow X-Robots-Tag header in images/files middleware @sneridagh [#6043](https://github.com/plone/volto/issues/6043)
6
6
 
7
7
 
Binary file
package/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 16.31.9 (2024-05-27)
12
+
13
+ ### Bugfix
14
+
15
+ - Allow X-Robots-Tag header in images/files middleware @sneridagh [#6043](https://github.com/plone/volto/issues/6043)
16
+
11
17
  ## 16.31.8 (2024-05-21)
12
18
 
13
19
  ### Internal
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  }
10
10
  ],
11
11
  "license": "MIT",
12
- "version": "16.31.8",
12
+ "version": "16.31.9",
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "git@github.com:plone/volto.git"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plone/volto-slate",
3
- "version": "16.31.8",
3
+ "version": "16.31.9",
4
4
  "description": "Slate.js integration with Volto",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -9,6 +9,7 @@ const HEADERS = [
9
9
  'content-type',
10
10
  'x-sendfile',
11
11
  'x-accel-redirect',
12
+ 'x-robots-tag',
12
13
  ];
13
14
 
14
15
  function filesMiddlewareFn(req, res, next) {
@@ -7,6 +7,7 @@ const HEADERS = [
7
7
  'cache-control',
8
8
  'x-sendfile',
9
9
  'x-accel-redirect',
10
+ 'x-robots-tag',
10
11
  ];
11
12
 
12
13
  function imageMiddlewareFn(req, res, next) {