From 459c8a04909e5435ffa2c15aff0ea56c9c2d2046 Mon Sep 17 00:00:00 2001 From: "release-please-token-provider[bot]" <225477224+release-please-token-provider[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:50:01 +0000 Subject: [PATCH] chore(main): release 6.63.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- gradle.properties | 2 +- pom.xml | 2 +- .../java/com/microsoft/graph/info/Constants.java | 2 +- 6 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e18729b91c0..0ba92103147 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.62.0" + ".": "6.63.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8546e46241e..2bfa6c6b828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +## [6.63.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.62.0...v6.63.0) (2026-04-17) + + +### Features + +* **generation:** update request builders and models ([aa6302a](https://github.com/microsoftgraph/msgraph-sdk-java/commit/aa6302a84312d44bc98d46ba12019437b5a39adc)) + + +### Bug Fixes + +* remove previewBranch param and align deploy stage condition with deploy_maven job ([8c970c6](https://github.com/microsoftgraph/msgraph-sdk-java/commit/8c970c69215998195833dd10393e389cc47a8252)) +* remove previewBranch parameter and align deploy stage condition ([53507c0](https://github.com/microsoftgraph/msgraph-sdk-java/commit/53507c090b1834e155503b81e0fb95bd7c1728dd)) + ## [6.62.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.61.0...v6.62.0) (2026-02-19) diff --git a/README.md b/README.md index e77af0c8a2c..c75616e2415 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph:6.62.0' + implementation 'com.microsoft.graph:microsoft-graph:6.63.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' @@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph - 6.62.0 + 6.63.0 diff --git a/gradle.properties b/gradle.properties index ad69c714db0..c093591af79 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 = 62 +mavenMinorVersion = 63 # x-release-please-end # x-release-please-start-patch mavenPatchVersion = 0 diff --git a/pom.xml b/pom.xml index 449e6942e83..ff8998e4129 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.microsoft.graph microsoft-graph - 6.62.0 + 6.63.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 e1886676a06..067a7066f85 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.62.0"; + public static final String VERSION_NAME = "6.63.0"; // x-release-please-end }