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 9617dc73e08..543f2113d3b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,11 @@ 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.50.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.47.0...v6.50.0) (2025-11-12)
+
+### Features
+
+* **generation:** update request builders and models ([92a9d6b](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/249cb248dd02bcd62334cb1b2a42425474beacde))
## [6.48.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.47.0...v6.48.0) (2025-06-17)
diff --git a/README.md b/README.md
index 70456ed30d6..6e1c4c2063f 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.49.0'
+ implementation 'com.microsoft.graph:microsoft-graph-beta:6.50.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.49.0
+ 6.50.0
diff --git a/android/build.gradle b/android/build.gradle
index d78656ba126..0869d7834b7 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.2"
classpath "gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE"
- classpath "com.android.tools.build:gradle:8.13.0"
+ classpath "com.android.tools.build:gradle:8.13.1"
classpath "com.github.ben-manes:gradle-versions-plugin:0.53.0"
}
}
diff --git a/gradle.properties b/gradle.properties
index 292a58a69a2..8182c12077c 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 = 49
+mavenMinorVersion = 50
# 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 ea95baf0319..bd6404f4bbc 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.49.0";
+ public static final String VERSION_NAME = "6.50.0";
// x-release-please-end
}