File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased/Snapshot]
8
8
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
+
9
13
## [ 1.5.2]
10
14
### Changed
11
15
- 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
68
72
### Fixed
69
73
- fixes + extensions in StandardUnits
70
74
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
72
77
[ 1.5.2 ] : https://github.com/ie3-institute/powersystemutils/compare/v1.4...v1.5.2
73
78
[ 1.5.1 ] : https://github.com/ie3-institute/powersystemutils/compare/v1.4...v1.5.1
74
79
[ 1.5 ] : https://github.com/ie3-institute/powersystemutils/compare/v1.4...v1.5
Original file line number Diff line number Diff line change 20
20
}
21
21
22
22
group = ' com.github.ie3-institute'
23
- version = ' 1.6-SNAPSHOT '
23
+ version = ' 1.5.3 '
24
24
description = ' PowerSystemUtils'
25
25
sourceCompatibility = javaVersion
26
26
targetCompatibility = javaVersion
@@ -42,6 +42,12 @@ repositories {
42
42
}
43
43
44
44
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
+
45
51
// logging
46
52
compile " org.slf4j:slf4j-api:$slf4jVersion " // slf4j wrapper
47
53
compile ' com.lmax:disruptor:3.4.4' // async logging
You can’t perform that action at this time.
0 commit comments