diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d3d6d3e4..d6fef974 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.6.4" + ".": "3.6.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dda7202..200ec9e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.6.5](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.4...v3.6.5) (2025-09-11) + + +### Bug Fixes + +* dependabot updates including identity ([#2010](https://github.com/microsoftgraph/msgraph-sdk-java-core/issues/2010)) ([8b182a5](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/8b182a5a93eb36e5d0d3172fac2b065b00efe17a)) + ## [3.6.4](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.3...v3.6.4) (2025-07-04) diff --git a/README.md b/README.md index 0d898462..0ffd4007 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph-core:3.6.4' + implementation 'com.microsoft.graph:microsoft-graph-core:3.6.5' // x-release-please-end // This dependency is only needed if you are using the TokenCredentialAuthProvider implementation 'com.azure:azure-identity:1.11.0' @@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph-core - 3.6.4 + 3.6.5 com.azure diff --git a/gradle.properties b/gradle.properties index f038876f..807077c8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,7 +30,7 @@ mavenMajorVersion = 3 mavenMinorVersion = 6 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 4 +mavenPatchVersion = 5 # x-release-please-end mavenArtifactSuffix = diff --git a/pom.xml b/pom.xml index 0ea86a26..a5041417 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.6.4 + 3.6.5 pom diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index b7efb07b..156e6cfd 100644 --- a/src/main/java/com/microsoft/graph/core/CoreConstants.java +++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java @@ -19,7 +19,7 @@ private static class VersionValues { private static final int MINOR = 6; // x-release-please-end // x-release-please-start-patch - private static final int PATCH = 4; + private static final int PATCH = 5; // x-release-please-end }