diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7ac65a06b7d..dbe6278a776 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.57.0" + ".": "6.58.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index efe68036228..0bc0e3bf638 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). +## [6.58.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.57.0...v6.58.0) (2026-04-17) + + +### Features + +* **generation:** update request builders and models ([cc9c579](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/cc9c579c98fafb41e40ed3fdf56fe45e4b5d4673)) + ## [6.57.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.56.0...v6.57.0) (2026-04-08) diff --git a/README.md b/README.md index adeb8a4711b..cc6264f9ca3 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph-beta:6.57.0' + implementation 'com.microsoft.graph:microsoft-graph-beta:6.58.0' // x-release-please-end // This dependency is only needed if you are using the TokenCrendentialAuthProvider implementation 'com.azure:azure-identity:1.11.0' @@ -39,7 +39,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph-beta - 6.57.0 + 6.58.0 diff --git a/gradle.properties b/gradle.properties index 2377bca4817..6aa11fad177 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,7 +29,7 @@ mavenArtifactId = microsoft-graph-beta mavenMajorVersion = 6 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 57 +mavenMinorVersion = 58 # x-release-please-end # x-release-please-start-patch mavenPatchVersion = 0 diff --git a/src/main/java/com/microsoft/graph/beta/info/Constants.java b/src/main/java/com/microsoft/graph/beta/info/Constants.java index 72f631b2b6e..d13bf396a2f 100644 --- a/src/main/java/com/microsoft/graph/beta/info/Constants.java +++ b/src/main/java/com/microsoft/graph/beta/info/Constants.java @@ -6,7 +6,7 @@ private Constants() { } /** The SDK version */ // x-release-please-start-version - public static final String VERSION_NAME = "6.57.0"; + public static final String VERSION_NAME = "6.58.0"; // x-release-please-end }