Skip to content

Commit 3140ef9

Browse files
Merge pull request #1250 from microsoftgraph/versionBumpChangelog
Update CHANGELOG.md
2 parents f6c5c21 + 11886b7 commit 3140ef9

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

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

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph-core
2828
mavenMajorVersion = 2
2929
mavenMinorVersion = 3
30-
mavenPatchVersion = 2
30+
mavenPatchVersion = 3
3131
mavenArtifactSuffix =
3232

3333
#These values are used to run functional tests

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525
mavenArtifactId = microsoft-graph-core
2626
mavenMajorVersion = 2
2727
mavenMinorVersion = 0
28-
mavenPatchVersion = 19
28+
mavenPatchVersion = 20
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ repositories {
2222
2323
dependencies {
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

src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
*/

0 commit comments

Comments
 (0)