Skip to content

Commit ffb611a

Browse files
authored
Merge pull request #27 from blackducksoftware/task/romeara/dependencies-update
Update dependencies to latest minor/micro versions
2 parents 284b72b + 321cc42 commit ffb611a

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

CHANGE_LOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
### Changed
9+
- Updated `com.google.guava:guava` from `31.0-jre` to `31.1-jre`
10+
- Updated `org.ow2.asm:asm` from `9.2` to `9.3`
11+
- Updated `org.slf4j:slf4j-api` from `1.7.32` to `1.7.36`
12+
- Updated `org.slf4j:slf4j-simple` from `1.7.32` to `1.7.36`
13+
- Updated `org.testng:testng` from `7.4.0` to `7.5`
14+
- Updated override of `org.yaml:snakeyaml` transitive dependency from `1.29` to `1.30`
815

916
## [0.1.7]
1017
### Changed

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)