From c43c3b07bd93d70ebf87f0b3c674f6b217f4036e Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 19:03:49 +0000 Subject: [PATCH] chore(main): release 6.50.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- gradle.properties | 2 +- pom.xml | 2 +- src/main/java/com/microsoft/graph/info/Constants.java | 2 +- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1d7583b2dd5..1d02d1fa302 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.49.0" + ".": "6.50.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c670add06e7..1d38a618c2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [6.50.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.49.0...v6.50.0) (2025-08-12) + + +### Features + +* **generation:** update request builders and models ([220314f](https://github.com/microsoftgraph/msgraph-sdk-java/commit/220314f818caf73b73e3afab23c94449f843cb6a)) + ## [6.49.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.48.0...v6.49.0) (2025-08-05) diff --git a/README.md b/README.md index c171348b37c..645aeb94f7e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph:6.49.0' + implementation 'com.microsoft.graph:microsoft-graph:6.50.0' // x-release-please-end // This dependency is only needed if you are using a TokenCredential object for authentication implementation 'com.azure:azure-identity:1.15.0' @@ -38,7 +38,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph - 6.49.0 + 6.50.0 diff --git a/gradle.properties b/gradle.properties index 419562879eb..4b4ff9afe3e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,7 +29,7 @@ mavenArtifactId = microsoft-graph mavenMajorVersion = 6 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 49 +mavenMinorVersion = 50 # x-release-please-end # x-release-please-start-patch mavenPatchVersion = 0 diff --git a/pom.xml b/pom.xml index 5233692e28d..885e1989af0 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.microsoft.graph microsoft-graph - 6.49.0 + 6.50.0 pom diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java index f395bf90645..b4fc6021ec7 100644 --- a/src/main/java/com/microsoft/graph/info/Constants.java +++ b/src/main/java/com/microsoft/graph/info/Constants.java @@ -4,7 +4,7 @@ public final class Constants { /** The SDK version */ // x-release-please-start-version - public static final String VERSION_NAME = "6.49.0"; + public static final String VERSION_NAME = "6.50.0"; // x-release-please-end }