Skip to content

Commit 938c386

Browse files
Merge pull request #497 from microsoftgraph/prep-for-2.0.12
Prep for 2.0.12
2 parents 734e96e + 9abdec8 commit 938c386

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [2.0.12] - 2022-04-22
15+
16+
### Added
17+
18+
- Add ability to add custom hosts to BaseAuthenticationProvider #484
19+
20+
### Changed
21+
22+
- Bumps Azure Core to 1.27.0 #474, #473, #472
23+
- Bumps mockito-inline to 4.5.1 #494, #493, #491
24+
- Bumps gradle wrappers to 7.4.0 #454
25+
- Bumps gradle to 7.1.3 in /android #477
26+
- Bumps gradle-enterprise-gradle-plugin 3.10.0 in /android #488
27+
- Bumps dawidd6/action-download-artifact to 2.19.0 #482
28+
- Bumps com.github.spotbugs to 5.0.6 #442, #443, #444
29+
- Bumps spotbugs-annotations to 4.6.0 #460, #461
30+
- Bumps azure-identity to 1.5.0 #475, #476
31+
- Bumps actions/cache to 3.0.0 #469
32+
- Bumps actions/upload-artifact to 3.0.0 #479
33+
- Bumps actions/setup-java to 3.0.0 #478
34+
- Bumps rickstaa/action-create-tag to 1.2.2 #453
35+
- Bumps guava to 31.1-jre #451, #450, #449
36+
- Bumps gson to 2.9.0 #438, #439, #440
37+
1438
## [2.0.11] - 2022-02-04
1539

1640
### Added

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 = 11
28+
mavenPatchVersion = 12
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.microsoft.graph</groupId>
1010
<artifactId>microsoft-graph-core</artifactId>
11-
<version>2.0.11</version>
11+
<version>2.0.12</version>
1212
<packaging>pom</packaging>
1313

1414
<properties>

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
2323
dependencies {
2424
// Include the sdk as a dependency
25-
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.11'
25+
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.12'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
2727
implementation 'com.azure:azure-identity:1.3.1'
2828
}
@@ -37,7 +37,7 @@ 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.11</version>
40+
<version>2.0.12</version>
4141
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
4242
<groupId>com.azure</groupId>
4343
<artifactId>azure-identity</artifactId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class TelemetryHandler implements Interceptor{
2525
/**
2626
* Current SDK version
2727
*/
28-
public static final String VERSION = "v2.0.11";
28+
public static final String VERSION = "v2.0.12";
2929
/**
3030
* Verion prefix
3131
*/

0 commit comments

Comments
 (0)