@eeacms/volto-cca-policy 0.2.92 → 0.2.93

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,6 +4,12 @@ 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
+ ### [0.2.93](https://github.com/eea/volto-cca-policy/compare/0.2.92...0.2.93) - 9 January 2025
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - Refs #282332 - remove old include_archive_content [Tripon Eugen - [`5fd76f0`](https://github.com/eea/volto-cca-policy/commit/5fd76f0eee21cad3ea43d007d2006b1297631c55)]
12
+ - Refs #282332 - remove old include_archive_content [Tripon Eugen - [`29703b0`](https://github.com/eea/volto-cca-policy/commit/29703b00247cbd2b0afb9b5d2e2e0cef9a381a18)]
7
13
  ### [0.2.92](https://github.com/eea/volto-cca-policy/compare/0.2.91...0.2.92) - 9 January 2025
8
14
 
9
15
  #### :rocket: New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-cca-policy",
3
- "version": "0.2.92",
3
+ "version": "0.2.93",
4
4
  "description": "@eeacms/volto-cca-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -49,7 +49,9 @@ const facets = [
49
49
  }),
50
50
  language,
51
51
  include_archived,
52
- ...globalSearchBaseConfig.facets.filter((f) => f.field !== 'language'),
52
+ ...globalSearchBaseConfig.facets.filter(
53
+ (f) => !['language', 'IncludeArchived'].includes(f.field),
54
+ ),
53
55
  ];
54
56
 
55
57
  export default facets;