Skip to content

Commit ebe9826

Browse files
authored
Merge branch 'master' into task/romeara/28-failed-file-handling
2 parents c96a6b8 + ffb611a commit ebe9826

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

CHANGE_LOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

docs/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Global File Owners
2-
* @romeara @nickavv @WyattPearson @hanguyen304
2+
* @romeara @nickavv @hanguyen304

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# General library settings
22
group=com.synopsys
3-
version=0.1.7
3+
version=0.2.0
44

55
org.gradle.console=plain
66
org.gradle.warning.mode=all

method-analyzer-core/build.gradle

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,19 @@ description = 'Library which analyzes Java projects for method calls to external
88
dependencies {
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

0 commit comments

Comments
 (0)