From d8b6b336d2bd7e1b1001d7197ddb2c3575f8db5e Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 10 Jun 2025 18:52:31 +0000 Subject: [PATCH] chore(main): release 6.47.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- gradle.properties | 2 +- .../java/com/microsoft/graph/beta/info/Constants.java | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index db6e397e95b..756ef490e07 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.46.0" + ".": "6.47.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 97870e2d591..fa7b1b8b7b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ 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.47.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.46.0...v6.47.0) (2025-06-10) + + +### Features + +* added new constructor for GraphServiceClient ([#1177](https://github.com/microsoftgraph/msgraph-beta-sdk-java/issues/1177)) ([fc47452](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/fc474525188b802c97ec30c6ad702e5e41ec1326)) +* **generation:** update request builders and models ([bad1e07](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/bad1e078321f24bee5f2a7643595b00a16eab7d4)) + ## [6.46.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.45.0...v6.46.0) (2025-06-03) diff --git a/README.md b/README.md index df72335a0c9..c4de4d1f487 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.46.0' + implementation 'com.microsoft.graph:microsoft-graph-beta:6.47.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.46.0 + 6.47.0 diff --git a/gradle.properties b/gradle.properties index 4eaaaf13369..2ee4d996552 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 = 46 +mavenMinorVersion = 47 # 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 ae6c65154f3..5c4aefe632e 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.46.0"; + public static final String VERSION_NAME = "6.47.0"; // x-release-please-end }