Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 6.14.0 #2059

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.13.0"
".": "6.14.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file.

## [6.14.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.13.0...v6.14.0) (2024-08-23)


### Features

* **generation:** update request builders and models ([820d7c6](https://github.com/microsoftgraph/msgraph-sdk-java/commit/820d7c616dee919d34f6873227045d0d31d16ee1))
* **generation:** update request builders and models ([3e676ae](https://github.com/microsoftgraph/msgraph-sdk-java/commit/3e676aee71498cb5b0aa07d5888113a99c37051c))


### Bug Fixes

* empty request body with logging interceptor ([eb7ca0f](https://github.com/microsoftgraph/msgraph-sdk-java/commit/eb7ca0f92928bdb53cc5dcb0426fb3eaa31f3813))

## [6.13.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.12.0...v6.13.0) (2024-06-06)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
// x-release-please-start-version
implementation 'com.microsoft.graph:microsoft-graph:6.13.0'
implementation 'com.microsoft.graph:microsoft-graph:6.14.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.11.0'
Expand All @@ -38,7 +38,7 @@ Add the dependency in `dependencies` in pom.xml
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<!--x-release-please-start-version-->
<version>6.13.0</version>
<version>6.14.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
mavenMajorVersion = 6
# x-release-please-end
# x-release-please-start-minor
mavenMinorVersion = 13
mavenMinorVersion = 14
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 0
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<version>6.13.0</version>
<version>6.14.0</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/microsoft/graph/info/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
public final class Constants {
/** The SDK version */
// x-release-please-start-version
public static final String VERSION_NAME = "6.13.0";
public static final String VERSION_NAME = "6.14.0";
// x-release-please-end
}

Expand Down
Loading