File tree Expand file tree Collapse file tree 6 files changed +21
-8
lines changed
src/main/java/com/microsoft/graph/core Expand file tree Collapse file tree 6 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 3.3.1 "
2+ "." : " 3.4.0 "
33}
Original file line number Diff line number Diff line change @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 3.4.0] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.3.1...v3.4.0 ) (2024-11-19)
9+
10+
11+ ### Features
12+
13+ * add GraphClientFactory method using TokenCredential ([ b75c471] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/b75c471d17436712d7e6cc8e32e606af200670e7 ) )
14+ * Support overriding default interceptors via request options ([ 667cae6] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/667cae662ec46e938d73817e79d58e84d97171e6 ) )
15+
16+
17+ ### Bug Fixes
18+
19+ * issue where custom interceptors would fail to override default interceptors ([ adf470a] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/adf470aa76e12920effbc9d8feee5721ecb68101 ) )
20+
821## [ 3.3.1] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.3.0...v3.3.1 ) (2024-10-23)
922
1023
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ repositories {
2323dependencies {
2424 // Include the sdk as a dependency
2525 // x-release-please-start-version
26- implementation 'com.microsoft.graph:microsoft-graph-core:3.3.1 '
26+ implementation 'com.microsoft.graph:microsoft-graph-core:3.4.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.3.1 </version >
43+ <version >3.4.0 </version >
4444 <!-- x-release-please-end-->
4545 <!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4646 <groupId >com.azure</groupId >
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ mavenArtifactId = microsoft-graph-core
2727mavenMajorVersion = 3
2828# x-release-please-end
2929# x-release-please-start-minor
30- mavenMinorVersion = 3
30+ mavenMinorVersion = 4
3131# x-release-please-end
3232# x-release-please-start-patch
33- mavenPatchVersion = 1
33+ mavenPatchVersion = 0
3434# x-release-please-end
3535mavenArtifactSuffix =
3636
Original file line number Diff line number Diff line change 99 <groupId >com.microsoft.graph</groupId >
1010 <artifactId >microsoft-graph-core</artifactId >
1111 <!-- x-release-please-start-version-->
12- <version >3.3.1 </version >
12+ <version >3.4.0 </version >
1313 <!-- x-release-please-end-->
1414 <packaging >pom</packaging >
1515
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ 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 = 3 ;
19+ private static final int MINOR = 4 ;
2020 // x-release-please-end
2121 // x-release-please-start-patch
22- private static final int PATCH = 1 ;
22+ private static final int PATCH = 0 ;
2323 // x-release-please-end
2424 }
2525
You can’t perform that action at this time.
0 commit comments