@eeacms/volto-eea-website-theme 4.3.3 → 4.3.4

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
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- ### [4.3.3](https://github.com/eea/volto-eea-website-theme/compare/4.3.2...4.3.3) - 26 May 2026
7
+ ### [4.3.4](https://github.com/eea/volto-eea-website-theme/compare/4.3.3...4.3.4) - 28 May 2026
8
+
9
+ #### :bug: Bug Fixes
10
+
11
+ - fix: 410 Gone pages should not be reported as errors in Sentry - refs #304013 [Alin Voinea - [`9b081df`](https://github.com/eea/volto-eea-website-theme/commit/9b081df15376384ed79b8af2e9e21eba9b348c2c)]
12
+
13
+ ### [4.3.3](https://github.com/eea/volto-eea-website-theme/compare/4.3.2...4.3.3) - 27 May 2026
8
14
 
9
15
  ### [4.3.2](https://github.com/eea/volto-eea-website-theme/compare/4.3.1...4.3.2) - 15 May 2026
10
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-eea-website-theme",
3
- "version": "4.3.3",
3
+ "version": "4.3.4",
4
4
  "description": "@eeacms/volto-eea-website-theme: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -101,7 +101,7 @@ server.use(function (err, req, res, next) {
101
101
  * TODO:
102
102
  * - get ignored codes from Plone error_log
103
103
  */
104
- const ignoredErrors = [301, 302, 401, 404];
104
+ const ignoredErrors = [301, 302, 401, 404, 410];
105
105
  if (!ignoredErrors.includes(err.status)) console.error(err);
106
106
 
107
107
  res
@@ -184,7 +184,7 @@ function setupServer(req, res, next) {
184
184
  * TODO:
185
185
  * - get ignored codes from Plone error_log
186
186
  */
187
- const ignoredErrors = [301, 302, 401, 404];
187
+ const ignoredErrors = [301, 302, 401, 404, 410];
188
188
  if (!ignoredErrors.includes(error.status)) console.error(error);
189
189
 
190
190
  res