Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b3a50ab

Browse files
authoredMay 25, 2021
Merge pull request #111 from ie3-institute/ck/#110-hotFixInformationVulnerability
fix dependency vulnerability - CVE-2020-15250 - Temporary folder vulnerability - GHSA-269g-pwp5-87pp
2 parents 4d71085 + 58a05bf commit b3a50ab

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed
 

‎CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased/Snapshot]
88

9+
## [1.5.3]
10+
### Fixed
11+
- Adding dependency constraint to avoid transitive dependencies introducing information vulnerability [CVE-2020-15250 - Temporary folder vulnerability](https://github.com/advisories/GHSA-269g-pwp5-87pp)
12+
913
## [1.5.2]
1014
### Changed
1115
- Use Maven Central as repository for dependencies
@@ -68,7 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6872
### Fixed
6973
- fixes + extensions in StandardUnits
7074

71-
[Unreleased/Snapshot]: https://github.com/ie3-institute/powersystemutils/compare/v1.5.2...HEAD
75+
[Unreleased/Snapshot]: https://github.com/ie3-institute/powersystemutils/compare/v1.5.3...HEAD
76+
[1.5.3]: https://github.com/ie3-institute/powersystemutils/compare/v1.5.2...v1.5.3
7277
[1.5.2]: https://github.com/ie3-institute/powersystemutils/compare/v1.4...v1.5.2
7378
[1.5.1]: https://github.com/ie3-institute/powersystemutils/compare/v1.4...v1.5.1
7479
[1.5]: https://github.com/ie3-institute/powersystemutils/compare/v1.4...v1.5

‎build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ext {
2020
}
2121

2222
group = 'com.github.ie3-institute'
23-
version = '1.6-SNAPSHOT'
23+
version = '1.5.3'
2424
description = 'PowerSystemUtils'
2525
sourceCompatibility = javaVersion
2626
targetCompatibility = javaVersion
@@ -42,6 +42,12 @@ repositories {
4242
}
4343

4444
dependencies {
45+
constraints {
46+
implementation( 'junit:junit:4.13.2+' ){
47+
because "CVE-2020-15250 - Temporary folder vulnerability - https://github.com/advisories/GHSA-269g-pwp5-87pp"
48+
}
49+
}
50+
4551
// logging
4652
compile "org.slf4j:slf4j-api:$slf4jVersion" // slf4j wrapper
4753
compile 'com.lmax:disruptor:3.4.4' // async logging

0 commit comments

Comments
 (0)
Please sign in to comment.