File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed
src/main/java/com/microsoft/graph/httpcore Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010### Added
1111
12+ ## [ 2.0.20] - 2023-10-23
13+
14+ ### Changed
15+
16+ - Updates Okhttp3 to avoid transient vulnerabilty. [ #1038 ] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/issues/1038 )
17+
1218## [ 2.0.19] - 2023-06-20
1319
1420### Changed
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ mavenGroupId = com.microsoft.graph
2727mavenArtifactId = microsoft-graph-core
2828mavenMajorVersion = 2
2929mavenMinorVersion = 3
30- mavenPatchVersion = 2
30+ mavenPatchVersion = 3
3131mavenArtifactSuffix =
3232
3333# These values are used to run functional tests
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525mavenArtifactId = microsoft-graph-core
2626mavenMajorVersion = 2
2727mavenMinorVersion = 0
28- mavenPatchVersion = 19
28+ mavenPatchVersion = 20
2929mavenArtifactSuffix =
3030
3131# These values are used to run functional tests
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ repositories {
2222
2323dependencies {
2424 // Include the sdk as a dependency
25- implementation 'com.microsoft.graph:microsoft-graph-core:2.0.19 '
25+ implementation 'com.microsoft.graph:microsoft-graph-core:2.0.20 '
2626 // This dependency is only needed if you are using the TokenCredentialAuthProvider
27- implementation 'com.azure:azure-identity:1.7 .2'
27+ implementation 'com.azure:azure-identity:1.10 .2'
2828}
2929```
3030
@@ -37,11 +37,11 @@ Add the dependency in `dependencies` in pom.xml
3737 <!-- Include the sdk as a dependency -->
3838 <groupId >com.microsoft.graph</groupId >
3939 <artifactId >microsoft-graph-core</artifactId >
40- <version >2.0.16 </version >
40+ <version >2.0.20 </version >
4141 <!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4242 <groupId >com.azure</groupId >
4343 <artifactId >azure-identity</artifactId >
44- <version >1.7 .2</version >
44+ <version >1.10 .2</version >
4545</dependency >
4646```
4747
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class TelemetryHandler implements Interceptor{
2424 /**
2525 * Current SDK version
2626 */
27- public static final String VERSION = "v2.0.19 " ;
27+ public static final String VERSION = "v2.0.20 " ;
2828 /**
2929 * Version prefix
3030 */
You can’t perform that action at this time.
0 commit comments