eionet2-dashboard 3.2.3 → 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 CHANGED
@@ -4,6 +4,18 @@ 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
+
13
+ ### [3.2.4](https://github.com/eea/eionet2-dashboard/compare/3.2.3...3.2.4) - 14 May 2026
14
+
15
+ #### :house: Internal changes
16
+
17
+ - chore: sonar fix [Mihai Nicolae - [`8f86721`](https://github.com/eea/eionet2-dashboard/commit/8f8672179694b26bd95ca2fc8c5092e2eca0bc7a)]
18
+
7
19
  ### [3.2.3](https://github.com/eea/eionet2-dashboard/compare/3.2.2...3.2.3) - 24 April 2026
8
20
 
9
21
  #### :bug: Bug Fixes
@@ -15,7 +27,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
15
27
  - chore: sonar [Mihai Nicolae - [`d531c58`](https://github.com/eea/eionet2-dashboard/commit/d531c587d99ed740ceb83ddbcbf3651bf5a82283)]
16
28
  - chore: coverage on master [Mihai Nicolae - [`d0a7925`](https://github.com/eea/eionet2-dashboard/commit/d0a79254460ffe9d06bf597d2bb1c3c24b1d42d5)]
17
29
  - chore: coverage on master [Mihai Nicolae - [`364faf4`](https://github.com/eea/eionet2-dashboard/commit/364faf432bd637b1e1782942161eafe4a450a648)]
18
- - chore: build [Mihai Nicolae - [`fa47ba5`](https://github.com/eea/eionet2-dashboard/commit/fa47ba5764bfc49824d15c41da8df0ba3bea4855)]
19
30
 
20
31
  ### [3.2.2](https://github.com/eea/eionet2-dashboard/compare/3.2.1...3.2.2) - 12 March 2026
21
32
 
package/Jenkinsfile CHANGED
@@ -30,7 +30,9 @@ pipeline {
30
30
  when {
31
31
  allOf {
32
32
  environment name: 'CHANGE_ID', value: ''
33
- not { changelog '.*^Automated release [0-9\\.]+$' }
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
- not { changelog '.*^Automated release [0-9\\.]+$' }
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
- not { changelog '.*^Automated release [0-9\\.]+$' }
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,19 +104,19 @@ pipeline {
98
104
  when {
99
105
  allOf {
100
106
  environment name: 'CHANGE_ID', value: ''
107
+ expression {
108
+ return !(sh(returnStdout: true, script: 'git log -1 --pretty=%s').trim() ==~ /Automated release [0-9.]+/)
109
+ }
101
110
  anyOf {
102
111
  branch 'master'
103
- allOf {
104
- branch 'develop'
105
- not { changelog '.*^Automated release [0-9\\.]+$' }
106
- }
112
+ branch 'develop'
107
113
  }
108
114
  }
109
115
  }
110
116
  steps {
111
117
  script{
112
118
  withSonarQubeEnv('Sonarqube') {
113
- sh "sonar-scanner -Dsonar.javascript.lcov.reportPaths=./tabs/coverage/lcov.info -Dsonar.sources=./tabs,./api -Dsonar.exclusions=**/__tests__/**,**/*.test.*,**/*.spec.* -Dsonar.projectKey=$GIT_NAME -Dsonar.projectName=$GIT_NAME -Dsonar.branch.name=$BRANCH_NAME"
119
+ sh "sonar-scanner -Dsonar.javascript.lcov.reportPaths=./tabs/coverage/lcov.info -Dsonar.sources=./tabs,./api -Dsonar.exclusions=**/__tests__/**,**/*.test.*,**/*.spec.* -Dsonar.issue.ignore.multicriteria=e1 -Dsonar.issue.ignore.multicriteria.e1.ruleKey=javascript:S6774 -Dsonar.issue.ignore.multicriteria.e1.resourceKey=**/*.jsx -Dsonar.projectKey=$GIT_NAME -Dsonar.projectName=$GIT_NAME -Dsonar.branch.name=$BRANCH_NAME"
114
120
  sh '''try=2; while [ \$try -gt 0 ]; do curl -s -XPOST -u "${SONAR_AUTH_TOKEN}:" "${SONAR_HOST_URL}api/project_tags/set?project=${GIT_NAME}&tags=${SONARQUBE_TAGS}" > set_tags_result; if [ \$(grep -ic error set_tags_result ) -eq 0 ]; then try=0; else cat set_tags_result; echo "... Will retry"; sleep 60; try=\$(( \$try - 1 )); fi; done'''
115
121
  }
116
122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eionet2-dashboard",
3
- "version": "3.2.3",
3
+ "version": "3.2.5",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "scripts": {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@eeacms/eionet2-dashboard",
3
- "version": "3.2.2",
3
+ "version": "3.2.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@eeacms/eionet2-dashboard",
9
- "version": "3.2.2",
9
+ "version": "3.2.3",
10
10
  "license": "SEE LICENSE IN LICENSE.md",
11
11
  "dependencies": {
12
12
  "@emotion/react": "^11.14.0",