@eeacms/volto-eea-kitkat 33.1.0 → 33.1.2
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 +58 -3
- package/CHANGELOG.md +58 -3
- package/README.md +59 -0
- package/RELEASE.md +1 -1
- package/new.json +5 -5
- package/old.json +3 -3
- package/package.json +5 -5
- package/partfile +3 -2
- package/releasefile +14 -6
|
@@ -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
CHANGED
|
@@ -4,6 +4,22 @@ 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
|
+
### [33.1.2](https://github.com/eea/volto-eea-kitkat/compare/33.1.1...33.1.2) - 20 August 2026
|
|
8
|
+
|
|
9
|
+
#### :rocket: Dependency updates
|
|
10
|
+
|
|
11
|
+
- Release @eeacms/volto-taxonomy@6.0.4 [EEA Jenkins - [`91e2d25`](https://github.com/eea/volto-eea-kitkat/commit/91e2d250be4c54f5b5395c1287b0f38f471f8f91)]
|
|
12
|
+
- Release @eeacms/volto-taxonomy@6.0.3 [EEA Jenkins - [`7a10191`](https://github.com/eea/volto-eea-kitkat/commit/7a1019189f28b673e750a3fc315bcea5d63240cb)]
|
|
13
|
+
|
|
14
|
+
#### :bug: Bug Fixes
|
|
15
|
+
|
|
16
|
+
- fix: Add betterleaks github action - refs #304517 [dobri1408 - [`c52ca44`](https://github.com/eea/volto-eea-kitkat/commit/c52ca44e51859bbf274afedc8718d5d13201b3b0)]
|
|
17
|
+
|
|
18
|
+
#### :hammer_and_wrench: Others
|
|
19
|
+
|
|
20
|
+
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`3cd6e0f`](https://github.com/eea/volto-eea-kitkat/commit/3cd6e0f958c74fec4f1516bb661a7d529b4806b7)]
|
|
21
|
+
### [33.1.1](https://github.com/eea/volto-eea-kitkat/compare/33.1.0...33.1.1) - 30 June 2026
|
|
22
|
+
|
|
7
23
|
### [33.1.0](https://github.com/eea/volto-eea-kitkat/compare/33.0.8...33.1.0) - 26 June 2026
|
|
8
24
|
|
|
9
25
|
#### :rocket: Dependency updates
|
|
@@ -12,10 +28,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
12
28
|
|
|
13
29
|
#### :house: Internal changes
|
|
14
30
|
|
|
31
|
+
- chore: [JENKINSFILE] sanitize sonarqube command Refs #305084 [valentinab25 - [`f70c610`](https://github.com/eea/volto-eea-kitkat/commit/f70c610d9768ad174b6a560c20098955adbafb1d)]
|
|
15
32
|
|
|
16
|
-
#### :hammer_and_wrench: Others
|
|
17
|
-
|
|
18
|
-
- Release 33.1.0 [Alin Voinea - [`52d65c3`](https://github.com/eea/volto-eea-kitkat/commit/52d65c3ac25401e1f41cb3309e52f6e9270cb714)]
|
|
19
33
|
### [33.0.8](https://github.com/eea/volto-eea-kitkat/compare/33.0.7...33.0.8) - 24 June 2026
|
|
20
34
|
|
|
21
35
|
#### :rocket: Dependency updates
|
|
@@ -190,7 +204,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
190
204
|
|
|
191
205
|
#### :house: Internal changes
|
|
192
206
|
|
|
207
|
+
- chore: [JENKINSFILE] add package version in sonarqube [valentinab25 - [`34db2e1`](https://github.com/eea/volto-eea-kitkat/commit/34db2e1155fbbd1733d7176778845e3f3a7f8672)]
|
|
193
208
|
- chore: package.json [Alin Voinea - [`61e1494`](https://github.com/eea/volto-eea-kitkat/commit/61e149440d135080a9381358f0713dab12b2748d)]
|
|
209
|
+
- chore: [JENKINSFILE] use sonarqube branches [EEA Jenkins - [`cba656b`](https://github.com/eea/volto-eea-kitkat/commit/cba656bb41fe90106fea7476199a5b5ff38ee13a)]
|
|
194
210
|
|
|
195
211
|
## [32.0.0](https://github.com/eea/volto-eea-kitkat/compare/31.0.2...32.0.0) - 19 February 2026
|
|
196
212
|
|
|
@@ -383,6 +399,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
383
399
|
|
|
384
400
|
#### :hammer_and_wrench: Others
|
|
385
401
|
|
|
402
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`7eead1c`](https://github.com/eea/volto-eea-kitkat/commit/7eead1c3b28dced525749555d95f1f8aa908a9bb)]
|
|
403
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`49c7810`](https://github.com/eea/volto-eea-kitkat/commit/49c781067cce00004c88450a4aa30b3d284d344b)]
|
|
386
404
|
### [27.1.2](https://github.com/eea/volto-eea-kitkat/compare/27.1.1...27.1.2) - 2 July 2025
|
|
387
405
|
|
|
388
406
|
#### :rocket: Dependency updates
|
|
@@ -428,6 +446,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
428
446
|
|
|
429
447
|
#### :hammer_and_wrench: Others
|
|
430
448
|
|
|
449
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`36f81f8`](https://github.com/eea/volto-eea-kitkat/commit/36f81f8ca489b64a5a2c9ae0cef476fe6d71ef16)]
|
|
431
450
|
### [26.7.0](https://github.com/eea/volto-eea-kitkat/compare/26.6.1...26.7.0) - 1 May 2025
|
|
432
451
|
|
|
433
452
|
#### :rocket: Dependency updates
|
|
@@ -486,6 +505,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
486
505
|
|
|
487
506
|
#### :hammer_and_wrench: Others
|
|
488
507
|
|
|
508
|
+
- Add Sonarqube tag using ied-frontend addons list [EEA Jenkins - [`7942941`](https://github.com/eea/volto-eea-kitkat/commit/794294157e27abbe7efe3d3a2f739e9ad0b82bf2)]
|
|
489
509
|
### [26.4.4](https://github.com/eea/volto-eea-kitkat/compare/26.4.3...26.4.4) - 10 February 2025
|
|
490
510
|
|
|
491
511
|
#### :rocket: Dependency updates
|
|
@@ -784,6 +804,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
784
804
|
|
|
785
805
|
#### :hammer_and_wrench: Others
|
|
786
806
|
|
|
807
|
+
- Add Sonarqube tag using insitu-frontend addons list [EEA Jenkins - [`d7ebd6c`](https://github.com/eea/volto-eea-kitkat/commit/d7ebd6c856ee7fcaae6047c32706071d5f24bf3c)]
|
|
808
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`5948ed3`](https://github.com/eea/volto-eea-kitkat/commit/5948ed35d981c8fe6a16c0ced56ed417ae8a6c61)]
|
|
787
809
|
## [24.0.0](https://github.com/eea/volto-eea-kitkat/compare/23.2.0...24.0.0) - 5 April 2024
|
|
788
810
|
|
|
789
811
|
#### :rocket: Dependency updates
|
|
@@ -878,6 +900,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
878
900
|
#### :hammer_and_wrench: Others
|
|
879
901
|
|
|
880
902
|
- Release 22.0.0 [alin - [`fb085a0`](https://github.com/eea/volto-eea-kitkat/commit/fb085a0e45626cd2f3f34f927e40915a494c77a3)]
|
|
903
|
+
- Add Sonarqube tag using insitu-frontend addons list [EEA Jenkins - [`d90b330`](https://github.com/eea/volto-eea-kitkat/commit/d90b330d3c721586f5f4626862b304c9cd9bf8b1)]
|
|
881
904
|
### [21.2.3](https://github.com/eea/volto-eea-kitkat/compare/21.2.2...21.2.3) - 1 February 2024
|
|
882
905
|
|
|
883
906
|
#### :rocket: Dependency updates
|
|
@@ -964,6 +987,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
964
987
|
|
|
965
988
|
#### :hammer_and_wrench: Others
|
|
966
989
|
|
|
990
|
+
- test: [JENKINS] Use java17 for sonarqube scanner [valentinab25 - [`8e4d866`](https://github.com/eea/volto-eea-kitkat/commit/8e4d86602f5b532da600ab03d77b486690ef112b)]
|
|
991
|
+
- test: [JENKINS] Run cypress in started frontend container [valentinab25 - [`bc2908c`](https://github.com/eea/volto-eea-kitkat/commit/bc2908cf04b6ab596d0ddf091b09e06981c6fc2b)]
|
|
967
992
|
### [20.0.2](https://github.com/eea/volto-eea-kitkat/compare/20.0.1...20.0.2) - 15 November 2023
|
|
968
993
|
|
|
969
994
|
### [20.0.1](https://github.com/eea/volto-eea-kitkat/compare/20.0.0...20.0.1) - 13 November 2023
|
|
@@ -975,6 +1000,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
975
1000
|
|
|
976
1001
|
#### :hammer_and_wrench: Others
|
|
977
1002
|
|
|
1003
|
+
- test: [JENKINS] Add cpu limit on cypress docker [valentinab25 - [`f9c872b`](https://github.com/eea/volto-eea-kitkat/commit/f9c872b27eca12147b8d2728c24fbc37a6132f6a)]
|
|
1004
|
+
- test: [JENKINS] set cpu limit on cypress [valentinab25 - [`bcdc347`](https://github.com/eea/volto-eea-kitkat/commit/bcdc34701e1fea38af7d5b580a0831a864c18a3b)]
|
|
1005
|
+
- test: [JENKINS] add shm-size to cypress docker [valentinab25 - [`cfb36e2`](https://github.com/eea/volto-eea-kitkat/commit/cfb36e29aa419a1f7c24d38ca4316c99c8d7f4df)]
|
|
1006
|
+
- test: [JENKINS] improve cypress time [valentinab25 - [`0df1585`](https://github.com/eea/volto-eea-kitkat/commit/0df15850745f388937152a104128b4c3a586701f)]
|
|
1007
|
+
- test: [JENKINS] improve cypress time [valentinab25 - [`6b9a750`](https://github.com/eea/volto-eea-kitkat/commit/6b9a750d8d1676dbbe418021643dc0ea145dd6d2)]
|
|
978
1008
|
## [20.0.0](https://github.com/eea/volto-eea-kitkat/compare/19.1.0...20.0.0) - 2 November 2023
|
|
979
1009
|
|
|
980
1010
|
#### :rocket: Dependency updates
|
|
@@ -1011,6 +1041,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1011
1041
|
|
|
1012
1042
|
#### :house: Internal changes
|
|
1013
1043
|
|
|
1044
|
+
- chore: [JENKINS] Refactor automated testing [valentinab25 - [`068610e`](https://github.com/eea/volto-eea-kitkat/commit/068610e11366f3d9a2c49c7ed1b22c0ae4549b5d)]
|
|
1014
1045
|
|
|
1015
1046
|
#### :hammer_and_wrench: Others
|
|
1016
1047
|
|
|
@@ -1349,6 +1380,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1349
1380
|
#### :house: Internal changes
|
|
1350
1381
|
|
|
1351
1382
|
- chore: Revert version bump until ready for release [Alin Voinea - [`91ada51`](https://github.com/eea/volto-eea-kitkat/commit/91ada510d1f78cee615c9ffdf9307995f2b1722d)]
|
|
1383
|
+
- chore: [JENKINS] Deprecate circularity website [valentinab25 - [`a62f4ff`](https://github.com/eea/volto-eea-kitkat/commit/a62f4ffee3796fa3558628fe1d63a9a263ae6bd2)]
|
|
1352
1384
|
|
|
1353
1385
|
#### :hammer_and_wrench: Others
|
|
1354
1386
|
|
|
@@ -1465,6 +1497,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1465
1497
|
|
|
1466
1498
|
#### :hammer_and_wrench: Others
|
|
1467
1499
|
|
|
1500
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`8ec6014`](https://github.com/eea/volto-eea-kitkat/commit/8ec6014398b1b266b4f0173b92539245a385ee1a)]
|
|
1468
1501
|
- refactor code as per sonarqube issues [tedw87 - [`6aab22a`](https://github.com/eea/volto-eea-kitkat/commit/6aab22a3ddf038bdce2272be8733b9afd9562720)]
|
|
1469
1502
|
## [14.0.0](https://github.com/eea/volto-eea-kitkat/compare/13.0.0...14.0.0) - 24 March 2023
|
|
1470
1503
|
|
|
@@ -1498,6 +1531,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1498
1531
|
|
|
1499
1532
|
- Release 12.1.0 [Alin Voinea - [`f98ddf7`](https://github.com/eea/volto-eea-kitkat/commit/f98ddf78b0818591f95e027d612257f78fcbba99)]
|
|
1500
1533
|
- test(Jenkins): Use latest stable Volto for testing [Alin Voinea - [`49938ca`](https://github.com/eea/volto-eea-kitkat/commit/49938ca373ee9f6384932fa39b957361db3b84a7)]
|
|
1534
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`877d026`](https://github.com/eea/volto-eea-kitkat/commit/877d026f7a98bed9aac7f0117cace1e28963ccf1)]
|
|
1501
1535
|
### [12.0.3](https://github.com/eea/volto-eea-kitkat/compare/12.0.2...12.0.3) - 1 March 2023
|
|
1502
1536
|
|
|
1503
1537
|
### [12.0.2](https://github.com/eea/volto-eea-kitkat/compare/12.0.1...12.0.2) - 1 March 2023
|
|
@@ -1592,6 +1626,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1592
1626
|
|
|
1593
1627
|
#### :hammer_and_wrench: Others
|
|
1594
1628
|
|
|
1629
|
+
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`78dcc6c`](https://github.com/eea/volto-eea-kitkat/commit/78dcc6c91c3070988f8eab4f40906948b2f24b04)]
|
|
1595
1630
|
### [10.4.0](https://github.com/eea/volto-eea-kitkat/compare/10.3.0...10.4.0) - 28 December 2022
|
|
1596
1631
|
|
|
1597
1632
|
#### :rocket: Dependency updates
|
|
@@ -1604,6 +1639,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1604
1639
|
#### :hammer_and_wrench: Others
|
|
1605
1640
|
|
|
1606
1641
|
- Release 10.4.0 [Alin Voinea - [`9f580b7`](https://github.com/eea/volto-eea-kitkat/commit/9f580b75c7349f824bf537a9f14c2da1c505a105)]
|
|
1642
|
+
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`fd9cc58`](https://github.com/eea/volto-eea-kitkat/commit/fd9cc589f17e2eb73bf42f88645688824f97eb9e)]
|
|
1607
1643
|
### [10.3.0](https://github.com/eea/volto-eea-kitkat/compare/10.2.0...10.3.0) - 16 December 2022
|
|
1608
1644
|
|
|
1609
1645
|
#### :rocket: Dependency updates
|
|
@@ -1615,6 +1651,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1615
1651
|
#### :hammer_and_wrench: Others
|
|
1616
1652
|
|
|
1617
1653
|
- Release 10.3.0 [Alin Voinea - [`4f9945a`](https://github.com/eea/volto-eea-kitkat/commit/4f9945a0fd1a981a7f4b43c56293040dba0dd09d)]
|
|
1654
|
+
- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`92644a9`](https://github.com/eea/volto-eea-kitkat/commit/92644a95981feb5fc97931d549a078d5bb190839)]
|
|
1618
1655
|
### [10.2.0](https://github.com/eea/volto-eea-kitkat/compare/10.1.1...10.2.0) - 29 November 2022
|
|
1619
1656
|
|
|
1620
1657
|
#### :rocket: Dependency updates
|
|
@@ -1645,6 +1682,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1645
1682
|
|
|
1646
1683
|
- Fix storybook [Alin Voinea - [`79d961a`](https://github.com/eea/volto-eea-kitkat/commit/79d961a12cf1e90871a0aa840a86852f343db4ac)]
|
|
1647
1684
|
- Release 10.1.0 [Alin Voinea - [`574c998`](https://github.com/eea/volto-eea-kitkat/commit/574c998265f65f41190d60e50a9c90e0d818be35)]
|
|
1685
|
+
- Add Sonarqube tag using demo-kitkat-frontend addons list [EEA Jenkins - [`c53b32f`](https://github.com/eea/volto-eea-kitkat/commit/c53b32fe433942500365fc7384c36db46eb9e87e)]
|
|
1648
1686
|
## [10.0.0](https://github.com/eea/volto-eea-kitkat/compare/9.0.0...10.0.0) - 16 November 2022
|
|
1649
1687
|
|
|
1650
1688
|
#### :rocket: New Features
|
|
@@ -1755,6 +1793,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1755
1793
|
|
|
1756
1794
|
#### :hammer_and_wrench: Others
|
|
1757
1795
|
|
|
1796
|
+
- Add Sonarqube tag using marine-frontend addons list [EEA Jenkins - [`fdeeab3`](https://github.com/eea/volto-eea-kitkat/commit/fdeeab3e19db1a57e69dab8513d37323c0d16e11)]
|
|
1758
1797
|
### [8.2.2](https://github.com/eea/volto-eea-kitkat/compare/8.2.1...8.2.2) - 28 September 2022
|
|
1759
1798
|
|
|
1760
1799
|
### [8.2.1](https://github.com/eea/volto-eea-kitkat/compare/8.2.0...8.2.1) - 28 September 2022
|
|
@@ -1772,6 +1811,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1772
1811
|
#### :hammer_and_wrench: Others
|
|
1773
1812
|
|
|
1774
1813
|
- Release 8.2.0 [Alin Voinea - [`0e39600`](https://github.com/eea/volto-eea-kitkat/commit/0e39600048be15512a9ec742830f1412beb6db4f)]
|
|
1814
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`b88dbd1`](https://github.com/eea/volto-eea-kitkat/commit/b88dbd11c7dc85a57b22b98a7a71c33bb827cd34)]
|
|
1775
1815
|
### [8.1.0](https://github.com/eea/volto-eea-kitkat/compare/8.0.0...8.1.0) - 22 September 2022
|
|
1776
1816
|
|
|
1777
1817
|
#### :rocket: Dependency updates
|
|
@@ -1803,10 +1843,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1803
1843
|
#### :hammer_and_wrench: Others
|
|
1804
1844
|
|
|
1805
1845
|
- Merge pull request #66 from eea/develop [Nilesh - [`f7d1d2f`](https://github.com/eea/volto-eea-kitkat/commit/f7d1d2f0e209a6650d134a7657ded482bc87b3d5)]
|
|
1846
|
+
- [jenkins] fix coverage report name [valentinab25 - [`d3d29e4`](https://github.com/eea/volto-eea-kitkat/commit/d3d29e49bb323f82d1ef2d2d9e8674c8c9455386)]
|
|
1806
1847
|
### [7.1.1](https://github.com/eea/volto-eea-kitkat/compare/7.1.0...7.1.1) - 5 September 2022
|
|
1807
1848
|
|
|
1808
1849
|
#### :hammer_and_wrench: Others
|
|
1809
1850
|
|
|
1851
|
+
- [jenkins] fix coverage report name [valentinab25 - [`b03633d`](https://github.com/eea/volto-eea-kitkat/commit/b03633d92c50ae921cf902b88d6321d347aac3d2)]
|
|
1810
1852
|
### [7.1.0](https://github.com/eea/volto-eea-kitkat/compare/7.0.0...7.1.0) - 29 August 2022
|
|
1811
1853
|
|
|
1812
1854
|
## [7.0.0](https://github.com/eea/volto-eea-kitkat/compare/6.2.3...7.0.0) - 26 August 2022
|
|
@@ -1879,6 +1921,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1879
1921
|
|
|
1880
1922
|
#### :hammer_and_wrench: Others
|
|
1881
1923
|
|
|
1924
|
+
- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`88e838b`](https://github.com/eea/volto-eea-kitkat/commit/88e838bdf224f8f30a48822dc0b457f3eba8c837)]
|
|
1882
1925
|
- update volto-widget-dataprovenance readme badges [Nilesh - [`5009c47`](https://github.com/eea/volto-eea-kitkat/commit/5009c47097c70ba102e41cba2870d6aad37221d3)]
|
|
1883
1926
|
- Revert "Trying to fix cypress" [Alin Voinea - [`0c1eeb2`](https://github.com/eea/volto-eea-kitkat/commit/0c1eeb2fada6e204fed19140407f642ffde5e07f)]
|
|
1884
1927
|
- Trying to fix cypress [Alin Voinea - [`61c3a51`](https://github.com/eea/volto-eea-kitkat/commit/61c3a5105608e3015c59c5d74e5d2afcc86f434f)]
|
|
@@ -2001,6 +2044,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2001
2044
|
|
|
2002
2045
|
#### :hammer_and_wrench: Others
|
|
2003
2046
|
|
|
2047
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`23f80c1`](https://github.com/eea/volto-eea-kitkat/commit/23f80c1a3d3fd77ad8be5fdf6ef3354d61ef2849)]
|
|
2004
2048
|
- Update README.md [Alexandru Ghica - [`69f379b`](https://github.com/eea/volto-eea-kitkat/commit/69f379bb4effb22be2e78eda6599c822202acfd3)]
|
|
2005
2049
|
### [5.2.6](https://github.com/eea/volto-eea-kitkat/compare/5.2.5...5.2.6) - 16 March 2022
|
|
2006
2050
|
|
|
@@ -2019,6 +2063,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2019
2063
|
|
|
2020
2064
|
#### :hammer_and_wrench: Others
|
|
2021
2065
|
|
|
2066
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`340e29a`](https://github.com/eea/volto-eea-kitkat/commit/340e29aba1802068591da23490562db0dd6a9a01)]
|
|
2022
2067
|
### [5.2.4](https://github.com/eea/volto-eea-kitkat/compare/5.2.3...5.2.4) - 4 March 2022
|
|
2023
2068
|
|
|
2024
2069
|
### [5.2.3](https://github.com/eea/volto-eea-kitkat/compare/5.2.2...5.2.3) - 4 March 2022
|
|
@@ -2184,6 +2229,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2184
2229
|
|
|
2185
2230
|
#### :hammer_and_wrench: Others
|
|
2186
2231
|
|
|
2232
|
+
- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`106efb6`](https://github.com/eea/volto-eea-kitkat/commit/106efb623afd9142b4d3cea2225f7b197608a5b6)]
|
|
2187
2233
|
- Add SonarQube badges [Alin Voinea - [`c9ab6ef`](https://github.com/eea/volto-eea-kitkat/commit/c9ab6efe9c303775751856ffec72923169a7c2ac)]
|
|
2188
2234
|
### [4.1.7](https://github.com/eea/volto-eea-kitkat/compare/4.1.6...4.1.7) - 24 November 2021
|
|
2189
2235
|
|
|
@@ -2237,6 +2283,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2237
2283
|
- Disable cypress [Alin Voinea - [`a406e2d`](https://github.com/eea/volto-eea-kitkat/commit/a406e2dc4be788f924642d43d82c677577a6877a)]
|
|
2238
2284
|
- Roll-back volto-slate to 4.2.1 [Alin Voinea - [`ab6ae97`](https://github.com/eea/volto-eea-kitkat/commit/ab6ae97366c1b75b73d77636f5ab937401b9f8f7)]
|
|
2239
2285
|
- Add dependencies resolutions [Alin Voinea - [`7ade630`](https://github.com/eea/volto-eea-kitkat/commit/7ade6305c9c9dfc5c2e332c50676d5f75ffe4c9f)]
|
|
2286
|
+
- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`a77e812`](https://github.com/eea/volto-eea-kitkat/commit/a77e812cd7aa74bc1d94cc5a44144f05b6d99264)]
|
|
2240
2287
|
### [4.1.2](https://github.com/eea/volto-eea-kitkat/compare/4.1.1...4.1.2) - 4 November 2021
|
|
2241
2288
|
|
|
2242
2289
|
#### :rocket: Dependency updates
|
|
@@ -2254,6 +2301,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2254
2301
|
- Release volto-slate 4.2.1 [Alin Voinea - [`3c26754`](https://github.com/eea/volto-eea-kitkat/commit/3c26754a1ead420dfb675c7453cec6d723566a85)]
|
|
2255
2302
|
- Release stable volto-slate 4.2.0 [Alin Voinea - [`591bcba`](https://github.com/eea/volto-eea-kitkat/commit/591bcbafa174a6cf20f45b622b2c1407df24c288)]
|
|
2256
2303
|
- Revert "Release volto-slate@4.1.0" [Alin Voinea - [`6c22eb3`](https://github.com/eea/volto-eea-kitkat/commit/6c22eb35c65f8ee7470f6dac18fe88ad73bdef3e)]
|
|
2304
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`981c570`](https://github.com/eea/volto-eea-kitkat/commit/981c570138a1b0890080a111b862759049216995)]
|
|
2305
|
+
- Revert "[JENKINS] - skip cypress" [Alin Voinea - [`c24997c`](https://github.com/eea/volto-eea-kitkat/commit/c24997cd7a293c4021ac7a8bc43212bae4cfecbc)]
|
|
2306
|
+
- Revert "[JENKINS] - Skip cypress report to sonar" [Alin Voinea - [`0cb9887`](https://github.com/eea/volto-eea-kitkat/commit/0cb9887381e5469466bb1ac3516af0d1d572fc19)]
|
|
2257
2307
|
### [4.1.0](https://github.com/eea/volto-eea-kitkat/compare/4.0.2...4.1.0) - 14 October 2021
|
|
2258
2308
|
|
|
2259
2309
|
#### :rocket: Dependency updates
|
|
@@ -2283,6 +2333,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2283
2333
|
|
|
2284
2334
|
#### :hammer_and_wrench: Others
|
|
2285
2335
|
|
|
2336
|
+
- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`e3f00fb`](https://github.com/eea/volto-eea-kitkat/commit/e3f00fb23202e8ba20c8dbb961a3f54f86b42bb9)]
|
|
2286
2337
|
- Add cypress integration tests [Alin Voinea - [`b49a070`](https://github.com/eea/volto-eea-kitkat/commit/b49a070bdbe2dcd04a31f96ade6d6f06fea94e7b)]
|
|
2287
2338
|
## [4.0.0](https://github.com/eea/volto-eea-kitkat/compare/3.0.2...4.0.0) - 29 September 2021
|
|
2288
2339
|
|
|
@@ -2295,8 +2346,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2295
2346
|
|
|
2296
2347
|
- Rename volto-satging-banner to volto-banner 1.0.0 [Alin Voinea - [`eefc06b`](https://github.com/eea/volto-eea-kitkat/commit/eefc06b186efef1a9627bde3e65656d7be074de6)]
|
|
2297
2348
|
- Add staging-banner to Readme [Alin Voinea - [`cbca78f`](https://github.com/eea/volto-eea-kitkat/commit/cbca78f9b4f76c57dbecd131452925fe7fbe24b4)]
|
|
2349
|
+
- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`485a0ba`](https://github.com/eea/volto-eea-kitkat/commit/485a0ba3c16521eba77b092fbae04671acbd3a4d)]
|
|
2298
2350
|
- Revert "Automated release volto-slate@4.0.1" [Alin Voinea - [`447abb0`](https://github.com/eea/volto-eea-kitkat/commit/447abb0791616463d5c7fa4ee562ddd1c7984275)]
|
|
2299
2351
|
- Remove not needed tableButton volto-slate profile [Alin Voinea - [`f8a832e`](https://github.com/eea/volto-eea-kitkat/commit/f8a832ed5702ef656c520b842307ce262a110c9b)]
|
|
2352
|
+
- Add Sonarqube tag using climate-energy-frontend addons list [EEA Jenkins - [`af37bcf`](https://github.com/eea/volto-eea-kitkat/commit/af37bcfc75a6868484665ba4710867f61cb7eb39)]
|
|
2300
2353
|
### [3.0.2](https://github.com/eea/volto-eea-kitkat/compare/3.0.1...3.0.2) - 21 September 2021
|
|
2301
2354
|
|
|
2302
2355
|
### [3.0.1](https://github.com/eea/volto-eea-kitkat/compare/3.0.0...3.0.1) - 21 September 2021
|
|
@@ -2309,6 +2362,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2309
2362
|
#### :hammer_and_wrench: Others
|
|
2310
2363
|
|
|
2311
2364
|
- Update to version 3.0.0 [Alexandru Ghica - [`89bd9fd`](https://github.com/eea/volto-eea-kitkat/commit/89bd9fde1a8e4949f849bf8208cff33df1995a8d)]
|
|
2365
|
+
- Add Sonarqube tag using climate-energy-frontend addons list [EEA Jenkins - [`b700b5a`](https://github.com/eea/volto-eea-kitkat/commit/b700b5a985714197e89e656927586367d63b90a7)]
|
|
2312
2366
|
### [2.0.2](https://github.com/eea/volto-eea-kitkat/compare/2.0.1...2.0.2) - 10 September 2021
|
|
2313
2367
|
|
|
2314
2368
|
#### :hammer_and_wrench: Others
|
|
@@ -2340,4 +2394,5 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2340
2394
|
|
|
2341
2395
|
#### :hammer_and_wrench: Others
|
|
2342
2396
|
|
|
2397
|
+
- yarn bootstrap [Alin Voinea - [`180a877`](https://github.com/eea/volto-eea-kitkat/commit/180a877a89301183ce7492933965161e21e2509b)]
|
|
2343
2398
|
- Initial commit [Alin Voinea - [`0451abf`](https://github.com/eea/volto-eea-kitkat/commit/0451abfbaad75a437b9e6ec0df56b924c8d1637f)]
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ 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
|
+
### [33.1.2](https://github.com/eea/volto-eea-kitkat/compare/33.1.1...33.1.2) - 20 August 2026
|
|
8
|
+
|
|
9
|
+
#### :rocket: Dependency updates
|
|
10
|
+
|
|
11
|
+
- Release @eeacms/volto-taxonomy@6.0.4 [EEA Jenkins - [`91e2d25`](https://github.com/eea/volto-eea-kitkat/commit/91e2d250be4c54f5b5395c1287b0f38f471f8f91)]
|
|
12
|
+
- Release @eeacms/volto-taxonomy@6.0.3 [EEA Jenkins - [`7a10191`](https://github.com/eea/volto-eea-kitkat/commit/7a1019189f28b673e750a3fc315bcea5d63240cb)]
|
|
13
|
+
|
|
14
|
+
#### :bug: Bug Fixes
|
|
15
|
+
|
|
16
|
+
- fix: Add betterleaks github action - refs #304517 [dobri1408 - [`c52ca44`](https://github.com/eea/volto-eea-kitkat/commit/c52ca44e51859bbf274afedc8718d5d13201b3b0)]
|
|
17
|
+
|
|
18
|
+
#### :hammer_and_wrench: Others
|
|
19
|
+
|
|
20
|
+
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`3cd6e0f`](https://github.com/eea/volto-eea-kitkat/commit/3cd6e0f958c74fec4f1516bb661a7d529b4806b7)]
|
|
21
|
+
### [33.1.1](https://github.com/eea/volto-eea-kitkat/compare/33.1.0...33.1.1) - 30 June 2026
|
|
22
|
+
|
|
7
23
|
### [33.1.0](https://github.com/eea/volto-eea-kitkat/compare/33.0.8...33.1.0) - 26 June 2026
|
|
8
24
|
|
|
9
25
|
#### :rocket: Dependency updates
|
|
@@ -12,10 +28,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
12
28
|
|
|
13
29
|
#### :house: Internal changes
|
|
14
30
|
|
|
31
|
+
- chore: [JENKINSFILE] sanitize sonarqube command Refs #305084 [valentinab25 - [`f70c610`](https://github.com/eea/volto-eea-kitkat/commit/f70c610d9768ad174b6a560c20098955adbafb1d)]
|
|
15
32
|
|
|
16
|
-
#### :hammer_and_wrench: Others
|
|
17
|
-
|
|
18
|
-
- Release 33.1.0 [Alin Voinea - [`52d65c3`](https://github.com/eea/volto-eea-kitkat/commit/52d65c3ac25401e1f41cb3309e52f6e9270cb714)]
|
|
19
33
|
### [33.0.8](https://github.com/eea/volto-eea-kitkat/compare/33.0.7...33.0.8) - 24 June 2026
|
|
20
34
|
|
|
21
35
|
#### :rocket: Dependency updates
|
|
@@ -190,7 +204,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
190
204
|
|
|
191
205
|
#### :house: Internal changes
|
|
192
206
|
|
|
207
|
+
- chore: [JENKINSFILE] add package version in sonarqube [valentinab25 - [`34db2e1`](https://github.com/eea/volto-eea-kitkat/commit/34db2e1155fbbd1733d7176778845e3f3a7f8672)]
|
|
193
208
|
- chore: package.json [Alin Voinea - [`61e1494`](https://github.com/eea/volto-eea-kitkat/commit/61e149440d135080a9381358f0713dab12b2748d)]
|
|
209
|
+
- chore: [JENKINSFILE] use sonarqube branches [EEA Jenkins - [`cba656b`](https://github.com/eea/volto-eea-kitkat/commit/cba656bb41fe90106fea7476199a5b5ff38ee13a)]
|
|
194
210
|
|
|
195
211
|
## [32.0.0](https://github.com/eea/volto-eea-kitkat/compare/31.0.2...32.0.0) - 19 February 2026
|
|
196
212
|
|
|
@@ -383,6 +399,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
383
399
|
|
|
384
400
|
#### :hammer_and_wrench: Others
|
|
385
401
|
|
|
402
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`7eead1c`](https://github.com/eea/volto-eea-kitkat/commit/7eead1c3b28dced525749555d95f1f8aa908a9bb)]
|
|
403
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`49c7810`](https://github.com/eea/volto-eea-kitkat/commit/49c781067cce00004c88450a4aa30b3d284d344b)]
|
|
386
404
|
### [27.1.2](https://github.com/eea/volto-eea-kitkat/compare/27.1.1...27.1.2) - 2 July 2025
|
|
387
405
|
|
|
388
406
|
#### :rocket: Dependency updates
|
|
@@ -428,6 +446,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
428
446
|
|
|
429
447
|
#### :hammer_and_wrench: Others
|
|
430
448
|
|
|
449
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`36f81f8`](https://github.com/eea/volto-eea-kitkat/commit/36f81f8ca489b64a5a2c9ae0cef476fe6d71ef16)]
|
|
431
450
|
### [26.7.0](https://github.com/eea/volto-eea-kitkat/compare/26.6.1...26.7.0) - 1 May 2025
|
|
432
451
|
|
|
433
452
|
#### :rocket: Dependency updates
|
|
@@ -486,6 +505,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
486
505
|
|
|
487
506
|
#### :hammer_and_wrench: Others
|
|
488
507
|
|
|
508
|
+
- Add Sonarqube tag using ied-frontend addons list [EEA Jenkins - [`7942941`](https://github.com/eea/volto-eea-kitkat/commit/794294157e27abbe7efe3d3a2f739e9ad0b82bf2)]
|
|
489
509
|
### [26.4.4](https://github.com/eea/volto-eea-kitkat/compare/26.4.3...26.4.4) - 10 February 2025
|
|
490
510
|
|
|
491
511
|
#### :rocket: Dependency updates
|
|
@@ -784,6 +804,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
784
804
|
|
|
785
805
|
#### :hammer_and_wrench: Others
|
|
786
806
|
|
|
807
|
+
- Add Sonarqube tag using insitu-frontend addons list [EEA Jenkins - [`d7ebd6c`](https://github.com/eea/volto-eea-kitkat/commit/d7ebd6c856ee7fcaae6047c32706071d5f24bf3c)]
|
|
808
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`5948ed3`](https://github.com/eea/volto-eea-kitkat/commit/5948ed35d981c8fe6a16c0ced56ed417ae8a6c61)]
|
|
787
809
|
## [24.0.0](https://github.com/eea/volto-eea-kitkat/compare/23.2.0...24.0.0) - 5 April 2024
|
|
788
810
|
|
|
789
811
|
#### :rocket: Dependency updates
|
|
@@ -878,6 +900,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
878
900
|
#### :hammer_and_wrench: Others
|
|
879
901
|
|
|
880
902
|
- Release 22.0.0 [alin - [`fb085a0`](https://github.com/eea/volto-eea-kitkat/commit/fb085a0e45626cd2f3f34f927e40915a494c77a3)]
|
|
903
|
+
- Add Sonarqube tag using insitu-frontend addons list [EEA Jenkins - [`d90b330`](https://github.com/eea/volto-eea-kitkat/commit/d90b330d3c721586f5f4626862b304c9cd9bf8b1)]
|
|
881
904
|
### [21.2.3](https://github.com/eea/volto-eea-kitkat/compare/21.2.2...21.2.3) - 1 February 2024
|
|
882
905
|
|
|
883
906
|
#### :rocket: Dependency updates
|
|
@@ -964,6 +987,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
964
987
|
|
|
965
988
|
#### :hammer_and_wrench: Others
|
|
966
989
|
|
|
990
|
+
- test: [JENKINS] Use java17 for sonarqube scanner [valentinab25 - [`8e4d866`](https://github.com/eea/volto-eea-kitkat/commit/8e4d86602f5b532da600ab03d77b486690ef112b)]
|
|
991
|
+
- test: [JENKINS] Run cypress in started frontend container [valentinab25 - [`bc2908c`](https://github.com/eea/volto-eea-kitkat/commit/bc2908cf04b6ab596d0ddf091b09e06981c6fc2b)]
|
|
967
992
|
### [20.0.2](https://github.com/eea/volto-eea-kitkat/compare/20.0.1...20.0.2) - 15 November 2023
|
|
968
993
|
|
|
969
994
|
### [20.0.1](https://github.com/eea/volto-eea-kitkat/compare/20.0.0...20.0.1) - 13 November 2023
|
|
@@ -975,6 +1000,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
975
1000
|
|
|
976
1001
|
#### :hammer_and_wrench: Others
|
|
977
1002
|
|
|
1003
|
+
- test: [JENKINS] Add cpu limit on cypress docker [valentinab25 - [`f9c872b`](https://github.com/eea/volto-eea-kitkat/commit/f9c872b27eca12147b8d2728c24fbc37a6132f6a)]
|
|
1004
|
+
- test: [JENKINS] set cpu limit on cypress [valentinab25 - [`bcdc347`](https://github.com/eea/volto-eea-kitkat/commit/bcdc34701e1fea38af7d5b580a0831a864c18a3b)]
|
|
1005
|
+
- test: [JENKINS] add shm-size to cypress docker [valentinab25 - [`cfb36e2`](https://github.com/eea/volto-eea-kitkat/commit/cfb36e29aa419a1f7c24d38ca4316c99c8d7f4df)]
|
|
1006
|
+
- test: [JENKINS] improve cypress time [valentinab25 - [`0df1585`](https://github.com/eea/volto-eea-kitkat/commit/0df15850745f388937152a104128b4c3a586701f)]
|
|
1007
|
+
- test: [JENKINS] improve cypress time [valentinab25 - [`6b9a750`](https://github.com/eea/volto-eea-kitkat/commit/6b9a750d8d1676dbbe418021643dc0ea145dd6d2)]
|
|
978
1008
|
## [20.0.0](https://github.com/eea/volto-eea-kitkat/compare/19.1.0...20.0.0) - 2 November 2023
|
|
979
1009
|
|
|
980
1010
|
#### :rocket: Dependency updates
|
|
@@ -1011,6 +1041,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1011
1041
|
|
|
1012
1042
|
#### :house: Internal changes
|
|
1013
1043
|
|
|
1044
|
+
- chore: [JENKINS] Refactor automated testing [valentinab25 - [`068610e`](https://github.com/eea/volto-eea-kitkat/commit/068610e11366f3d9a2c49c7ed1b22c0ae4549b5d)]
|
|
1014
1045
|
|
|
1015
1046
|
#### :hammer_and_wrench: Others
|
|
1016
1047
|
|
|
@@ -1349,6 +1380,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1349
1380
|
#### :house: Internal changes
|
|
1350
1381
|
|
|
1351
1382
|
- chore: Revert version bump until ready for release [Alin Voinea - [`91ada51`](https://github.com/eea/volto-eea-kitkat/commit/91ada510d1f78cee615c9ffdf9307995f2b1722d)]
|
|
1383
|
+
- chore: [JENKINS] Deprecate circularity website [valentinab25 - [`a62f4ff`](https://github.com/eea/volto-eea-kitkat/commit/a62f4ffee3796fa3558628fe1d63a9a263ae6bd2)]
|
|
1352
1384
|
|
|
1353
1385
|
#### :hammer_and_wrench: Others
|
|
1354
1386
|
|
|
@@ -1465,6 +1497,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1465
1497
|
|
|
1466
1498
|
#### :hammer_and_wrench: Others
|
|
1467
1499
|
|
|
1500
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`8ec6014`](https://github.com/eea/volto-eea-kitkat/commit/8ec6014398b1b266b4f0173b92539245a385ee1a)]
|
|
1468
1501
|
- refactor code as per sonarqube issues [tedw87 - [`6aab22a`](https://github.com/eea/volto-eea-kitkat/commit/6aab22a3ddf038bdce2272be8733b9afd9562720)]
|
|
1469
1502
|
## [14.0.0](https://github.com/eea/volto-eea-kitkat/compare/13.0.0...14.0.0) - 24 March 2023
|
|
1470
1503
|
|
|
@@ -1498,6 +1531,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1498
1531
|
|
|
1499
1532
|
- Release 12.1.0 [Alin Voinea - [`f98ddf7`](https://github.com/eea/volto-eea-kitkat/commit/f98ddf78b0818591f95e027d612257f78fcbba99)]
|
|
1500
1533
|
- test(Jenkins): Use latest stable Volto for testing [Alin Voinea - [`49938ca`](https://github.com/eea/volto-eea-kitkat/commit/49938ca373ee9f6384932fa39b957361db3b84a7)]
|
|
1534
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`877d026`](https://github.com/eea/volto-eea-kitkat/commit/877d026f7a98bed9aac7f0117cace1e28963ccf1)]
|
|
1501
1535
|
### [12.0.3](https://github.com/eea/volto-eea-kitkat/compare/12.0.2...12.0.3) - 1 March 2023
|
|
1502
1536
|
|
|
1503
1537
|
### [12.0.2](https://github.com/eea/volto-eea-kitkat/compare/12.0.1...12.0.2) - 1 March 2023
|
|
@@ -1592,6 +1626,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1592
1626
|
|
|
1593
1627
|
#### :hammer_and_wrench: Others
|
|
1594
1628
|
|
|
1629
|
+
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`78dcc6c`](https://github.com/eea/volto-eea-kitkat/commit/78dcc6c91c3070988f8eab4f40906948b2f24b04)]
|
|
1595
1630
|
### [10.4.0](https://github.com/eea/volto-eea-kitkat/compare/10.3.0...10.4.0) - 28 December 2022
|
|
1596
1631
|
|
|
1597
1632
|
#### :rocket: Dependency updates
|
|
@@ -1604,6 +1639,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1604
1639
|
#### :hammer_and_wrench: Others
|
|
1605
1640
|
|
|
1606
1641
|
- Release 10.4.0 [Alin Voinea - [`9f580b7`](https://github.com/eea/volto-eea-kitkat/commit/9f580b75c7349f824bf537a9f14c2da1c505a105)]
|
|
1642
|
+
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`fd9cc58`](https://github.com/eea/volto-eea-kitkat/commit/fd9cc589f17e2eb73bf42f88645688824f97eb9e)]
|
|
1607
1643
|
### [10.3.0](https://github.com/eea/volto-eea-kitkat/compare/10.2.0...10.3.0) - 16 December 2022
|
|
1608
1644
|
|
|
1609
1645
|
#### :rocket: Dependency updates
|
|
@@ -1615,6 +1651,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1615
1651
|
#### :hammer_and_wrench: Others
|
|
1616
1652
|
|
|
1617
1653
|
- Release 10.3.0 [Alin Voinea - [`4f9945a`](https://github.com/eea/volto-eea-kitkat/commit/4f9945a0fd1a981a7f4b43c56293040dba0dd09d)]
|
|
1654
|
+
- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`92644a9`](https://github.com/eea/volto-eea-kitkat/commit/92644a95981feb5fc97931d549a078d5bb190839)]
|
|
1618
1655
|
### [10.2.0](https://github.com/eea/volto-eea-kitkat/compare/10.1.1...10.2.0) - 29 November 2022
|
|
1619
1656
|
|
|
1620
1657
|
#### :rocket: Dependency updates
|
|
@@ -1645,6 +1682,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1645
1682
|
|
|
1646
1683
|
- Fix storybook [Alin Voinea - [`79d961a`](https://github.com/eea/volto-eea-kitkat/commit/79d961a12cf1e90871a0aa840a86852f343db4ac)]
|
|
1647
1684
|
- Release 10.1.0 [Alin Voinea - [`574c998`](https://github.com/eea/volto-eea-kitkat/commit/574c998265f65f41190d60e50a9c90e0d818be35)]
|
|
1685
|
+
- Add Sonarqube tag using demo-kitkat-frontend addons list [EEA Jenkins - [`c53b32f`](https://github.com/eea/volto-eea-kitkat/commit/c53b32fe433942500365fc7384c36db46eb9e87e)]
|
|
1648
1686
|
## [10.0.0](https://github.com/eea/volto-eea-kitkat/compare/9.0.0...10.0.0) - 16 November 2022
|
|
1649
1687
|
|
|
1650
1688
|
#### :rocket: New Features
|
|
@@ -1755,6 +1793,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1755
1793
|
|
|
1756
1794
|
#### :hammer_and_wrench: Others
|
|
1757
1795
|
|
|
1796
|
+
- Add Sonarqube tag using marine-frontend addons list [EEA Jenkins - [`fdeeab3`](https://github.com/eea/volto-eea-kitkat/commit/fdeeab3e19db1a57e69dab8513d37323c0d16e11)]
|
|
1758
1797
|
### [8.2.2](https://github.com/eea/volto-eea-kitkat/compare/8.2.1...8.2.2) - 28 September 2022
|
|
1759
1798
|
|
|
1760
1799
|
### [8.2.1](https://github.com/eea/volto-eea-kitkat/compare/8.2.0...8.2.1) - 28 September 2022
|
|
@@ -1772,6 +1811,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1772
1811
|
#### :hammer_and_wrench: Others
|
|
1773
1812
|
|
|
1774
1813
|
- Release 8.2.0 [Alin Voinea - [`0e39600`](https://github.com/eea/volto-eea-kitkat/commit/0e39600048be15512a9ec742830f1412beb6db4f)]
|
|
1814
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`b88dbd1`](https://github.com/eea/volto-eea-kitkat/commit/b88dbd11c7dc85a57b22b98a7a71c33bb827cd34)]
|
|
1775
1815
|
### [8.1.0](https://github.com/eea/volto-eea-kitkat/compare/8.0.0...8.1.0) - 22 September 2022
|
|
1776
1816
|
|
|
1777
1817
|
#### :rocket: Dependency updates
|
|
@@ -1803,10 +1843,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1803
1843
|
#### :hammer_and_wrench: Others
|
|
1804
1844
|
|
|
1805
1845
|
- Merge pull request #66 from eea/develop [Nilesh - [`f7d1d2f`](https://github.com/eea/volto-eea-kitkat/commit/f7d1d2f0e209a6650d134a7657ded482bc87b3d5)]
|
|
1846
|
+
- [jenkins] fix coverage report name [valentinab25 - [`d3d29e4`](https://github.com/eea/volto-eea-kitkat/commit/d3d29e49bb323f82d1ef2d2d9e8674c8c9455386)]
|
|
1806
1847
|
### [7.1.1](https://github.com/eea/volto-eea-kitkat/compare/7.1.0...7.1.1) - 5 September 2022
|
|
1807
1848
|
|
|
1808
1849
|
#### :hammer_and_wrench: Others
|
|
1809
1850
|
|
|
1851
|
+
- [jenkins] fix coverage report name [valentinab25 - [`b03633d`](https://github.com/eea/volto-eea-kitkat/commit/b03633d92c50ae921cf902b88d6321d347aac3d2)]
|
|
1810
1852
|
### [7.1.0](https://github.com/eea/volto-eea-kitkat/compare/7.0.0...7.1.0) - 29 August 2022
|
|
1811
1853
|
|
|
1812
1854
|
## [7.0.0](https://github.com/eea/volto-eea-kitkat/compare/6.2.3...7.0.0) - 26 August 2022
|
|
@@ -1879,6 +1921,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
1879
1921
|
|
|
1880
1922
|
#### :hammer_and_wrench: Others
|
|
1881
1923
|
|
|
1924
|
+
- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`88e838b`](https://github.com/eea/volto-eea-kitkat/commit/88e838bdf224f8f30a48822dc0b457f3eba8c837)]
|
|
1882
1925
|
- update volto-widget-dataprovenance readme badges [Nilesh - [`5009c47`](https://github.com/eea/volto-eea-kitkat/commit/5009c47097c70ba102e41cba2870d6aad37221d3)]
|
|
1883
1926
|
- Revert "Trying to fix cypress" [Alin Voinea - [`0c1eeb2`](https://github.com/eea/volto-eea-kitkat/commit/0c1eeb2fada6e204fed19140407f642ffde5e07f)]
|
|
1884
1927
|
- Trying to fix cypress [Alin Voinea - [`61c3a51`](https://github.com/eea/volto-eea-kitkat/commit/61c3a5105608e3015c59c5d74e5d2afcc86f434f)]
|
|
@@ -2001,6 +2044,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2001
2044
|
|
|
2002
2045
|
#### :hammer_and_wrench: Others
|
|
2003
2046
|
|
|
2047
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`23f80c1`](https://github.com/eea/volto-eea-kitkat/commit/23f80c1a3d3fd77ad8be5fdf6ef3354d61ef2849)]
|
|
2004
2048
|
- Update README.md [Alexandru Ghica - [`69f379b`](https://github.com/eea/volto-eea-kitkat/commit/69f379bb4effb22be2e78eda6599c822202acfd3)]
|
|
2005
2049
|
### [5.2.6](https://github.com/eea/volto-eea-kitkat/compare/5.2.5...5.2.6) - 16 March 2022
|
|
2006
2050
|
|
|
@@ -2019,6 +2063,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2019
2063
|
|
|
2020
2064
|
#### :hammer_and_wrench: Others
|
|
2021
2065
|
|
|
2066
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`340e29a`](https://github.com/eea/volto-eea-kitkat/commit/340e29aba1802068591da23490562db0dd6a9a01)]
|
|
2022
2067
|
### [5.2.4](https://github.com/eea/volto-eea-kitkat/compare/5.2.3...5.2.4) - 4 March 2022
|
|
2023
2068
|
|
|
2024
2069
|
### [5.2.3](https://github.com/eea/volto-eea-kitkat/compare/5.2.2...5.2.3) - 4 March 2022
|
|
@@ -2184,6 +2229,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2184
2229
|
|
|
2185
2230
|
#### :hammer_and_wrench: Others
|
|
2186
2231
|
|
|
2232
|
+
- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`106efb6`](https://github.com/eea/volto-eea-kitkat/commit/106efb623afd9142b4d3cea2225f7b197608a5b6)]
|
|
2187
2233
|
- Add SonarQube badges [Alin Voinea - [`c9ab6ef`](https://github.com/eea/volto-eea-kitkat/commit/c9ab6efe9c303775751856ffec72923169a7c2ac)]
|
|
2188
2234
|
### [4.1.7](https://github.com/eea/volto-eea-kitkat/compare/4.1.6...4.1.7) - 24 November 2021
|
|
2189
2235
|
|
|
@@ -2237,6 +2283,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2237
2283
|
- Disable cypress [Alin Voinea - [`a406e2d`](https://github.com/eea/volto-eea-kitkat/commit/a406e2dc4be788f924642d43d82c677577a6877a)]
|
|
2238
2284
|
- Roll-back volto-slate to 4.2.1 [Alin Voinea - [`ab6ae97`](https://github.com/eea/volto-eea-kitkat/commit/ab6ae97366c1b75b73d77636f5ab937401b9f8f7)]
|
|
2239
2285
|
- Add dependencies resolutions [Alin Voinea - [`7ade630`](https://github.com/eea/volto-eea-kitkat/commit/7ade6305c9c9dfc5c2e332c50676d5f75ffe4c9f)]
|
|
2286
|
+
- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`a77e812`](https://github.com/eea/volto-eea-kitkat/commit/a77e812cd7aa74bc1d94cc5a44144f05b6d99264)]
|
|
2240
2287
|
### [4.1.2](https://github.com/eea/volto-eea-kitkat/compare/4.1.1...4.1.2) - 4 November 2021
|
|
2241
2288
|
|
|
2242
2289
|
#### :rocket: Dependency updates
|
|
@@ -2254,6 +2301,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2254
2301
|
- Release volto-slate 4.2.1 [Alin Voinea - [`3c26754`](https://github.com/eea/volto-eea-kitkat/commit/3c26754a1ead420dfb675c7453cec6d723566a85)]
|
|
2255
2302
|
- Release stable volto-slate 4.2.0 [Alin Voinea - [`591bcba`](https://github.com/eea/volto-eea-kitkat/commit/591bcbafa174a6cf20f45b622b2c1407df24c288)]
|
|
2256
2303
|
- Revert "Release volto-slate@4.1.0" [Alin Voinea - [`6c22eb3`](https://github.com/eea/volto-eea-kitkat/commit/6c22eb35c65f8ee7470f6dac18fe88ad73bdef3e)]
|
|
2304
|
+
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`981c570`](https://github.com/eea/volto-eea-kitkat/commit/981c570138a1b0890080a111b862759049216995)]
|
|
2305
|
+
- Revert "[JENKINS] - skip cypress" [Alin Voinea - [`c24997c`](https://github.com/eea/volto-eea-kitkat/commit/c24997cd7a293c4021ac7a8bc43212bae4cfecbc)]
|
|
2306
|
+
- Revert "[JENKINS] - Skip cypress report to sonar" [Alin Voinea - [`0cb9887`](https://github.com/eea/volto-eea-kitkat/commit/0cb9887381e5469466bb1ac3516af0d1d572fc19)]
|
|
2257
2307
|
### [4.1.0](https://github.com/eea/volto-eea-kitkat/compare/4.0.2...4.1.0) - 14 October 2021
|
|
2258
2308
|
|
|
2259
2309
|
#### :rocket: Dependency updates
|
|
@@ -2283,6 +2333,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2283
2333
|
|
|
2284
2334
|
#### :hammer_and_wrench: Others
|
|
2285
2335
|
|
|
2336
|
+
- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`e3f00fb`](https://github.com/eea/volto-eea-kitkat/commit/e3f00fb23202e8ba20c8dbb961a3f54f86b42bb9)]
|
|
2286
2337
|
- Add cypress integration tests [Alin Voinea - [`b49a070`](https://github.com/eea/volto-eea-kitkat/commit/b49a070bdbe2dcd04a31f96ade6d6f06fea94e7b)]
|
|
2287
2338
|
## [4.0.0](https://github.com/eea/volto-eea-kitkat/compare/3.0.2...4.0.0) - 29 September 2021
|
|
2288
2339
|
|
|
@@ -2295,8 +2346,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2295
2346
|
|
|
2296
2347
|
- Rename volto-satging-banner to volto-banner 1.0.0 [Alin Voinea - [`eefc06b`](https://github.com/eea/volto-eea-kitkat/commit/eefc06b186efef1a9627bde3e65656d7be074de6)]
|
|
2297
2348
|
- Add staging-banner to Readme [Alin Voinea - [`cbca78f`](https://github.com/eea/volto-eea-kitkat/commit/cbca78f9b4f76c57dbecd131452925fe7fbe24b4)]
|
|
2349
|
+
- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`485a0ba`](https://github.com/eea/volto-eea-kitkat/commit/485a0ba3c16521eba77b092fbae04671acbd3a4d)]
|
|
2298
2350
|
- Revert "Automated release volto-slate@4.0.1" [Alin Voinea - [`447abb0`](https://github.com/eea/volto-eea-kitkat/commit/447abb0791616463d5c7fa4ee562ddd1c7984275)]
|
|
2299
2351
|
- Remove not needed tableButton volto-slate profile [Alin Voinea - [`f8a832e`](https://github.com/eea/volto-eea-kitkat/commit/f8a832ed5702ef656c520b842307ce262a110c9b)]
|
|
2352
|
+
- Add Sonarqube tag using climate-energy-frontend addons list [EEA Jenkins - [`af37bcf`](https://github.com/eea/volto-eea-kitkat/commit/af37bcfc75a6868484665ba4710867f61cb7eb39)]
|
|
2300
2353
|
### [3.0.2](https://github.com/eea/volto-eea-kitkat/compare/3.0.1...3.0.2) - 21 September 2021
|
|
2301
2354
|
|
|
2302
2355
|
### [3.0.1](https://github.com/eea/volto-eea-kitkat/compare/3.0.0...3.0.1) - 21 September 2021
|
|
@@ -2309,6 +2362,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2309
2362
|
#### :hammer_and_wrench: Others
|
|
2310
2363
|
|
|
2311
2364
|
- Update to version 3.0.0 [Alexandru Ghica - [`89bd9fd`](https://github.com/eea/volto-eea-kitkat/commit/89bd9fde1a8e4949f849bf8208cff33df1995a8d)]
|
|
2365
|
+
- Add Sonarqube tag using climate-energy-frontend addons list [EEA Jenkins - [`b700b5a`](https://github.com/eea/volto-eea-kitkat/commit/b700b5a985714197e89e656927586367d63b90a7)]
|
|
2312
2366
|
### [2.0.2](https://github.com/eea/volto-eea-kitkat/compare/2.0.1...2.0.2) - 10 September 2021
|
|
2313
2367
|
|
|
2314
2368
|
#### :hammer_and_wrench: Others
|
|
@@ -2340,4 +2394,5 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
2340
2394
|
|
|
2341
2395
|
#### :hammer_and_wrench: Others
|
|
2342
2396
|
|
|
2397
|
+
- yarn bootstrap [Alin Voinea - [`180a877`](https://github.com/eea/volto-eea-kitkat/commit/180a877a89301183ce7492933965161e21e2509b)]
|
|
2343
2398
|
- Initial commit [Alin Voinea - [`0451abf`](https://github.com/eea/volto-eea-kitkat/commit/0451abfbaad75a437b9e6ec0df56b924c8d1637f)]
|
package/README.md
CHANGED
|
@@ -210,6 +210,65 @@ See [RELEASE.md](https://github.com/eea/volto-eea-kitkat/blob/master/RELEASE.md)
|
|
|
210
210
|
|
|
211
211
|
See [DEVELOP.md](https://github.com/eea/volto-eea-kitkat/blob/master/DEVELOP.md).
|
|
212
212
|
|
|
213
|
+
## Secret Scanning
|
|
214
|
+
|
|
215
|
+
This repository uses the Betterleaks GitHub Action to scan the current
|
|
216
|
+
repository content on every push and pull request. The scan uses the rules in
|
|
217
|
+
`.gitleaks.toml` and uploads a `betterleaks-report` artifact when a finding is
|
|
218
|
+
detected.
|
|
219
|
+
|
|
220
|
+
If the optional SMTP secrets are configured, failed scans also send an email to
|
|
221
|
+
the last commit committer. The workflow expects these repository or
|
|
222
|
+
organization secrets:
|
|
223
|
+
|
|
224
|
+
- `SMTP_URL`
|
|
225
|
+
- `SMTP_PORT` (optional, defaults to `25`)
|
|
226
|
+
- `SMTP_EMAIL`
|
|
227
|
+
- `SMTP_PASSWORD` (optional if the SMTP server does not require authentication)
|
|
228
|
+
|
|
229
|
+
Port `465` is sent with direct TLS; other ports use the default SMTP handshake.
|
|
230
|
+
The email includes a short finding summary from the redacted Betterleaks report,
|
|
231
|
+
including the redacted matched line from each finding.
|
|
232
|
+
|
|
233
|
+
There are three common outcomes:
|
|
234
|
+
|
|
235
|
+
1. **Everything is OK.** The `Betterleaks / Scan for secrets` check is green and
|
|
236
|
+
no action is needed. Regular references to runtime values are OK, for example:
|
|
237
|
+
|
|
238
|
+
```js
|
|
239
|
+
const tokenFromCookie = req.universalCookies.get('auth_token');
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
2. **A real secret was found.** The check is red and the workflow log asks you to
|
|
243
|
+
download the `betterleaks-report` artifact. Open the artifact from the GitHub
|
|
244
|
+
Actions run and check the reported file, line and rule. Remove the committed
|
|
245
|
+
value, move it to the proper secret store, and rotate it if it was exposed.
|
|
246
|
+
A report entry looks like this:
|
|
247
|
+
|
|
248
|
+
```json
|
|
249
|
+
{
|
|
250
|
+
"RuleID": "secret-literal-assignment",
|
|
251
|
+
"File": "src/config.js",
|
|
252
|
+
"StartLine": 12,
|
|
253
|
+
"Secret": "[REDACTED]"
|
|
254
|
+
}
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
3. **The finding is a false positive.** Keep the value only if it is clearly not
|
|
258
|
+
sensitive, such as a test fixture, placeholder, or public example. Add
|
|
259
|
+
`betterleaks:allow` on the same line and include a short explanation in the
|
|
260
|
+
pull request.
|
|
261
|
+
|
|
262
|
+
```js
|
|
263
|
+
const testPassword = 'admin'; //betterleaks:allow
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
```yaml
|
|
267
|
+
password: "admin" #betterleaks:allow
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
Do not add `betterleaks:allow` to real credentials.
|
|
271
|
+
|
|
213
272
|
## Copyright and license
|
|
214
273
|
|
|
215
274
|
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/new.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-eea-kitkat",
|
|
3
|
-
"version": "33.1.
|
|
3
|
+
"version": "33.1.2",
|
|
4
4
|
"description": "@eeacms/volto-eea-kitkat: Volto Add-ons bundle - A known good set of Volto addons to be used within all EEA projects and beyond",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "European Environment Agency: IDM2 A-Team",
|
|
@@ -93,11 +93,11 @@
|
|
|
93
93
|
"@eeacms/volto-statistic-block": "7.0.1",
|
|
94
94
|
"@eeacms/volto-tabs-block": "10.0.4",
|
|
95
95
|
"@eeacms/volto-tags-block": "4.0.1",
|
|
96
|
-
"@eeacms/volto-taxonomy": "6.0.
|
|
96
|
+
"@eeacms/volto-taxonomy": "6.0.4",
|
|
97
97
|
"@eeacms/volto-timeline-block": "3.0.1",
|
|
98
98
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
99
99
|
"@eeacms/volto-widget-dataprovenance": "2.0.1",
|
|
100
|
-
"@eeacms/volto-widget-geolocation": "8.0.
|
|
100
|
+
"@eeacms/volto-widget-geolocation": "8.0.1",
|
|
101
101
|
"@eeacms/volto-widget-temporal-coverage": "7.0.1",
|
|
102
102
|
"@eeacms/volto-widget-theme-picker": "3.0.1",
|
|
103
103
|
"@eeacms/volto-widget-toggle": "5.0.1",
|
|
@@ -135,10 +135,10 @@
|
|
|
135
135
|
"@eeacms/volto-slate-metadata-mentions": "9.0.1",
|
|
136
136
|
"@eeacms/volto-slate-zotero": "7.0.1",
|
|
137
137
|
"@eeacms/volto-tabs-block": "10.0.4",
|
|
138
|
-
"@eeacms/volto-taxonomy": "6.0.
|
|
138
|
+
"@eeacms/volto-taxonomy": "6.0.4",
|
|
139
139
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
140
140
|
"@eeacms/volto-block-data-table": "2.0.2",
|
|
141
|
-
"@eeacms/volto-widget-geolocation": "8.0.
|
|
141
|
+
"@eeacms/volto-widget-geolocation": "8.0.1",
|
|
142
142
|
"@eeacms/volto-widget-dataprovenance": "2.0.1",
|
|
143
143
|
"@eeacms/volto-widget-temporal-coverage": "7.0.1",
|
|
144
144
|
"@eeacms/volto-widget-toggle": "5.0.1",
|
package/old.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-eea-kitkat",
|
|
3
|
-
"version": "33.
|
|
3
|
+
"version": "33.1.1",
|
|
4
4
|
"description": "@eeacms/volto-eea-kitkat: Volto Add-ons bundle - A known good set of Volto addons to be used within all EEA projects and beyond",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "European Environment Agency: IDM2 A-Team",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"@eeacms/volto-timeline-block": "3.0.1",
|
|
98
98
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
99
99
|
"@eeacms/volto-widget-dataprovenance": "2.0.1",
|
|
100
|
-
"@eeacms/volto-widget-geolocation": "
|
|
100
|
+
"@eeacms/volto-widget-geolocation": "8.0.1",
|
|
101
101
|
"@eeacms/volto-widget-temporal-coverage": "7.0.1",
|
|
102
102
|
"@eeacms/volto-widget-theme-picker": "3.0.1",
|
|
103
103
|
"@eeacms/volto-widget-toggle": "5.0.1",
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"@eeacms/volto-taxonomy": "6.0.2",
|
|
139
139
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
140
140
|
"@eeacms/volto-block-data-table": "2.0.2",
|
|
141
|
-
"@eeacms/volto-widget-geolocation": "
|
|
141
|
+
"@eeacms/volto-widget-geolocation": "8.0.1",
|
|
142
142
|
"@eeacms/volto-widget-dataprovenance": "2.0.1",
|
|
143
143
|
"@eeacms/volto-widget-temporal-coverage": "7.0.1",
|
|
144
144
|
"@eeacms/volto-widget-toggle": "5.0.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-eea-kitkat",
|
|
3
|
-
"version": "33.1.
|
|
3
|
+
"version": "33.1.2",
|
|
4
4
|
"description": "@eeacms/volto-eea-kitkat: Volto Add-ons bundle - A known good set of Volto addons to be used within all EEA projects and beyond",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "European Environment Agency: IDM2 A-Team",
|
|
@@ -93,11 +93,11 @@
|
|
|
93
93
|
"@eeacms/volto-statistic-block": "7.0.1",
|
|
94
94
|
"@eeacms/volto-tabs-block": "10.0.4",
|
|
95
95
|
"@eeacms/volto-tags-block": "4.0.1",
|
|
96
|
-
"@eeacms/volto-taxonomy": "6.0.
|
|
96
|
+
"@eeacms/volto-taxonomy": "6.0.4",
|
|
97
97
|
"@eeacms/volto-timeline-block": "3.0.1",
|
|
98
98
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
99
99
|
"@eeacms/volto-widget-dataprovenance": "2.0.1",
|
|
100
|
-
"@eeacms/volto-widget-geolocation": "8.0.
|
|
100
|
+
"@eeacms/volto-widget-geolocation": "8.0.1",
|
|
101
101
|
"@eeacms/volto-widget-temporal-coverage": "7.0.1",
|
|
102
102
|
"@eeacms/volto-widget-theme-picker": "3.0.1",
|
|
103
103
|
"@eeacms/volto-widget-toggle": "5.0.1",
|
|
@@ -135,10 +135,10 @@
|
|
|
135
135
|
"@eeacms/volto-slate-metadata-mentions": "9.0.1",
|
|
136
136
|
"@eeacms/volto-slate-zotero": "7.0.1",
|
|
137
137
|
"@eeacms/volto-tabs-block": "10.0.4",
|
|
138
|
-
"@eeacms/volto-taxonomy": "6.0.
|
|
138
|
+
"@eeacms/volto-taxonomy": "6.0.4",
|
|
139
139
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
140
140
|
"@eeacms/volto-block-data-table": "2.0.2",
|
|
141
|
-
"@eeacms/volto-widget-geolocation": "8.0.
|
|
141
|
+
"@eeacms/volto-widget-geolocation": "8.0.1",
|
|
142
142
|
"@eeacms/volto-widget-dataprovenance": "2.0.1",
|
|
143
143
|
"@eeacms/volto-widget-temporal-coverage": "7.0.1",
|
|
144
144
|
"@eeacms/volto-widget-toggle": "5.0.1",
|
package/partfile
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
#### :
|
|
1
|
+
#### :bug: Bug Fixes
|
|
2
|
+
- fix: Add betterleaks github action - refs #304517 [dobri1408 - [`c52ca44`](https://github.com/eea/volto-eea-kitkat/commit/c52ca44e51859bbf274afedc8718d5d13201b3b0)]
|
|
2
3
|
#### :hammer_and_wrench: Others
|
|
3
|
-
-
|
|
4
|
+
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`3cd6e0f`](https://github.com/eea/volto-eea-kitkat/commit/3cd6e0f958c74fec4f1516bb661a7d529b4806b7)]
|
package/releasefile
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
# Dependency updates
|
|
2
2
|
|
|
3
|
-
### [@eeacms/volto-
|
|
3
|
+
### [@eeacms/volto-taxonomy: 6.0.2 ~ 6.0.4](https://github.com/eea/volto-taxonomy/releases)
|
|
4
4
|
|
|
5
|
-
###### :
|
|
5
|
+
###### :bug: Bug Fixes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- fix: Add betterleaks github action - Refs [#304517](https://taskman.eionet.europa.eu/issues/304517) [dobri1408 - [`14da963`](https://github.com/eea/volto-taxonomy/commit/14da963ca043f0ba474bdd32be9046d3b3739d0e)]
|
|
8
8
|
###### :hammer_and_wrench: Others
|
|
9
9
|
|
|
10
|
-
-
|
|
10
|
+
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`20f60eb`](https://github.com/eea/volto-taxonomy/commit/20f60eb96a8d33798d55fa5675bf230509fedda5)]
|
|
11
|
+
|
|
12
|
+
###### :bug: Bug Fixes
|
|
13
|
+
|
|
14
|
+
- fix(EditTaxonomy): handle null treeData when adding first taxonomy entry; declare React 18 peer deps [nileshgulia1 - [`fe05a1a`](https://github.com/eea/volto-taxonomy/commit/fe05a1a092d266bd1264ec661c9e92f01e4c53d1)]
|
|
15
|
+
###### :hammer_and_wrench: Others
|
|
16
|
+
|
|
17
|
+
- Merge pull request #42 from eea/fix-edit-taxonomy [Nilesh - [`38e2365`](https://github.com/eea/volto-taxonomy/commit/38e236570f55349166ee71d87ad3e0a771d79336)]
|
|
11
18
|
|
|
12
19
|
# Internal
|
|
13
20
|
|
|
14
|
-
#### :
|
|
21
|
+
#### :bug: Bug Fixes
|
|
22
|
+
- fix: Add betterleaks github action - refs #304517 [dobri1408 - [`c52ca44`](https://github.com/eea/volto-eea-kitkat/commit/c52ca44e51859bbf274afedc8718d5d13201b3b0)]
|
|
15
23
|
#### :hammer_and_wrench: Others
|
|
16
|
-
-
|
|
24
|
+
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`3cd6e0f`](https://github.com/eea/volto-eea-kitkat/commit/3cd6e0f958c74fec4f1516bb661a7d529b4806b7)]
|