eionet2-dashboard 3.2.4 → 3.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -1
- package/Jenkinsfile +12 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,17 @@ 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
|
+
### [3.2.5](https://github.com/eea/eionet2-dashboard/compare/3.2.4...3.2.5) - 14 May 2026
|
|
8
|
+
|
|
9
|
+
#### :house: Internal changes
|
|
10
|
+
|
|
11
|
+
- chore: sonar fix [Mihai Nicolae - [`b4db6f7`](https://github.com/eea/eionet2-dashboard/commit/b4db6f7815887d281702732262f03a9ad404b486)]
|
|
12
|
+
|
|
7
13
|
### [3.2.4](https://github.com/eea/eionet2-dashboard/compare/3.2.3...3.2.4) - 14 May 2026
|
|
8
14
|
|
|
9
15
|
#### :house: Internal changes
|
|
10
16
|
|
|
11
17
|
- chore: sonar fix [Mihai Nicolae - [`8f86721`](https://github.com/eea/eionet2-dashboard/commit/8f8672179694b26bd95ca2fc8c5092e2eca0bc7a)]
|
|
12
|
-
- chore: sonar [Mihai Nicolae - [`12a2a41`](https://github.com/eea/eionet2-dashboard/commit/12a2a41084b8dcc4c11ae5e3149a8a359bf5369c)]
|
|
13
18
|
|
|
14
19
|
### [3.2.3](https://github.com/eea/eionet2-dashboard/compare/3.2.2...3.2.3) - 24 April 2026
|
|
15
20
|
|
package/Jenkinsfile
CHANGED
|
@@ -30,7 +30,9 @@ pipeline {
|
|
|
30
30
|
when {
|
|
31
31
|
allOf {
|
|
32
32
|
environment name: 'CHANGE_ID', value: ''
|
|
33
|
-
|
|
33
|
+
expression {
|
|
34
|
+
return !(sh(returnStdout: true, script: 'git log -1 --pretty=%s').trim() ==~ /Automated release [0-9.]+/)
|
|
35
|
+
}
|
|
34
36
|
}
|
|
35
37
|
}
|
|
36
38
|
steps {
|
|
@@ -47,7 +49,9 @@ pipeline {
|
|
|
47
49
|
when {
|
|
48
50
|
allOf {
|
|
49
51
|
environment name: 'CHANGE_ID', value: ''
|
|
50
|
-
|
|
52
|
+
expression {
|
|
53
|
+
return !(sh(returnStdout: true, script: 'git log -1 --pretty=%s').trim() ==~ /Automated release [0-9.]+/)
|
|
54
|
+
}
|
|
51
55
|
}
|
|
52
56
|
}
|
|
53
57
|
steps {
|
|
@@ -61,7 +65,9 @@ pipeline {
|
|
|
61
65
|
when {
|
|
62
66
|
allOf {
|
|
63
67
|
environment name: 'CHANGE_ID', value: ''
|
|
64
|
-
|
|
68
|
+
expression {
|
|
69
|
+
return !(sh(returnStdout: true, script: 'git log -1 --pretty=%s').trim() ==~ /Automated release [0-9.]+/)
|
|
70
|
+
}
|
|
65
71
|
}
|
|
66
72
|
}
|
|
67
73
|
steps {
|
|
@@ -98,7 +104,9 @@ pipeline {
|
|
|
98
104
|
when {
|
|
99
105
|
allOf {
|
|
100
106
|
environment name: 'CHANGE_ID', value: ''
|
|
101
|
-
|
|
107
|
+
expression {
|
|
108
|
+
return !(sh(returnStdout: true, script: 'git log -1 --pretty=%s').trim() ==~ /Automated release [0-9.]+/)
|
|
109
|
+
}
|
|
102
110
|
anyOf {
|
|
103
111
|
branch 'master'
|
|
104
112
|
branch 'develop'
|