File tree Expand file tree Collapse file tree 4 files changed +16
-11
lines changed
Expand file tree Collapse file tree 4 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77## [ Unreleased]
88### Changed
99- (GH-28 ) Record files which failed to parse in a report, instead of failing the entire analysis
10+ - Updated ` com.google.guava:guava ` from ` 31.0-jre ` to ` 31.1-jre `
11+ - Updated ` org.ow2.asm:asm ` from ` 9.2 ` to ` 9.3 `
12+ - Updated ` org.slf4j:slf4j-api ` from ` 1.7.32 ` to ` 1.7.36 `
13+ - Updated ` org.slf4j:slf4j-simple ` from ` 1.7.32 ` to ` 1.7.36 `
14+ - Updated ` org.testng:testng ` from ` 7.4.0 ` to ` 7.5 `
15+ - Updated override of ` org.yaml:snakeyaml ` transitive dependency from ` 1.29 ` to ` 1.30 `
1016
1117## [ 0.1.7]
1218### Changed
Original file line number Diff line number Diff line change 11# Global File Owners
2- * @ romeara @ nickavv @ WyattPearson @ hanguyen304
2+ * @ romeara @ nickavv @ hanguyen304
Original file line number Diff line number Diff line change 11# General library settings
22group =com.synopsys
3- version =0.1.7
3+ version =0.2.0
44
55org.gradle.console =plain
66org.gradle.warning.mode =all
Original file line number Diff line number Diff line change @@ -8,20 +8,19 @@ description = 'Library which analyzes Java projects for method calls to external
88dependencies {
99 compileOnly ' com.google.code.findbugs:jsr305:3.0.2'
1010
11- api ' com.google.guava:guava:31.0 -jre'
12- api ' org.ow2.asm:asm:9.2 '
11+ api ' com.google.guava:guava:31.1 -jre'
12+ api ' org.ow2.asm:asm:9.3 '
1313
14- implementation ' com.google.code.gson:gson:2.8.8 '
15- implementation ' org.slf4j:slf4j-api:1.7.32 '
14+ implementation ' com.google.code.gson:gson:2.9.0 '
15+ implementation ' org.slf4j:slf4j-api:1.7.36 '
1616
1717 testImplementation project(' :method-analyzer-test-project' )
18- testImplementation ' org.slf4j:slf4j-api:1.7.32'
19- testImplementation ' org.slf4j:slf4j-simple:1.7.32'
20- testImplementation ' org.testng:testng:7.4.0'
21- testImplementation ' org.slf4j:slf4j-simple:1.7.32'
18+ testImplementation ' org.slf4j:slf4j-api:1.7.36'
19+ testImplementation ' org.slf4j:slf4j-simple:1.7.36'
20+ testImplementation ' org.testng:testng:7.5'
2221
2322 // Overrides vulnerable version 1.21 in transitive dependencies of TestNG
24- testImplementation ' org.yaml:snakeyaml:1.29 '
23+ testImplementation ' org.yaml:snakeyaml:1.30 '
2524}
2625
2726// TODO romeara Add to contribution doc
You can’t perform that action at this time.
0 commit comments