eionet2-dashboard 3.2.7 → 3.2.8
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 +4 -2
- package/Jenkinsfile +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,13 @@ 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.
|
|
7
|
+
### [3.2.8](https://github.com/eea/eionet2-dashboard/compare/3.2.7...3.2.8) - 18 May 2026
|
|
8
8
|
|
|
9
9
|
#### :house: Internal changes
|
|
10
10
|
|
|
11
|
-
- chore:
|
|
11
|
+
- chore: sonar [Mihai Nicolae - [`1b5f4a6`](https://github.com/eea/eionet2-dashboard/commit/1b5f4a62ca89b8c2fea0e4547f2a5a84ee044e53)]
|
|
12
|
+
|
|
13
|
+
### [3.2.7](https://github.com/eea/eionet2-dashboard/compare/3.2.6...3.2.7) - 18 May 2026
|
|
12
14
|
|
|
13
15
|
### [3.2.6](https://github.com/eea/eionet2-dashboard/compare/3.2.5...3.2.6) - 14 May 2026
|
|
14
16
|
|
package/Jenkinsfile
CHANGED
|
@@ -116,7 +116,7 @@ pipeline {
|
|
|
116
116
|
steps {
|
|
117
117
|
script{
|
|
118
118
|
withSonarQubeEnv('Sonarqube') {
|
|
119
|
-
sh "sonar-scanner -Dsonar.javascript.lcov.reportPaths=./tabs/coverage/lcov.info -Dsonar.sources=./tabs,./api -Dsonar.exclusions=**/__tests__/**,**/*.test.*,**/*.spec
|
|
119
|
+
sh "sonar-scanner -Dsonar.javascript.lcov.reportPaths=./tabs/coverage/lcov.info -Dsonar.sources=./tabs,./api -Dsonar.exclusions=**/__tests__/**,**/*.test.*,**/*.spec.*,**/tabs/public/auth-*.html -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"
|
|
120
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'''
|
|
121
121
|
}
|
|
122
122
|
}
|