@eeacms/volto-eea-kitkat 33.1.1 → 33.1.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 +18 -2
- package/CHANGELOG.md +18 -2
- package/README.md +59 -0
- package/RELEASE.md +1 -1
- package/new.json +3 -3
- package/old.json +5 -5
- package/package.json +3 -3
- package/releasefile +1 -1
|
@@ -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,11 +4,27 @@ 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.
|
|
7
|
+
### [33.1.3](https://github.com/eea/volto-eea-kitkat/compare/33.1.2...33.1.3) - 20 August 2026
|
|
8
|
+
|
|
9
|
+
#### :rocket: Dependency updates
|
|
10
|
+
|
|
11
|
+
- Release @eeacms/volto-taxonomy@6.0.5 [EEA Jenkins - [`9df6eda`](https://github.com/eea/volto-eea-kitkat/commit/9df6edadb892cc029c4de8c400578670312c45b8)]
|
|
12
|
+
|
|
13
|
+
### [33.1.2](https://github.com/eea/volto-eea-kitkat/compare/33.1.1...33.1.2) - 20 August 2026
|
|
8
14
|
|
|
9
15
|
#### :rocket: Dependency updates
|
|
10
16
|
|
|
11
|
-
- Release @eeacms/volto-
|
|
17
|
+
- Release @eeacms/volto-taxonomy@6.0.4 [EEA Jenkins - [`91e2d25`](https://github.com/eea/volto-eea-kitkat/commit/91e2d250be4c54f5b5395c1287b0f38f471f8f91)]
|
|
18
|
+
- Release @eeacms/volto-taxonomy@6.0.3 [EEA Jenkins - [`7a10191`](https://github.com/eea/volto-eea-kitkat/commit/7a1019189f28b673e750a3fc315bcea5d63240cb)]
|
|
19
|
+
|
|
20
|
+
#### :bug: Bug Fixes
|
|
21
|
+
|
|
22
|
+
- fix: Add betterleaks github action - refs #304517 [dobri1408 - [`c52ca44`](https://github.com/eea/volto-eea-kitkat/commit/c52ca44e51859bbf274afedc8718d5d13201b3b0)]
|
|
23
|
+
|
|
24
|
+
#### :hammer_and_wrench: Others
|
|
25
|
+
|
|
26
|
+
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`3cd6e0f`](https://github.com/eea/volto-eea-kitkat/commit/3cd6e0f958c74fec4f1516bb661a7d529b4806b7)]
|
|
27
|
+
### [33.1.1](https://github.com/eea/volto-eea-kitkat/compare/33.1.0...33.1.1) - 30 June 2026
|
|
12
28
|
|
|
13
29
|
### [33.1.0](https://github.com/eea/volto-eea-kitkat/compare/33.0.8...33.1.0) - 26 June 2026
|
|
14
30
|
|
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,27 @@ 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.
|
|
7
|
+
### [33.1.3](https://github.com/eea/volto-eea-kitkat/compare/33.1.2...33.1.3) - 20 August 2026
|
|
8
|
+
|
|
9
|
+
#### :rocket: Dependency updates
|
|
10
|
+
|
|
11
|
+
- Release @eeacms/volto-taxonomy@6.0.5 [EEA Jenkins - [`9df6eda`](https://github.com/eea/volto-eea-kitkat/commit/9df6edadb892cc029c4de8c400578670312c45b8)]
|
|
12
|
+
|
|
13
|
+
### [33.1.2](https://github.com/eea/volto-eea-kitkat/compare/33.1.1...33.1.2) - 20 August 2026
|
|
8
14
|
|
|
9
15
|
#### :rocket: Dependency updates
|
|
10
16
|
|
|
11
|
-
- Release @eeacms/volto-
|
|
17
|
+
- Release @eeacms/volto-taxonomy@6.0.4 [EEA Jenkins - [`91e2d25`](https://github.com/eea/volto-eea-kitkat/commit/91e2d250be4c54f5b5395c1287b0f38f471f8f91)]
|
|
18
|
+
- Release @eeacms/volto-taxonomy@6.0.3 [EEA Jenkins - [`7a10191`](https://github.com/eea/volto-eea-kitkat/commit/7a1019189f28b673e750a3fc315bcea5d63240cb)]
|
|
19
|
+
|
|
20
|
+
#### :bug: Bug Fixes
|
|
21
|
+
|
|
22
|
+
- fix: Add betterleaks github action - refs #304517 [dobri1408 - [`c52ca44`](https://github.com/eea/volto-eea-kitkat/commit/c52ca44e51859bbf274afedc8718d5d13201b3b0)]
|
|
23
|
+
|
|
24
|
+
#### :hammer_and_wrench: Others
|
|
25
|
+
|
|
26
|
+
- test: pin Chromium version 149 to work with Cypress [valentinab25 - [`3cd6e0f`](https://github.com/eea/volto-eea-kitkat/commit/3cd6e0f958c74fec4f1516bb661a7d529b4806b7)]
|
|
27
|
+
### [33.1.1](https://github.com/eea/volto-eea-kitkat/compare/33.1.0...33.1.1) - 30 June 2026
|
|
12
28
|
|
|
13
29
|
### [33.1.0](https://github.com/eea/volto-eea-kitkat/compare/33.0.8...33.1.0) - 26 June 2026
|
|
14
30
|
|
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.3",
|
|
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,7 +93,7 @@
|
|
|
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.5",
|
|
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",
|
|
@@ -135,7 +135,7 @@
|
|
|
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.5",
|
|
139
139
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
140
140
|
"@eeacms/volto-block-data-table": "2.0.2",
|
|
141
141
|
"@eeacms/volto-widget-geolocation": "8.0.1",
|
package/old.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eeacms/volto-eea-kitkat",
|
|
3
|
-
"version": "33.1.
|
|
3
|
+
"version": "33.1.3",
|
|
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,7 +93,7 @@
|
|
|
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.5",
|
|
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",
|
|
@@ -135,7 +135,7 @@
|
|
|
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.5",
|
|
139
139
|
"@eeacms/volto-toolbar-actions": "3.0.1",
|
|
140
140
|
"@eeacms/volto-block-data-table": "2.0.2",
|
|
141
141
|
"@eeacms/volto-widget-geolocation": "8.0.1",
|