Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "6.51.0"
".": "6.52.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.52.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.51.0...v6.52.0) (2025-12-03)


### Features

* **generation:** update request builders and models ([#1265](https://github.com/microsoftgraph/msgraph-beta-sdk-java/issues/1265)) ([dae64cb](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/dae64cbb616f7a3f433876a996f52c1ad14b7a02))

## [6.51.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.50.0...v6.51.0) (2025-11-19)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.51.0'
implementation 'com.microsoft.graph:microsoft-graph-beta:6.52.0'
// x-release-please-end
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
implementation 'com.azure:azure-identity:1.11.0'
Expand All @@ -39,7 +39,7 @@ Add the dependency in `dependencies` in pom.xml
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-beta</artifactId>
<!--x-release-please-start-version-->
<version>6.51.0</version>
<version>6.52.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mavenArtifactId = microsoft-graph-beta
mavenMajorVersion = 6
# x-release-please-end
# x-release-please-start-minor
mavenMinorVersion = 51
mavenMinorVersion = 52
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ private Constants() {
}
/** The SDK version */
// x-release-please-start-version
public static final String VERSION_NAME = "6.51.0";
public static final String VERSION_NAME = "6.52.0";
// x-release-please-end
}

Loading