@eeacms/volto-cca-policy 1.0.1 → 1.0.3
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/.github/workflows/betterleaks.yml +133 -0
- package/.gitleaks.toml +89 -0
- package/CHANGELOG.md +262 -1
- package/README.md +59 -0
- package/RELEASE.md +1 -1
- package/jest-addon.config.js +7 -3
- package/package.json +3 -2
- package/src/components/Search/NavigatorCatalogue/NavigatorCatalogueCardItem.jsx +228 -0
- package/src/components/Search/NavigatorCatalogue/NavigatorCatalogueCardItem.test.jsx +167 -0
- package/src/components/Search/NavigatorCatalogue/NavigatorCatalogueContentView.jsx +189 -0
- package/src/components/Search/NavigatorCatalogue/NavigatorCatalogueMapView.jsx +11 -0
- package/src/components/Search/NavigatorCatalogue/utils.js +101 -0
- package/src/components/Search/NavigatorCatalogue/utils.test.js +132 -0
- package/src/components/Search/NavigatorGuide/NavigatorGuideContentView.jsx +409 -0
- package/src/components/Search/NavigatorGuide/NavigatorGuideLayout.jsx +8 -0
- package/src/components/index.js +2 -0
- package/src/components/manage/Blocks/CollectionStatistics/CollectionStatsView.test.jsx +2 -0
- package/src/components/theme/CompareTools/CompareToolsPanel.jsx +151 -0
- package/src/components/theme/CompareTools/CompareToolsPanel.test.jsx +96 -0
- package/src/components/theme/CompareTools/CompareToolsView.jsx +468 -0
- package/src/components/theme/CompareTools/utils.js +111 -0
- package/src/components/theme/CompareTools/utils.test.jsx +217 -0
- package/src/components/theme/Views/ExtendedToolView.jsx +409 -0
- package/src/components/theme/Views/ExtendedToolView.test.jsx +436 -0
- package/src/constants.js +1 -0
- package/src/customizations/@plone-collective/volto-rss-provider/express-middleware.js +1 -1
- package/src/customizations/volto/components/theme/View/LinkView.jsx +1 -1
- package/src/customizations/volto/reducers/breadcrumbs/breadcrumbs.js +1 -1
- package/src/customizations/volto/server.jsx +1 -1
- package/src/helpers/Utils.jsx +29 -0
- package/src/helpers/index.js +3 -0
- package/src/index.js +31 -2
- package/src/search/index.js +6 -0
- package/src/search/navigator_catalogue/config.js +89 -0
- package/src/search/navigator_catalogue/facets.js +86 -0
- package/src/search/navigator_catalogue/views.js +28 -0
- package/src/search/navigator_guide/config.js +70 -0
- package/src/search/navigator_guide/facets.js +31 -0
- package/src/search/navigator_guide/guideSteps.js +93 -0
- package/src/slate-styles.less +4 -0
- package/src/state.js +1 -0
- package/theme/elements/button.overrides +0 -11
- package/theme/elements/label.overrides +15 -0
- package/theme/globals/blocks.less +3 -2
- package/theme/globals/navigator.less +967 -0
- package/theme/globals/site.overrides +5 -0
- package/theme/tokens/colors.less +2 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
name: Betterleaks
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
scan:
|
|
12
|
+
name: Scan for secrets
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
env:
|
|
15
|
+
SMTP_URL: ${{ secrets.SMTP_URL }}
|
|
16
|
+
SMTP_PORT: ${{ secrets.SMTP_PORT || '25' }}
|
|
17
|
+
SMTP_EMAIL: ${{ secrets.SMTP_EMAIL }}
|
|
18
|
+
SMTP_PASSWORD: ${{ secrets.SMTP_PASSWORD }}
|
|
19
|
+
steps:
|
|
20
|
+
- name: Checkout repository
|
|
21
|
+
uses: actions/checkout@v4
|
|
22
|
+
with:
|
|
23
|
+
fetch-depth: 1
|
|
24
|
+
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
25
|
+
|
|
26
|
+
- name: Run Betterleaks
|
|
27
|
+
id: betterleaks
|
|
28
|
+
continue-on-error: true
|
|
29
|
+
uses: dortort/betterleaks-action@v0.1.0
|
|
30
|
+
with:
|
|
31
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
32
|
+
scan-mode: dir
|
|
33
|
+
scan-path: .
|
|
34
|
+
config: .gitleaks.toml
|
|
35
|
+
report-format: json
|
|
36
|
+
report-path: betterleaks-report.json
|
|
37
|
+
redact: "true"
|
|
38
|
+
no-color: "true"
|
|
39
|
+
no-banner: "true"
|
|
40
|
+
fail-on-leak: "true"
|
|
41
|
+
|
|
42
|
+
- name: Upload Betterleaks report
|
|
43
|
+
if: always()
|
|
44
|
+
uses: actions/upload-artifact@v4
|
|
45
|
+
with:
|
|
46
|
+
name: betterleaks-report
|
|
47
|
+
path: betterleaks-report.json
|
|
48
|
+
if-no-files-found: ignore
|
|
49
|
+
|
|
50
|
+
- name: Build Betterleaks email summary
|
|
51
|
+
id: leak_summary
|
|
52
|
+
if: steps.betterleaks.outcome == 'failure'
|
|
53
|
+
shell: bash
|
|
54
|
+
run: |
|
|
55
|
+
if [[ -s betterleaks-report.json ]]; then
|
|
56
|
+
jq -r '
|
|
57
|
+
def one_line:
|
|
58
|
+
tostring
|
|
59
|
+
| gsub("[\r\n]+"; " ")
|
|
60
|
+
| if length > 240 then .[0:240] + "..." else . end;
|
|
61
|
+
|
|
62
|
+
.[:20][]
|
|
63
|
+
| "- " + (.RuleID // "unknown-rule")
|
|
64
|
+
+ " at " + (.File // "unknown-file")
|
|
65
|
+
+ ":" + ((.StartLine // 0) | tostring)
|
|
66
|
+
+ "\n match: " + ((.Match // .Secret // "REDACTED") | one_line)
|
|
67
|
+
' betterleaks-report.json > betterleaks-email-summary.txt
|
|
68
|
+
|
|
69
|
+
count="$(jq 'length' betterleaks-report.json)"
|
|
70
|
+
if (( count > 20 )); then
|
|
71
|
+
{
|
|
72
|
+
echo ""
|
|
73
|
+
echo "... and $((count - 20)) more finding(s). Download the artifact for full details."
|
|
74
|
+
} >> betterleaks-email-summary.txt
|
|
75
|
+
fi
|
|
76
|
+
else
|
|
77
|
+
echo "No JSON report was generated. Download the workflow logs for details." > betterleaks-email-summary.txt
|
|
78
|
+
fi
|
|
79
|
+
|
|
80
|
+
{
|
|
81
|
+
echo "text<<BETTERLEAKS_SUMMARY"
|
|
82
|
+
cat betterleaks-email-summary.txt
|
|
83
|
+
echo "BETTERLEAKS_SUMMARY"
|
|
84
|
+
} >> "$GITHUB_OUTPUT"
|
|
85
|
+
|
|
86
|
+
- name: Resolve committer email
|
|
87
|
+
id: committer
|
|
88
|
+
if: steps.betterleaks.outcome == 'failure'
|
|
89
|
+
shell: bash
|
|
90
|
+
run: |
|
|
91
|
+
committer_email="$(git log -1 --format='%ce')"
|
|
92
|
+
author_email="$(git log -1 --format='%ae')"
|
|
93
|
+
email="$committer_email"
|
|
94
|
+
if [[ -z "$email" || "$email" == *"noreply.github.com"* ]]; then
|
|
95
|
+
email="$author_email"
|
|
96
|
+
fi
|
|
97
|
+
if [[ "$email" =~ ^[^[:space:]@]+@[^[:space:]@]+\.[^[:space:]@]+$ && "$email" != *"noreply.github.com"* ]]; then
|
|
98
|
+
echo "email=$email" >> "$GITHUB_OUTPUT"
|
|
99
|
+
else
|
|
100
|
+
echo "No deliverable committer email found; skipping Betterleaks email notification."
|
|
101
|
+
echo "email=" >> "$GITHUB_OUTPUT"
|
|
102
|
+
fi
|
|
103
|
+
|
|
104
|
+
- name: Email committer on Betterleaks failure
|
|
105
|
+
if: steps.betterleaks.outcome == 'failure' && steps.committer.outputs.email != '' && env.SMTP_URL != '' && env.SMTP_EMAIL != ''
|
|
106
|
+
uses: dawidd6/action-send-mail@v18
|
|
107
|
+
with:
|
|
108
|
+
server_address: ${{ env.SMTP_URL }}
|
|
109
|
+
server_port: ${{ env.SMTP_PORT }}
|
|
110
|
+
secure: ${{ env.SMTP_PORT == '465' }}
|
|
111
|
+
username: ${{ env.SMTP_EMAIL }}
|
|
112
|
+
password: ${{ env.SMTP_PASSWORD }}
|
|
113
|
+
from: ${{ env.SMTP_EMAIL }}
|
|
114
|
+
to: ${{ steps.committer.outputs.email }}
|
|
115
|
+
subject: "[Betterleaks] Secret scan failed in ${{ github.repository }}"
|
|
116
|
+
body: |
|
|
117
|
+
Betterleaks detected one or more potential secrets.
|
|
118
|
+
|
|
119
|
+
Repository: ${{ github.repository }}
|
|
120
|
+
Branch: ${{ github.ref_name }}
|
|
121
|
+
Commit: ${{ github.sha }}
|
|
122
|
+
Workflow run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
|
123
|
+
|
|
124
|
+
Findings:
|
|
125
|
+
${{ steps.leak_summary.outputs.text }}
|
|
126
|
+
|
|
127
|
+
Download the betterleaks-report artifact from the workflow run for details.
|
|
128
|
+
|
|
129
|
+
- name: Fail if Betterleaks found leaks
|
|
130
|
+
if: steps.betterleaks.outcome == 'failure'
|
|
131
|
+
run: |
|
|
132
|
+
echo "Betterleaks detected one or more secrets. Download the betterleaks-report artifact from this workflow run for details."
|
|
133
|
+
exit 1
|
package/.gitleaks.toml
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
title = "Betterleaks config"
|
|
2
|
+
|
|
3
|
+
[extend]
|
|
4
|
+
useDefault = true
|
|
5
|
+
|
|
6
|
+
[[rules]]
|
|
7
|
+
id = "secret-literal-assignment"
|
|
8
|
+
description = "Secret-like literal assignment in source, YAML, env and config files"
|
|
9
|
+
regex = '''(?i)([A-Za-z0-9_.-]*(?:password|passwd|pwd|api[_-]?key|apikey|access[_-]?key|secret[_-]?access[_-]?key|private[_-]?key|client[_-]?secret|consumer[_-]?key|consumer[_-]?secret|(?:auth|access|refresh|session|api|bearer|id|jwt|csrf|xsrf|oauth)[_-]?token|translate[_-]?auth|translation[_-]?auth|auth[_-]?password|auth[_-]?key|auth[_-]?credentials|database[_-]?url|connection[_-]?string)[A-Za-z0-9_.-]*)[ \t]*[:=][ \t]*["'']?([^"''[:space:]#{}$.][^"''\n#{}]{2,})["'']?'''
|
|
10
|
+
secretGroup = 2
|
|
11
|
+
keywords = [
|
|
12
|
+
"password",
|
|
13
|
+
"passwd",
|
|
14
|
+
"pwd",
|
|
15
|
+
"api_key",
|
|
16
|
+
"apikey",
|
|
17
|
+
"access_key",
|
|
18
|
+
"private_key",
|
|
19
|
+
"client_secret",
|
|
20
|
+
"consumer_key",
|
|
21
|
+
"consumer_secret",
|
|
22
|
+
"auth_token",
|
|
23
|
+
"access_token",
|
|
24
|
+
"refresh_token",
|
|
25
|
+
"session_token",
|
|
26
|
+
"api_token",
|
|
27
|
+
"bearer_token",
|
|
28
|
+
"id_token",
|
|
29
|
+
"jwt_token",
|
|
30
|
+
"csrf_token",
|
|
31
|
+
"xsrf_token",
|
|
32
|
+
"oauth_token",
|
|
33
|
+
"translate_auth",
|
|
34
|
+
"translation_auth",
|
|
35
|
+
"auth_password",
|
|
36
|
+
"auth_key",
|
|
37
|
+
"auth_credentials",
|
|
38
|
+
"database_url",
|
|
39
|
+
"connection_string"
|
|
40
|
+
]
|
|
41
|
+
tags = ["literal-secret"]
|
|
42
|
+
|
|
43
|
+
[[rules]]
|
|
44
|
+
id = "env-short-secret-assignment"
|
|
45
|
+
description = "Uppercase env-style PASS/TOKEN/SECRET assignment"
|
|
46
|
+
regex = '''\b((?:PASS|TOKEN|SECRET|[A-Z0-9_]*(?:_PASS|_TOKEN|_SECRET|PASS_|TOKEN_|SECRET_)[A-Z0-9_]*))[ \t]*[:=][ \t]*["'']?([^"''[:space:]#{}$.][^"''\n#{}]{2,})["'']?'''
|
|
47
|
+
secretGroup = 2
|
|
48
|
+
keywords = [
|
|
49
|
+
"PASS",
|
|
50
|
+
"TOKEN",
|
|
51
|
+
"SECRET"
|
|
52
|
+
]
|
|
53
|
+
tags = ["env", "literal-secret"]
|
|
54
|
+
|
|
55
|
+
[[rules]]
|
|
56
|
+
id = "standalone-sk-token"
|
|
57
|
+
description = "Standalone sk-* token not attached to a secret-like variable name"
|
|
58
|
+
regex = '''(?i)\b(sk-[A-Za-z0-9][A-Za-z0-9_-]{20,})\b'''
|
|
59
|
+
secretGroup = 1
|
|
60
|
+
entropy = 2.5
|
|
61
|
+
keywords = ["sk-"]
|
|
62
|
+
tags = ["standalone-token", "generic"]
|
|
63
|
+
|
|
64
|
+
[[rules]]
|
|
65
|
+
id = "dotenv-only-jest-setup"
|
|
66
|
+
description = ".env may only contain the committed Jest setup lines"
|
|
67
|
+
path = '''(?i)(^|/)\.env$'''
|
|
68
|
+
regex = '''(?m)^(.+)$'''
|
|
69
|
+
secretGroup = 1
|
|
70
|
+
tags = ["file", "dotenv"]
|
|
71
|
+
[[rules.allowlists]]
|
|
72
|
+
regexTarget = "match"
|
|
73
|
+
regexes = [
|
|
74
|
+
'''^JEST_USE_SETUP=OFF # Jest configuration variables: ON, OFF\r?$''',
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[rules]]
|
|
78
|
+
id = "forbidden-secret-file"
|
|
79
|
+
description = "Forbidden secret-bearing file committed to repository"
|
|
80
|
+
path = '''(?i)(^|/)(\.env\..*|\.npmrc|\.pypirc|id_rsa|id_ed25519|.*\.(pem|key|p12|pfx|jks|kubeconfig))$'''
|
|
81
|
+
regex = '''(?s).{1,}'''
|
|
82
|
+
tags = ["file", "secret-file"]
|
|
83
|
+
|
|
84
|
+
[[allowlists]]
|
|
85
|
+
description = "Allow Jenkins SonarQube token environment variable reference"
|
|
86
|
+
regexTarget = "match"
|
|
87
|
+
regexes = [
|
|
88
|
+
'''SONAR_AUTH_TOKEN''',
|
|
89
|
+
]
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,136 @@ 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
|
+
### [1.0.3](https://github.com/eea/volto-cca-policy/compare/1.0.2...1.0.3) - 28 July 2026
|
|
8
|
+
|
|
9
|
+
#### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
- feat: update landing page URLs and adjust heading styles in Navigator components [kreafox - [`a582043`](https://github.com/eea/volto-cca-policy/commit/a5820439635339c3ebdfa5b71c619e52a34891ab)]
|
|
12
|
+
- feat: add green text style and adjust small text size [kreafox - [`c3197cf`](https://github.com/eea/volto-cca-policy/commit/c3197cf9b68370eabf8e68f09bfd5988fe676264)]
|
|
13
|
+
- feat: add label styles and update color definitions [kreafox - [`5d3793e`](https://github.com/eea/volto-cca-policy/commit/5d3793e783895dd3597bce84cb41460b2918df12)]
|
|
14
|
+
- feat: add nature-based solution facet to search filters [kreafox - [`d4c29e0`](https://github.com/eea/volto-cca-policy/commit/d4c29e09e18aa7763e5ac0c14b1ebf4c2913f4d2)]
|
|
15
|
+
- feat: update ExtendedToolView and tests [kreafox - [`240ecc8`](https://github.com/eea/volto-cca-policy/commit/240ecc82b7243fd402d3b0f906dd0de12da08a3b)]
|
|
16
|
+
- feat: add facets for navigator catalogue [kreafox - [`6025755`](https://github.com/eea/volto-cca-policy/commit/6025755b280055f7ed05aae4cdfb5fb6e6715e01)]
|
|
17
|
+
- feat: update tool provider display; add adaptation support cycle [kreafox - [`9e7c744`](https://github.com/eea/volto-cca-policy/commit/9e7c74455982cfdc0adfc44d6dd5d39429e58af8)]
|
|
18
|
+
- feat: unify icon styling [kreafox - [`f6b69af`](https://github.com/eea/volto-cca-policy/commit/f6b69af9935284e4e08fb815209c77637b46143e)]
|
|
19
|
+
- feat: estyle improvements and remove unused styles [kreafox - [`2c80d90`](https://github.com/eea/volto-cca-policy/commit/2c80d90fa9d0fcd671a54193a11fd266c1f1fb20)]
|
|
20
|
+
- feat: add refined by criteria display in NavigatorGuideContentView [kreafox - [`02ae8da`](https://github.com/eea/volto-cca-policy/commit/02ae8dacc9dd654dc4b0fcaf0f369e5aeee34671)]
|
|
21
|
+
- feat: display cycle elements in NavigatorCatalogueCardItem [kreafox - [`cea151e`](https://github.com/eea/volto-cca-policy/commit/cea151ebcf1c0af6a0bc2a84887f6ecd07c79130)]
|
|
22
|
+
- feat: display date in NavigatorCatalogueCardItem [kreafox - [`06924bd`](https://github.com/eea/volto-cca-policy/commit/06924bd87ed95c3d0e60533a12d4266814e4eaee)]
|
|
23
|
+
- feat: display license status in NavigatorCatalogueCardItem [kreafox - [`a6b8589`](https://github.com/eea/volto-cca-policy/commit/a6b85890390b824664cd144ed4ebf7e917891953)]
|
|
24
|
+
- feat: integrate breadcrumb to CompareToolsView [kreafox - [`86ab7dd`](https://github.com/eea/volto-cca-policy/commit/86ab7dd44bd034696cb491e7c27f2b39dcf5ac8c)]
|
|
25
|
+
- feat: add banner title to CompareToolsView [kreafox - [`71aa8b6`](https://github.com/eea/volto-cca-policy/commit/71aa8b67fbe41b9b00816ef6d166a2a7f146a0eb)]
|
|
26
|
+
- feat: update CompareToolsView [kreafox - [`66575dc`](https://github.com/eea/volto-cca-policy/commit/66575dc4ce991d7e25744b29de7d3a7e4cc43a11)]
|
|
27
|
+
- feat: update comparison table with data [kreafox - [`3b30c96`](https://github.com/eea/volto-cca-policy/commit/3b30c9659118bc06ef8a693e32c4801c35d02c21)]
|
|
28
|
+
- feat: add icon to compare panel tools [kreafox - [`d2e33bc`](https://github.com/eea/volto-cca-policy/commit/d2e33bcf4eab091da5d489c50c5e4bb25a459a91)]
|
|
29
|
+
- feat: add selected state styling to NavigatorCatalogueCardItem [kreafox - [`7b861ea`](https://github.com/eea/volto-cca-policy/commit/7b861eaff806538556b03554121fb740a2b7fb84)]
|
|
30
|
+
- feat: add share button to ExtendedToolView [kreafox - [`74535d9`](https://github.com/eea/volto-cca-policy/commit/74535d94eb23ba82a670d438a582f98180d7f58e)]
|
|
31
|
+
- feat: add hyperlink button to ExtendedToolView [kreafox - [`9d36b75`](https://github.com/eea/volto-cca-policy/commit/9d36b75f387a71bf9e45266ac361a78da1d5d85b)]
|
|
32
|
+
- feat: add tool comparison from view, refactoring comparison functionality, UI improvements [kreafox - [`32fa6ee`](https://github.com/eea/volto-cca-policy/commit/32fa6eec873dbfc6bfcdaf257ec9810e2d781134)]
|
|
33
|
+
- feat: enhance navigator guide preview layout and styling [kreafox - [`0a8e92b`](https://github.com/eea/volto-cca-policy/commit/0a8e92bcedba929f6b6e0a93e227ea6373915de0)]
|
|
34
|
+
- feat: add empty state message and styling for navigator guide preview [kreafox - [`94a4f35`](https://github.com/eea/volto-cca-policy/commit/94a4f3544c7ca71084e2ead83f9a0ec21f8f3e91)]
|
|
35
|
+
- feat: enhance navigator guide progress steps with connectors and improved styling [kreafox - [`f2c9cef`](https://github.com/eea/volto-cca-policy/commit/f2c9cefdafbaf746df50ff8e6fe963640204fe10)]
|
|
36
|
+
- feat: add intl support to guide steps [kreafox - [`f21c229`](https://github.com/eea/volto-cca-policy/commit/f21c229efdce20dec4c7d69d2c8777aa43c0928f)]
|
|
37
|
+
- feat: add uuid module mapping to jest configuration [kreafox - [`887bdb0`](https://github.com/eea/volto-cca-policy/commit/887bdb0febf60c9fb497d2930a2f68249d23b883)]
|
|
38
|
+
- feat: make progress steps clickable [kreafox - [`5d9a1d8`](https://github.com/eea/volto-cca-policy/commit/5d9a1d8c09d7f00263157c7cef61e50531aeab89)]
|
|
39
|
+
- feat: allow customizable headline and subheadline [kreafox - [`df23003`](https://github.com/eea/volto-cca-policy/commit/df230030dc3d44ade67f11db3c83cf7f3ed06422)]
|
|
40
|
+
- feat: add intl support to Navigator Guide messages [kreafox - [`0b876e4`](https://github.com/eea/volto-cca-policy/commit/0b876e475ea51ea9733ba00ae8ace465a8488b0f)]
|
|
41
|
+
- feat: update colors and font sizes in Navigator Guide preview [kreafox - [`865b4ec`](https://github.com/eea/volto-cca-policy/commit/865b4ec40ccc9e4d26ead76c8ff6d444068ebeaf)]
|
|
42
|
+
- feat: determine selected steps in Navigator Guide [kreafox - [`a3a627e`](https://github.com/eea/volto-cca-policy/commit/a3a627ea6237c2349d717d386fc53cc21eff0df4)]
|
|
43
|
+
- feat: persist navigator guide step and enable URL state tracking [kreafox - [`a88dd4f`](https://github.com/eea/volto-cca-policy/commit/a88dd4f67e24fb15ef2d0c5eed4d75d95138a3a0)]
|
|
44
|
+
- feat: add separators to progress steps in Navigator Guide [kreafox - [`ce95dfc`](https://github.com/eea/volto-cca-policy/commit/ce95dfcf080cfa4eae2f523a30b6d5e91cb27770)]
|
|
45
|
+
- feat: style improvements [kreafox - [`e4ae8ba`](https://github.com/eea/volto-cca-policy/commit/e4ae8baf1a977b247874db41186bc8c062faa15a)]
|
|
46
|
+
- feat: add progress bar for Navigator Guide [kreafox - [`685e0b8`](https://github.com/eea/volto-cca-policy/commit/685e0b8860521d7d7efbdd65d5a6e77cb13eb95a)]
|
|
47
|
+
- feat: update styles for active/completed states [kreafox - [`97e83be`](https://github.com/eea/volto-cca-policy/commit/97e83be00cbe52b0de43a051fa8f96c530413dcb)]
|
|
48
|
+
- feat: add loading state Navigator Guide options [kreafox - [`522a44b`](https://github.com/eea/volto-cca-policy/commit/522a44b79b04cb0e2aa535a9a0a016c66e8d99e1)]
|
|
49
|
+
- feat: improve Navigator Guide progress indicators and styles [kreafox - [`9a6b14c`](https://github.com/eea/volto-cca-policy/commit/9a6b14c40d86d8eb33778e27d6c3102b2781d81f)]
|
|
50
|
+
- feat: implement Navigator Guide [kreafox - [`3908029`](https://github.com/eea/volto-cca-policy/commit/39080299b7a8b4915088730f1e233e18571fa7c3)]
|
|
51
|
+
- feat: update comparison tool validation and improve messages [kreafox - [`867d961`](https://github.com/eea/volto-cca-policy/commit/867d9614e32904c0c813dc1ad78ec6b72072a675)]
|
|
52
|
+
- feat: implement compare tools limit [kreafox - [`d464bcd`](https://github.com/eea/volto-cca-policy/commit/d464bcdd4bcfdd34f3d076f7f635684fb61dad51)]
|
|
53
|
+
- feat: add back to search [kreafox - [`f58a6fc`](https://github.com/eea/volto-cca-policy/commit/f58a6fcd9cb1c59a6669ecf5c4cd2e3f4d4147bb)]
|
|
54
|
+
- feat: add landing page URL to config [kreafox - [`d8249cf`](https://github.com/eea/volto-cca-policy/commit/d8249cf16514d3fc05901cef838b177c038180a4)]
|
|
55
|
+
- feat: add CSV export for comparison table [kreafox - [`46c3060`](https://github.com/eea/volto-cca-policy/commit/46c3060f409ec179e34c063b95fbadfa644bd689)]
|
|
56
|
+
- feat: add back to results and export table buttons [kreafox - [`0813814`](https://github.com/eea/volto-cca-policy/commit/08138149efc90ff9843df67eeabacc6328a1d75c)]
|
|
57
|
+
- feat: add remove tool functionality [kreafox - [`00a6a0c`](https://github.com/eea/volto-cca-policy/commit/00a6a0c1bda87adea88a32a0f6d555f6bf82ab62)]
|
|
58
|
+
- feat: add internationalization for navigator search [kreafox - [`54010fd`](https://github.com/eea/volto-cca-policy/commit/54010fdab3019127b26ca495e3490569a97c03be)]
|
|
59
|
+
- feat: enhance comparison view with new criteria and styling updates [kreafox - [`25d101d`](https://github.com/eea/volto-cca-policy/commit/25d101d615ecb4d18706147c16663d3144928561)]
|
|
60
|
+
- feat: add comparison view for Navigator Catalogue tools (WIP) [kreafox - [`7024b27`](https://github.com/eea/volto-cca-policy/commit/7024b27e621be95456f611ecb4666cac3da7fdba)]
|
|
61
|
+
- feat: add Compare Tools panel for Navigator Catalogue [kreafox - [`f895de5`](https://github.com/eea/volto-cca-policy/commit/f895de5746b9eb093c8aa879cc858811ee63da6d)]
|
|
62
|
+
- feat: remove unused styles for navigator components [kreafox - [`95f39b2`](https://github.com/eea/volto-cca-policy/commit/95f39b224e2d425afbfe506242ec9eb507125ce4)]
|
|
63
|
+
- feat: update styles for cycle elements [kreafox - [`5b23e7f`](https://github.com/eea/volto-cca-policy/commit/5b23e7f1248796e6e56b74482bd8dec0845b46a6)]
|
|
64
|
+
- feat: add tooltip for additional tag values [kreafox - [`6c96d07`](https://github.com/eea/volto-cca-policy/commit/6c96d07ee1ea7eba2c90f6e57a9fb6f8fca229fc)]
|
|
65
|
+
- feat: update Navigator Catalogue view [kreafox - [`b6e2695`](https://github.com/eea/volto-cca-policy/commit/b6e26953e78d4c8dad71864ff870c9b5ca5c13d9)]
|
|
66
|
+
- feat: add Navigator Catalogue Map and Content view [kreafox - [`0e42a82`](https://github.com/eea/volto-cca-policy/commit/0e42a828899673cf83620ad17511fa066f08655e)]
|
|
67
|
+
|
|
68
|
+
#### :bug: Bug Fixes
|
|
69
|
+
|
|
70
|
+
- fix: tag types in navigator guide [kreafox - [`0cf7b0a`](https://github.com/eea/volto-cca-policy/commit/0cf7b0a9c8c8e1bc0f8b5644da14d6e3aa946ee8)]
|
|
71
|
+
- fix: update CSV download test to use HTMLAnchorElement's remove method [kreafox - [`10b49b9`](https://github.com/eea/volto-cca-policy/commit/10b49b9680d003481f85b00a0dd0cebb83638d3b)]
|
|
72
|
+
- fix: sonarqube reported issues [kreafox - [`6cb24f0`](https://github.com/eea/volto-cca-policy/commit/6cb24f04c2d5104cb93989fee9a00dfd4df7363d)]
|
|
73
|
+
- fix: language availability handling in ExtendedToolView [kreafox - [`06cd807`](https://github.com/eea/volto-cca-policy/commit/06cd8078bb0e8177233eefe88b5a1768b1b5dcee)]
|
|
74
|
+
- fix: button style [kreafox - [`8dedce2`](https://github.com/eea/volto-cca-policy/commit/8dedce290ff937c626c9d2afc0e62c2687252110)]
|
|
75
|
+
- fix: license status in cards [kreafox - [`b891a6f`](https://github.com/eea/volto-cca-policy/commit/b891a6ff010be7d0e3e6ad1fcb2f4428b4b6865c)]
|
|
76
|
+
- fix: className for icon [kreafox - [`02416b3`](https://github.com/eea/volto-cca-policy/commit/02416b34011fe3342ea745f3922a8cbc379b2290)]
|
|
77
|
+
- fix: update module path for @eeacms/search in jest-addon.config.js [kreafox - [`72f3549`](https://github.com/eea/volto-cca-policy/commit/72f35491918173a94d0ac60b2435bb02eefae2ce)]
|
|
78
|
+
- fix: merge conflicts [kreafox - [`14b8842`](https://github.com/eea/volto-cca-policy/commit/14b8842b73c1a62daa948e7f064b2d5d5881c30b)]
|
|
79
|
+
- fix: match selected tools using cca_uid [kreafox - [`8bd262f`](https://github.com/eea/volto-cca-policy/commit/8bd262f9f45d7ceaaf90f029972cd5d591718405)]
|
|
80
|
+
- fix: improve conditional rendering for options [kreafox - [`24acba6`](https://github.com/eea/volto-cca-policy/commit/24acba6401532f3bc5ac6e318f59a24c6cdf89cc)]
|
|
81
|
+
- fix: add uuid as a dependency [kreafox - [`662648b`](https://github.com/eea/volto-cca-policy/commit/662648b111046f20ff813ec4f2c34443426ba75d)]
|
|
82
|
+
- fix: language facet [kreafox - [`d7d0603`](https://github.com/eea/volto-cca-policy/commit/d7d0603ddd12f5a31a86120031012597efe1be43)]
|
|
83
|
+
- fix: code cleanup [kreafox - [`fa70404`](https://github.com/eea/volto-cca-policy/commit/fa70404d687d9611ca14340d8aec3ade5c90c89f)]
|
|
84
|
+
- fix: code cleanup [kreafox - [`939dbba`](https://github.com/eea/volto-cca-policy/commit/939dbba2f01ba2d0c462e886cdae96221bcf7257)]
|
|
85
|
+
|
|
86
|
+
#### :nail_care: Enhancements
|
|
87
|
+
|
|
88
|
+
- change: update compare tools [kreafox - [`7ff0a66`](https://github.com/eea/volto-cca-policy/commit/7ff0a667a7f24064308d08ae59c8dbcf833b1aa8)]
|
|
89
|
+
- refactor: update adaptation sectors and climate impacts messages [kreafox - [`1b6e22f`](https://github.com/eea/volto-cca-policy/commit/1b6e22f5ff8fe2f8f1f15d4690ae8be1e0f4c148)]
|
|
90
|
+
- change: add incomplete message compare panel [kreafox - [`3157b08`](https://github.com/eea/volto-cca-policy/commit/3157b08563d139b4ac77e9d3784a82b81058900d)]
|
|
91
|
+
- refactor: update field names [kreafox - [`9a8dadb`](https://github.com/eea/volto-cca-policy/commit/9a8dadb1eee276d498aa2908559a2044d19b8c1c)]
|
|
92
|
+
- refactor: rename navigator guide result [kreafox - [`1f9c467`](https://github.com/eea/volto-cca-policy/commit/1f9c4670bca9d5101894b45b60c5581687eda618)]
|
|
93
|
+
- refactor: update class names for consistency [kreafox - [`edd5b76`](https://github.com/eea/volto-cca-policy/commit/edd5b7639f84b07933d08aef6ab52089ec50af33)]
|
|
94
|
+
- refactor: remove unused styles [kreafox - [`d799975`](https://github.com/eea/volto-cca-policy/commit/d799975357d16c3e68ef4003b9f41431478d0273)]
|
|
95
|
+
- change: display type in NavigatorCatalogueCardItem [kreafox - [`f93caef`](https://github.com/eea/volto-cca-policy/commit/f93caefcadaf044affd9ebf6987528c062e82bed)]
|
|
96
|
+
- change: add cluster_name to navigator search [kreafox - [`d63c481`](https://github.com/eea/volto-cca-policy/commit/d63c4812ff5b2692bb0bbc1c1894dc89d91440f9)]
|
|
97
|
+
- change: functionality score display in CompareToolsView [kreafox - [`ff15cff`](https://github.com/eea/volto-cca-policy/commit/ff15cff24d1ad0f577c0ffbad2317a38f74f2746)]
|
|
98
|
+
- refactor: remove clipboard functionality from ExtendedToolView [kreafox - [`f5347e4`](https://github.com/eea/volto-cca-policy/commit/f5347e4307b838797b1196ced8f4a5d5f3d2d6a4)]
|
|
99
|
+
- refactor: rename less file [kreafox - [`42bf28d`](https://github.com/eea/volto-cca-policy/commit/42bf28d00236cc3c785c60dfa3bbf4b6c68542eb)]
|
|
100
|
+
- refactor: update imports for CompareTools utilities and adjust test mocks [kreafox - [`0087fc9`](https://github.com/eea/volto-cca-policy/commit/0087fc9e6ac620cad1fceedc917257e47809f955)]
|
|
101
|
+
- refactor: replace ExternalLink with UniversalLink in CompareToolsView [kreafox - [`d053d35`](https://github.com/eea/volto-cca-policy/commit/d053d3544203531abdfb6efc618eacd091eb7cb5)]
|
|
102
|
+
- refactor: reorganize compare tools and update imports [kreafox - [`d4858ca`](https://github.com/eea/volto-cca-policy/commit/d4858ca8dd8ca400bfeb42248afb80622dec2cb6)]
|
|
103
|
+
- refactor: update imports and routing [kreafox - [`ba27e71`](https://github.com/eea/volto-cca-policy/commit/ba27e71d538f706cfa2eca677898f4bac6bf1d7c)]
|
|
104
|
+
- refactor: move files [kreafox - [`54b467c`](https://github.com/eea/volto-cca-policy/commit/54b467cd36745bd632d2b1a4fe95aecc78b45b92)]
|
|
105
|
+
|
|
106
|
+
#### :house: Internal changes
|
|
107
|
+
|
|
108
|
+
- chore: i18n [kreafox - [`bfa6267`](https://github.com/eea/volto-cca-policy/commit/bfa6267cb2c42b1076ab766917cc4b89b255d1ef)]
|
|
109
|
+
- style: css polishments [kreafox - [`d3e8112`](https://github.com/eea/volto-cca-policy/commit/d3e8112e43b7c1bc585d8e1f51452066031d9d77)]
|
|
110
|
+
- style: Automated code fix [eea-jenkins - [`fd4f850`](https://github.com/eea/volto-cca-policy/commit/fd4f850edaeb18e67655b4820dae9318779ce680)]
|
|
111
|
+
- style: css polishments [kreafox - [`318a036`](https://github.com/eea/volto-cca-policy/commit/318a03662914ae34547668f450d07c35a8d49895)]
|
|
112
|
+
- style: Automated code fix [eea-jenkins - [`8199208`](https://github.com/eea/volto-cca-policy/commit/8199208321b07d633e4030a83f10fcf8b1775751)]
|
|
113
|
+
- style: Automated code fix [eea-jenkins - [`3aa3f45`](https://github.com/eea/volto-cca-policy/commit/3aa3f45e7cfa712f8cfc62b291c23c1883e8229c)]
|
|
114
|
+
- style: Automated code fix [eea-jenkins - [`1e7ab82`](https://github.com/eea/volto-cca-policy/commit/1e7ab821fe22be996df7a2d2999bea2cd0dbe194)]
|
|
115
|
+
- style: Automated code fix [eea-jenkins - [`15945bb`](https://github.com/eea/volto-cca-policy/commit/15945bb1c56efce3afd13ae94a7fb0f86da087bd)]
|
|
116
|
+
- style: Automated code fix [eea-jenkins - [`1e99b64`](https://github.com/eea/volto-cca-policy/commit/1e99b6431452812c483c6848af6cab397dfa9112)]
|
|
117
|
+
- style: css improvements [kreafox - [`3657fec`](https://github.com/eea/volto-cca-policy/commit/3657fecd55b9e0359c9af2e13a23855b4a63ed58)]
|
|
118
|
+
|
|
119
|
+
#### :hammer_and_wrench: Others
|
|
120
|
+
|
|
121
|
+
- test: add unit tests [kreafox - [`5b66110`](https://github.com/eea/volto-cca-policy/commit/5b661103af1d07ddd4e93982e9ba4de3973c67fd)]
|
|
122
|
+
- Remove unused var [Tiberiu Ichim - [`ebd62d5`](https://github.com/eea/volto-cca-policy/commit/ebd62d532f7bf60575cab8d897abfadb18cba014)]
|
|
123
|
+
### [1.0.2](https://github.com/eea/volto-cca-policy/compare/1.0.1...1.0.2) - 23 July 2026
|
|
124
|
+
|
|
125
|
+
#### :bug: Bug Fixes
|
|
126
|
+
|
|
127
|
+
- fix: add uuid module mapping to jest configuration [kreafox - [`7b56e58`](https://github.com/eea/volto-cca-policy/commit/7b56e5855457a9fb26f2f0d8aa81138e72a7ff32)]
|
|
128
|
+
- fix: Add Jest snapshot for ExtendedToolView component and fix GeoChar rendering logic [kreafox - [`dc6be99`](https://github.com/eea/volto-cca-policy/commit/dc6be99ad49bcc100203eb8d7da436540e59d5bc)]
|
|
129
|
+
|
|
130
|
+
#### :hammer_and_wrench: Others
|
|
131
|
+
|
|
132
|
+
- Refs #304613 - uuid version [iugin - [`60e3e0a`](https://github.com/eea/volto-cca-policy/commit/60e3e0a2c866ea344e4eaf486ecef3db3aaa0689)]
|
|
133
|
+
- Refs #304613 - uuid [iugin - [`a8d7a98`](https://github.com/eea/volto-cca-policy/commit/a8d7a98dd435e71a22b090786ba37aa02c7145b6)]
|
|
134
|
+
- Refs #304613 - extended tool view template [iugin - [`a8b3e53`](https://github.com/eea/volto-cca-policy/commit/a8b3e535e801495f767ca2ba60da351c1ec9deff)]
|
|
135
|
+
- Refs #304613 - extended tool view template [iugin - [`0783553`](https://github.com/eea/volto-cca-policy/commit/0783553b70e38b20fd2aa1772367eeb7a738c7a4)]
|
|
136
|
+
- Refs #304613 - extended tool view [iugin - [`632c3fc`](https://github.com/eea/volto-cca-policy/commit/632c3fca4da0b7972d9120443b187fe2fad278bf)]
|
|
7
137
|
### [1.0.1](https://github.com/eea/volto-cca-policy/compare/1.0.0...1.0.1) - 10 July 2026
|
|
8
138
|
|
|
9
139
|
#### :bug: Bug Fixes
|
|
@@ -17,7 +147,138 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
17
147
|
#### :hammer_and_wrench: Others
|
|
18
148
|
|
|
19
149
|
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`659ec82`](https://github.com/eea/volto-cca-policy/commit/659ec823dd71fe592a3a7accda22effbe1fb07bc)]
|
|
20
|
-
## [1.0.0](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.
|
|
150
|
+
## [1.0.0](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.12...1.0.0) - 12 June 2026
|
|
151
|
+
|
|
152
|
+
### [1.0.0-alpha.12](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.11...1.0.0-alpha.12) - 27 July 2026
|
|
153
|
+
|
|
154
|
+
#### :rocket: New Features
|
|
155
|
+
|
|
156
|
+
- feat: add nature-based solution facet to search filters [kreafox - [`d4c29e0`](https://github.com/eea/volto-cca-policy/commit/d4c29e09e18aa7763e5ac0c14b1ebf4c2913f4d2)]
|
|
157
|
+
- feat: update ExtendedToolView and tests [kreafox - [`240ecc8`](https://github.com/eea/volto-cca-policy/commit/240ecc82b7243fd402d3b0f906dd0de12da08a3b)]
|
|
158
|
+
- feat: add facets for navigator catalogue [kreafox - [`6025755`](https://github.com/eea/volto-cca-policy/commit/6025755b280055f7ed05aae4cdfb5fb6e6715e01)]
|
|
159
|
+
- feat: update tool provider display; add adaptation support cycle [kreafox - [`9e7c744`](https://github.com/eea/volto-cca-policy/commit/9e7c74455982cfdc0adfc44d6dd5d39429e58af8)]
|
|
160
|
+
- feat: unify icon styling [kreafox - [`f6b69af`](https://github.com/eea/volto-cca-policy/commit/f6b69af9935284e4e08fb815209c77637b46143e)]
|
|
161
|
+
- feat: estyle improvements and remove unused styles [kreafox - [`2c80d90`](https://github.com/eea/volto-cca-policy/commit/2c80d90fa9d0fcd671a54193a11fd266c1f1fb20)]
|
|
162
|
+
- feat: add refined by criteria display in NavigatorGuideContentView [kreafox - [`02ae8da`](https://github.com/eea/volto-cca-policy/commit/02ae8dacc9dd654dc4b0fcaf0f369e5aeee34671)]
|
|
163
|
+
- feat: display cycle elements in NavigatorCatalogueCardItem [kreafox - [`cea151e`](https://github.com/eea/volto-cca-policy/commit/cea151ebcf1c0af6a0bc2a84887f6ecd07c79130)]
|
|
164
|
+
- feat: display date in NavigatorCatalogueCardItem [kreafox - [`06924bd`](https://github.com/eea/volto-cca-policy/commit/06924bd87ed95c3d0e60533a12d4266814e4eaee)]
|
|
165
|
+
- feat: display license status in NavigatorCatalogueCardItem [kreafox - [`a6b8589`](https://github.com/eea/volto-cca-policy/commit/a6b85890390b824664cd144ed4ebf7e917891953)]
|
|
166
|
+
- feat: integrate breadcrumb to CompareToolsView [kreafox - [`86ab7dd`](https://github.com/eea/volto-cca-policy/commit/86ab7dd44bd034696cb491e7c27f2b39dcf5ac8c)]
|
|
167
|
+
- feat: add banner title to CompareToolsView [kreafox - [`71aa8b6`](https://github.com/eea/volto-cca-policy/commit/71aa8b67fbe41b9b00816ef6d166a2a7f146a0eb)]
|
|
168
|
+
- feat: update CompareToolsView [kreafox - [`66575dc`](https://github.com/eea/volto-cca-policy/commit/66575dc4ce991d7e25744b29de7d3a7e4cc43a11)]
|
|
169
|
+
- feat: update comparison table with data [kreafox - [`3b30c96`](https://github.com/eea/volto-cca-policy/commit/3b30c9659118bc06ef8a693e32c4801c35d02c21)]
|
|
170
|
+
- feat: add icon to compare panel tools [kreafox - [`d2e33bc`](https://github.com/eea/volto-cca-policy/commit/d2e33bcf4eab091da5d489c50c5e4bb25a459a91)]
|
|
171
|
+
- feat: add selected state styling to NavigatorCatalogueCardItem [kreafox - [`7b861ea`](https://github.com/eea/volto-cca-policy/commit/7b861eaff806538556b03554121fb740a2b7fb84)]
|
|
172
|
+
- feat: add share button to ExtendedToolView [kreafox - [`74535d9`](https://github.com/eea/volto-cca-policy/commit/74535d94eb23ba82a670d438a582f98180d7f58e)]
|
|
173
|
+
- feat: add hyperlink button to ExtendedToolView [kreafox - [`9d36b75`](https://github.com/eea/volto-cca-policy/commit/9d36b75f387a71bf9e45266ac361a78da1d5d85b)]
|
|
174
|
+
- feat: add tool comparison from view, refactoring comparison functionality, UI improvements [kreafox - [`32fa6ee`](https://github.com/eea/volto-cca-policy/commit/32fa6eec873dbfc6bfcdaf257ec9810e2d781134)]
|
|
175
|
+
- feat: enhance navigator guide preview layout and styling [kreafox - [`0a8e92b`](https://github.com/eea/volto-cca-policy/commit/0a8e92bcedba929f6b6e0a93e227ea6373915de0)]
|
|
176
|
+
- feat: add empty state message and styling for navigator guide preview [kreafox - [`94a4f35`](https://github.com/eea/volto-cca-policy/commit/94a4f3544c7ca71084e2ead83f9a0ec21f8f3e91)]
|
|
177
|
+
- feat: enhance navigator guide progress steps with connectors and improved styling [kreafox - [`f2c9cef`](https://github.com/eea/volto-cca-policy/commit/f2c9cefdafbaf746df50ff8e6fe963640204fe10)]
|
|
178
|
+
- feat: add intl support to guide steps [kreafox - [`f21c229`](https://github.com/eea/volto-cca-policy/commit/f21c229efdce20dec4c7d69d2c8777aa43c0928f)]
|
|
179
|
+
- feat: add uuid module mapping to jest configuration [kreafox - [`887bdb0`](https://github.com/eea/volto-cca-policy/commit/887bdb0febf60c9fb497d2930a2f68249d23b883)]
|
|
180
|
+
- feat: make progress steps clickable [kreafox - [`5d9a1d8`](https://github.com/eea/volto-cca-policy/commit/5d9a1d8c09d7f00263157c7cef61e50531aeab89)]
|
|
181
|
+
- feat: allow customizable headline and subheadline [kreafox - [`df23003`](https://github.com/eea/volto-cca-policy/commit/df230030dc3d44ade67f11db3c83cf7f3ed06422)]
|
|
182
|
+
- feat: add intl support to Navigator Guide messages [kreafox - [`0b876e4`](https://github.com/eea/volto-cca-policy/commit/0b876e475ea51ea9733ba00ae8ace465a8488b0f)]
|
|
183
|
+
- feat: update colors and font sizes in Navigator Guide preview [kreafox - [`865b4ec`](https://github.com/eea/volto-cca-policy/commit/865b4ec40ccc9e4d26ead76c8ff6d444068ebeaf)]
|
|
184
|
+
- feat: determine selected steps in Navigator Guide [kreafox - [`a3a627e`](https://github.com/eea/volto-cca-policy/commit/a3a627ea6237c2349d717d386fc53cc21eff0df4)]
|
|
185
|
+
- feat: persist navigator guide step and enable URL state tracking [kreafox - [`a88dd4f`](https://github.com/eea/volto-cca-policy/commit/a88dd4f67e24fb15ef2d0c5eed4d75d95138a3a0)]
|
|
186
|
+
- feat: add separators to progress steps in Navigator Guide [kreafox - [`ce95dfc`](https://github.com/eea/volto-cca-policy/commit/ce95dfcf080cfa4eae2f523a30b6d5e91cb27770)]
|
|
187
|
+
- feat: style improvements [kreafox - [`e4ae8ba`](https://github.com/eea/volto-cca-policy/commit/e4ae8baf1a977b247874db41186bc8c062faa15a)]
|
|
188
|
+
- feat: add progress bar for Navigator Guide [kreafox - [`685e0b8`](https://github.com/eea/volto-cca-policy/commit/685e0b8860521d7d7efbdd65d5a6e77cb13eb95a)]
|
|
189
|
+
- feat: update styles for active/completed states [kreafox - [`97e83be`](https://github.com/eea/volto-cca-policy/commit/97e83be00cbe52b0de43a051fa8f96c530413dcb)]
|
|
190
|
+
- feat: add loading state Navigator Guide options [kreafox - [`522a44b`](https://github.com/eea/volto-cca-policy/commit/522a44b79b04cb0e2aa535a9a0a016c66e8d99e1)]
|
|
191
|
+
- feat: improve Navigator Guide progress indicators and styles [kreafox - [`9a6b14c`](https://github.com/eea/volto-cca-policy/commit/9a6b14c40d86d8eb33778e27d6c3102b2781d81f)]
|
|
192
|
+
- feat: implement Navigator Guide [kreafox - [`3908029`](https://github.com/eea/volto-cca-policy/commit/39080299b7a8b4915088730f1e233e18571fa7c3)]
|
|
193
|
+
- feat: update comparison tool validation and improve messages [kreafox - [`867d961`](https://github.com/eea/volto-cca-policy/commit/867d9614e32904c0c813dc1ad78ec6b72072a675)]
|
|
194
|
+
- feat: implement compare tools limit [kreafox - [`d464bcd`](https://github.com/eea/volto-cca-policy/commit/d464bcdd4bcfdd34f3d076f7f635684fb61dad51)]
|
|
195
|
+
- feat: add back to search [kreafox - [`f58a6fc`](https://github.com/eea/volto-cca-policy/commit/f58a6fcd9cb1c59a6669ecf5c4cd2e3f4d4147bb)]
|
|
196
|
+
- feat: add landing page URL to config [kreafox - [`d8249cf`](https://github.com/eea/volto-cca-policy/commit/d8249cf16514d3fc05901cef838b177c038180a4)]
|
|
197
|
+
- feat: add CSV export for comparison table [kreafox - [`46c3060`](https://github.com/eea/volto-cca-policy/commit/46c3060f409ec179e34c063b95fbadfa644bd689)]
|
|
198
|
+
- feat: add back to results and export table buttons [kreafox - [`0813814`](https://github.com/eea/volto-cca-policy/commit/08138149efc90ff9843df67eeabacc6328a1d75c)]
|
|
199
|
+
- feat: add remove tool functionality [kreafox - [`00a6a0c`](https://github.com/eea/volto-cca-policy/commit/00a6a0c1bda87adea88a32a0f6d555f6bf82ab62)]
|
|
200
|
+
- feat: add internationalization for navigator search [kreafox - [`54010fd`](https://github.com/eea/volto-cca-policy/commit/54010fdab3019127b26ca495e3490569a97c03be)]
|
|
201
|
+
- feat: enhance comparison view with new criteria and styling updates [kreafox - [`25d101d`](https://github.com/eea/volto-cca-policy/commit/25d101d615ecb4d18706147c16663d3144928561)]
|
|
202
|
+
- feat: add comparison view for Navigator Catalogue tools (WIP) [kreafox - [`7024b27`](https://github.com/eea/volto-cca-policy/commit/7024b27e621be95456f611ecb4666cac3da7fdba)]
|
|
203
|
+
- feat: add Compare Tools panel for Navigator Catalogue [kreafox - [`f895de5`](https://github.com/eea/volto-cca-policy/commit/f895de5746b9eb093c8aa879cc858811ee63da6d)]
|
|
204
|
+
- feat: remove unused styles for navigator components [kreafox - [`95f39b2`](https://github.com/eea/volto-cca-policy/commit/95f39b224e2d425afbfe506242ec9eb507125ce4)]
|
|
205
|
+
- feat: update styles for cycle elements [kreafox - [`5b23e7f`](https://github.com/eea/volto-cca-policy/commit/5b23e7f1248796e6e56b74482bd8dec0845b46a6)]
|
|
206
|
+
- feat: add tooltip for additional tag values [kreafox - [`6c96d07`](https://github.com/eea/volto-cca-policy/commit/6c96d07ee1ea7eba2c90f6e57a9fb6f8fca229fc)]
|
|
207
|
+
- feat: update Navigator Catalogue view [kreafox - [`b6e2695`](https://github.com/eea/volto-cca-policy/commit/b6e26953e78d4c8dad71864ff870c9b5ca5c13d9)]
|
|
208
|
+
- feat: add Navigator Catalogue Map and Content view [kreafox - [`0e42a82`](https://github.com/eea/volto-cca-policy/commit/0e42a828899673cf83620ad17511fa066f08655e)]
|
|
209
|
+
- feat: add Navigator Catalogue search app - refs #304610 [kreafox - [`58a8ba1`](https://github.com/eea/volto-cca-policy/commit/58a8ba1590cd3d8b603a1f8f9bfd666fb5801d3b)]
|
|
210
|
+
|
|
211
|
+
#### :bug: Bug Fixes
|
|
212
|
+
|
|
213
|
+
- fix: update CSV download test to use HTMLAnchorElement's remove method [kreafox - [`10b49b9`](https://github.com/eea/volto-cca-policy/commit/10b49b9680d003481f85b00a0dd0cebb83638d3b)]
|
|
214
|
+
- fix: sonarqube reported issues [kreafox - [`6cb24f0`](https://github.com/eea/volto-cca-policy/commit/6cb24f04c2d5104cb93989fee9a00dfd4df7363d)]
|
|
215
|
+
- fix: language availability handling in ExtendedToolView [kreafox - [`06cd807`](https://github.com/eea/volto-cca-policy/commit/06cd8078bb0e8177233eefe88b5a1768b1b5dcee)]
|
|
216
|
+
- fix: button style [kreafox - [`8dedce2`](https://github.com/eea/volto-cca-policy/commit/8dedce290ff937c626c9d2afc0e62c2687252110)]
|
|
217
|
+
- fix: license status in cards [kreafox - [`b891a6f`](https://github.com/eea/volto-cca-policy/commit/b891a6ff010be7d0e3e6ad1fcb2f4428b4b6865c)]
|
|
218
|
+
- fix: className for icon [kreafox - [`02416b3`](https://github.com/eea/volto-cca-policy/commit/02416b34011fe3342ea745f3922a8cbc379b2290)]
|
|
219
|
+
- fix: update module path for @eeacms/search in jest-addon.config.js [kreafox - [`72f3549`](https://github.com/eea/volto-cca-policy/commit/72f35491918173a94d0ac60b2435bb02eefae2ce)]
|
|
220
|
+
- fix: merge conflicts [kreafox - [`14b8842`](https://github.com/eea/volto-cca-policy/commit/14b8842b73c1a62daa948e7f064b2d5d5881c30b)]
|
|
221
|
+
- fix: match selected tools using cca_uid [kreafox - [`8bd262f`](https://github.com/eea/volto-cca-policy/commit/8bd262f9f45d7ceaaf90f029972cd5d591718405)]
|
|
222
|
+
- fix: add uuid module mapping to jest configuration [kreafox - [`7b56e58`](https://github.com/eea/volto-cca-policy/commit/7b56e5855457a9fb26f2f0d8aa81138e72a7ff32)]
|
|
223
|
+
- fix: improve conditional rendering for options [kreafox - [`24acba6`](https://github.com/eea/volto-cca-policy/commit/24acba6401532f3bc5ac6e318f59a24c6cdf89cc)]
|
|
224
|
+
- fix: add uuid as a dependency [kreafox - [`662648b`](https://github.com/eea/volto-cca-policy/commit/662648b111046f20ff813ec4f2c34443426ba75d)]
|
|
225
|
+
- fix: language facet [kreafox - [`d7d0603`](https://github.com/eea/volto-cca-policy/commit/d7d0603ddd12f5a31a86120031012597efe1be43)]
|
|
226
|
+
- fix: code cleanup [kreafox - [`fa70404`](https://github.com/eea/volto-cca-policy/commit/fa70404d687d9611ca14340d8aec3ade5c90c89f)]
|
|
227
|
+
- fix: code cleanup [kreafox - [`939dbba`](https://github.com/eea/volto-cca-policy/commit/939dbba2f01ba2d0c462e886cdae96221bcf7257)]
|
|
228
|
+
|
|
229
|
+
#### :nail_care: Enhancements
|
|
230
|
+
|
|
231
|
+
- refactor: update adaptation sectors and climate impacts messages [kreafox - [`1b6e22f`](https://github.com/eea/volto-cca-policy/commit/1b6e22f5ff8fe2f8f1f15d4690ae8be1e0f4c148)]
|
|
232
|
+
- change: add incomplete message compare panel [kreafox - [`3157b08`](https://github.com/eea/volto-cca-policy/commit/3157b08563d139b4ac77e9d3784a82b81058900d)]
|
|
233
|
+
- refactor: update field names [kreafox - [`9a8dadb`](https://github.com/eea/volto-cca-policy/commit/9a8dadb1eee276d498aa2908559a2044d19b8c1c)]
|
|
234
|
+
- refactor: rename navigator guide result [kreafox - [`1f9c467`](https://github.com/eea/volto-cca-policy/commit/1f9c4670bca9d5101894b45b60c5581687eda618)]
|
|
235
|
+
- refactor: update class names for consistency [kreafox - [`edd5b76`](https://github.com/eea/volto-cca-policy/commit/edd5b7639f84b07933d08aef6ab52089ec50af33)]
|
|
236
|
+
- refactor: remove unused styles [kreafox - [`d799975`](https://github.com/eea/volto-cca-policy/commit/d799975357d16c3e68ef4003b9f41431478d0273)]
|
|
237
|
+
- change: display type in NavigatorCatalogueCardItem [kreafox - [`f93caef`](https://github.com/eea/volto-cca-policy/commit/f93caefcadaf044affd9ebf6987528c062e82bed)]
|
|
238
|
+
- change: add cluster_name to navigator search [kreafox - [`d63c481`](https://github.com/eea/volto-cca-policy/commit/d63c4812ff5b2692bb0bbc1c1894dc89d91440f9)]
|
|
239
|
+
- change: functionality score display in CompareToolsView [kreafox - [`ff15cff`](https://github.com/eea/volto-cca-policy/commit/ff15cff24d1ad0f577c0ffbad2317a38f74f2746)]
|
|
240
|
+
- refactor: remove clipboard functionality from ExtendedToolView [kreafox - [`f5347e4`](https://github.com/eea/volto-cca-policy/commit/f5347e4307b838797b1196ced8f4a5d5f3d2d6a4)]
|
|
241
|
+
- refactor: rename less file [kreafox - [`42bf28d`](https://github.com/eea/volto-cca-policy/commit/42bf28d00236cc3c785c60dfa3bbf4b6c68542eb)]
|
|
242
|
+
- refactor: update imports for CompareTools utilities and adjust test mocks [kreafox - [`0087fc9`](https://github.com/eea/volto-cca-policy/commit/0087fc9e6ac620cad1fceedc917257e47809f955)]
|
|
243
|
+
- refactor: replace ExternalLink with UniversalLink in CompareToolsView [kreafox - [`d053d35`](https://github.com/eea/volto-cca-policy/commit/d053d3544203531abdfb6efc618eacd091eb7cb5)]
|
|
244
|
+
- refactor: reorganize compare tools and update imports [kreafox - [`d4858ca`](https://github.com/eea/volto-cca-policy/commit/d4858ca8dd8ca400bfeb42248afb80622dec2cb6)]
|
|
245
|
+
- refactor: update imports and routing [kreafox - [`ba27e71`](https://github.com/eea/volto-cca-policy/commit/ba27e71d538f706cfa2eca677898f4bac6bf1d7c)]
|
|
246
|
+
- refactor: move files [kreafox - [`54b467c`](https://github.com/eea/volto-cca-policy/commit/54b467cd36745bd632d2b1a4fe95aecc78b45b92)]
|
|
247
|
+
|
|
248
|
+
#### :house: Internal changes
|
|
249
|
+
|
|
250
|
+
- chore: i18n [kreafox - [`bfa6267`](https://github.com/eea/volto-cca-policy/commit/bfa6267cb2c42b1076ab766917cc4b89b255d1ef)]
|
|
251
|
+
- style: css polishments [kreafox - [`d3e8112`](https://github.com/eea/volto-cca-policy/commit/d3e8112e43b7c1bc585d8e1f51452066031d9d77)]
|
|
252
|
+
- style: Automated code fix [eea-jenkins - [`fd4f850`](https://github.com/eea/volto-cca-policy/commit/fd4f850edaeb18e67655b4820dae9318779ce680)]
|
|
253
|
+
- style: css polishments [kreafox - [`318a036`](https://github.com/eea/volto-cca-policy/commit/318a03662914ae34547668f450d07c35a8d49895)]
|
|
254
|
+
- style: Automated code fix [eea-jenkins - [`8199208`](https://github.com/eea/volto-cca-policy/commit/8199208321b07d633e4030a83f10fcf8b1775751)]
|
|
255
|
+
- style: Automated code fix [eea-jenkins - [`3aa3f45`](https://github.com/eea/volto-cca-policy/commit/3aa3f45e7cfa712f8cfc62b291c23c1883e8229c)]
|
|
256
|
+
- style: Automated code fix [eea-jenkins - [`1e7ab82`](https://github.com/eea/volto-cca-policy/commit/1e7ab821fe22be996df7a2d2999bea2cd0dbe194)]
|
|
257
|
+
- style: Automated code fix [eea-jenkins - [`15945bb`](https://github.com/eea/volto-cca-policy/commit/15945bb1c56efce3afd13ae94a7fb0f86da087bd)]
|
|
258
|
+
- style: Automated code fix [eea-jenkins - [`1e99b64`](https://github.com/eea/volto-cca-policy/commit/1e99b6431452812c483c6848af6cab397dfa9112)]
|
|
259
|
+
- style: css improvements [kreafox - [`3657fec`](https://github.com/eea/volto-cca-policy/commit/3657fecd55b9e0359c9af2e13a23855b4a63ed58)]
|
|
260
|
+
|
|
261
|
+
#### :hammer_and_wrench: Others
|
|
262
|
+
|
|
263
|
+
- test: add unit tests [kreafox - [`5b66110`](https://github.com/eea/volto-cca-policy/commit/5b661103af1d07ddd4e93982e9ba4de3973c67fd)]
|
|
264
|
+
- Remove unused var [Tiberiu Ichim - [`ebd62d5`](https://github.com/eea/volto-cca-policy/commit/ebd62d532f7bf60575cab8d897abfadb18cba014)]
|
|
265
|
+
### [1.0.0-alpha.11](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.10...1.0.0-alpha.11) - 20 July 2026
|
|
266
|
+
|
|
267
|
+
#### :bug: Bug Fixes
|
|
268
|
+
|
|
269
|
+
- fix: Add Jest snapshot for ExtendedToolView component and fix GeoChar rendering logic [kreafox - [`dc6be99`](https://github.com/eea/volto-cca-policy/commit/dc6be99ad49bcc100203eb8d7da436540e59d5bc)]
|
|
270
|
+
- fix: Add betterleaks github action - refs #304517 [dobri1408 - [`ed997d7`](https://github.com/eea/volto-cca-policy/commit/ed997d7794b063b3113f97dfe11ac3b02e1c1075)]
|
|
271
|
+
|
|
272
|
+
#### :hammer_and_wrench: Others
|
|
273
|
+
|
|
274
|
+
- Refs #304613 - uuid version [iugin - [`60e3e0a`](https://github.com/eea/volto-cca-policy/commit/60e3e0a2c866ea344e4eaf486ecef3db3aaa0689)]
|
|
275
|
+
- Refs #304613 - uuid [iugin - [`a8d7a98`](https://github.com/eea/volto-cca-policy/commit/a8d7a98dd435e71a22b090786ba37aa02c7145b6)]
|
|
276
|
+
- Refs #304613 - extended tool view template [iugin - [`a8b3e53`](https://github.com/eea/volto-cca-policy/commit/a8b3e535e801495f767ca2ba60da351c1ec9deff)]
|
|
277
|
+
- Refs #304613 - extended tool view template [iugin - [`0783553`](https://github.com/eea/volto-cca-policy/commit/0783553b70e38b20fd2aa1772367eeb7a738c7a4)]
|
|
278
|
+
- Refs #304613 - extended tool view [iugin - [`632c3fc`](https://github.com/eea/volto-cca-policy/commit/632c3fca4da0b7972d9120443b187fe2fad278bf)]
|
|
279
|
+
### [1.0.0-alpha.10](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.9...1.0.0-alpha.10) - 13 July 2026
|
|
280
|
+
|
|
281
|
+
### [1.0.0-alpha.9](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.8...1.0.0-alpha.9) - 10 July 2026
|
|
21
282
|
|
|
22
283
|
### [1.0.0-alpha.8](https://github.com/eea/volto-cca-policy/compare/1.0.0-alpha.7...1.0.0-alpha.8) - 8 July 2026
|
|
23
284
|
|
package/README.md
CHANGED
|
@@ -26,6 +26,65 @@ See [RELEASE.md](https://github.com/eea/volto-cca-policy/blob/master/RELEASE.md)
|
|
|
26
26
|
|
|
27
27
|
See [DEVELOP.md](https://github.com/eea/volto-cca-policy/blob/master/DEVELOP.md).
|
|
28
28
|
|
|
29
|
+
## Secret Scanning
|
|
30
|
+
|
|
31
|
+
This repository uses the Betterleaks GitHub Action to scan the current
|
|
32
|
+
repository content on every push and pull request. The scan uses the rules in
|
|
33
|
+
`.gitleaks.toml` and uploads a `betterleaks-report` artifact when a finding is
|
|
34
|
+
detected.
|
|
35
|
+
|
|
36
|
+
If the optional SMTP secrets are configured, failed scans also send an email to
|
|
37
|
+
the last commit committer. The workflow expects these repository or
|
|
38
|
+
organization secrets:
|
|
39
|
+
|
|
40
|
+
- `SMTP_URL`
|
|
41
|
+
- `SMTP_PORT` (optional, defaults to `25`)
|
|
42
|
+
- `SMTP_EMAIL`
|
|
43
|
+
- `SMTP_PASSWORD` (optional if the SMTP server does not require authentication)
|
|
44
|
+
|
|
45
|
+
Port `465` is sent with direct TLS; other ports use the default SMTP handshake.
|
|
46
|
+
The email includes a short finding summary from the redacted Betterleaks report,
|
|
47
|
+
including the redacted matched line from each finding.
|
|
48
|
+
|
|
49
|
+
There are three common outcomes:
|
|
50
|
+
|
|
51
|
+
1. **Everything is OK.** The `Betterleaks / Scan for secrets` check is green and
|
|
52
|
+
no action is needed. Regular references to runtime values are OK, for example:
|
|
53
|
+
|
|
54
|
+
```js
|
|
55
|
+
const tokenFromCookie = req.universalCookies.get('auth_token');
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
2. **A real secret was found.** The check is red and the workflow log asks you to
|
|
59
|
+
download the `betterleaks-report` artifact. Open the artifact from the GitHub
|
|
60
|
+
Actions run and check the reported file, line and rule. Remove the committed
|
|
61
|
+
value, move it to the proper secret store, and rotate it if it was exposed.
|
|
62
|
+
A report entry looks like this:
|
|
63
|
+
|
|
64
|
+
```json
|
|
65
|
+
{
|
|
66
|
+
"RuleID": "secret-literal-assignment",
|
|
67
|
+
"File": "src/config.js",
|
|
68
|
+
"StartLine": 12,
|
|
69
|
+
"Secret": "[REDACTED]"
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
3. **The finding is a false positive.** Keep the value only if it is clearly not
|
|
74
|
+
sensitive, such as a test fixture, placeholder, or public example. Add
|
|
75
|
+
`betterleaks:allow` on the same line and include a short explanation in the
|
|
76
|
+
pull request.
|
|
77
|
+
|
|
78
|
+
```js
|
|
79
|
+
const testPassword = 'admin'; //betterleaks:allow
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
```yaml
|
|
83
|
+
password: "admin" #betterleaks:allow
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Do not add `betterleaks:allow` to real credentials.
|
|
87
|
+
|
|
29
88
|
## Copyright and license
|
|
30
89
|
|
|
31
90
|
The Initial Owner of the Original Code is European Environment Agency (EEA).
|
package/RELEASE.md
CHANGED
|
@@ -33,7 +33,7 @@ Release-it is a tool that automates 4 important steps in the release process:
|
|
|
33
33
|
To configure the authentification, you need to export GITHUB_TOKEN for [GitHub](https://github.com/settings/tokens)
|
|
34
34
|
|
|
35
35
|
```
|
|
36
|
-
export GITHUB_TOKEN=
|
|
36
|
+
export GITHUB_TOKEN="${GITHUB_TOKEN}"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
To configure npm, you can use the `npm login` command or use a configuration file with a TOKEN :
|
package/jest-addon.config.js
CHANGED
|
@@ -26,7 +26,9 @@ module.exports = {
|
|
|
26
26
|
'!src/**/*.d.ts',
|
|
27
27
|
],
|
|
28
28
|
moduleNameMapper: {
|
|
29
|
-
'^
|
|
29
|
+
'^uuid$': require.resolve('uuid'),
|
|
30
|
+
'^node:crypto$':
|
|
31
|
+
'<rootDir>/src/addons/volto-cca-policy/jest-node-crypto-mock.js',
|
|
30
32
|
'\\.(css|less|scss|sass)$': 'identity-obj-proxy',
|
|
31
33
|
'@plone-collective/volto-authomatic/(.*)$':
|
|
32
34
|
'<rootDir>/node_modules/@plone-collective/volto-authomatic/src/$1',
|
|
@@ -36,8 +38,10 @@ module.exports = {
|
|
|
36
38
|
'@package/(.*)$': '<rootDir>/node_modules/@plone/volto/src/$1',
|
|
37
39
|
'@root/(.*)$': '<rootDir>/node_modules/@plone/volto/src/$1',
|
|
38
40
|
'@plone/volto-quanta/(.*)$': '<rootDir>/src/addons/volto-quanta/src/$1',
|
|
39
|
-
'
|
|
40
|
-
|
|
41
|
+
'^@eeacms/search/(.*)$':
|
|
42
|
+
'<rootDir>/node_modules/@eeacms/volto-searchlib/searchlib/$1',
|
|
43
|
+
'^@eeacms/search$':
|
|
44
|
+
'<rootDir>/node_modules/@eeacms/volto-searchlib/searchlib',
|
|
41
45
|
'@eeacms/(.*?)/(.*)$': '<rootDir>/node_modules/@eeacms/$1/src/$2',
|
|
42
46
|
'@plone/volto-slate$': voltoSlatePath,
|
|
43
47
|
'@plone/volto-slate/(.*)$': `${voltoSlatePath}/$1`,
|