Skip to content

Commit 973816b

Browse files
authored
Merge pull request #1818 from microsoftgraph/release-please--branches--main--components--com.microsoft.graph.microsoft-graph-core
2 parents 90d2e5a + 79ef1b8 commit 973816b

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.4.0"
2+
".": "3.5.0"
33
}

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.5.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.4.0...v3.5.0) (2025-01-02)
9+
10+
11+
### Features
12+
13+
* adds a parameter for isCAE enabled in authentication provider ([a202619](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/a20261919a30a4a0e767773ffdc4c06cab0242d3))
14+
15+
16+
### Bug Fixes
17+
18+
* replaces invalid inherited doc comments for access token provider ([a202619](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/a20261919a30a4a0e767773ffdc4c06cab0242d3))
19+
820
## [3.4.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.3.1...v3.4.0) (2024-11-19)
921

1022

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ repositories {
2323
dependencies {
2424
// Include the sdk as a dependency
2525
// x-release-please-start-version
26-
implementation 'com.microsoft.graph:microsoft-graph-core:3.4.0'
26+
implementation 'com.microsoft.graph:microsoft-graph-core:3.5.0'
2727
// x-release-please-end
2828
// This dependency is only needed if you are using the TokenCredentialAuthProvider
2929
implementation 'com.azure:azure-identity:1.11.0'
@@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml
4040
<groupId>com.microsoft.graph</groupId>
4141
<artifactId>microsoft-graph-core</artifactId>
4242
<!--x-release-please-start-version-->
43-
<version>3.4.0</version>
43+
<version>3.5.0</version>
4444
<!--x-release-please-end-->
4545
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4646
<groupId>com.azure</groupId>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mavenArtifactId = microsoft-graph-core
2727
mavenMajorVersion = 3
2828
# x-release-please-end
2929
# x-release-please-start-minor
30-
mavenMinorVersion = 4
30+
mavenMinorVersion = 5
3131
# x-release-please-end
3232
# x-release-please-start-patch
3333
mavenPatchVersion = 0

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<groupId>com.microsoft.graph</groupId>
1010
<artifactId>microsoft-graph-core</artifactId>
1111
<!--x-release-please-start-version-->
12-
<version>3.4.0</version>
12+
<version>3.5.0</version>
1313
<!--x-release-please-end-->
1414
<packaging>pom</packaging>
1515

src/main/java/com/microsoft/graph/core/CoreConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ private static class VersionValues {
1616
private static final int MAJOR = 3;
1717
// x-release-please-end
1818
// x-release-please-start-minor
19-
private static final int MINOR = 4;
19+
private static final int MINOR = 5;
2020
// x-release-please-end
2121
// x-release-please-start-patch
2222
private static final int PATCH = 0;

0 commit comments

Comments
 (0)