From 5e20a7bfac544c3d3f6d1bb7f3640e28a3e4d581 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 19:03:28 +0000 Subject: [PATCH] chore(main): release 3.1.12 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- gradle.properties | 2 +- pom.xml | 2 +- src/main/java/com/microsoft/graph/core/CoreConstants.java | 2 +- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c686f468..1a6f749f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.1.11" + ".": "3.1.12" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 46dcf529..97859733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). +## [3.1.12](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.11...v3.1.12) (2024-05-22) + + +### Bug Fixes + +* disabled checking for stream available length in large file upload [#1621](https://github.com/microsoftgraph/msgraph-sdk-java-core/issues/1621) ([d12a76a](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/d12a76a863899fed44b15c65628ba2b1831965a1)) + ## [3.1.11](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.10...v3.1.11) (2024-05-22) diff --git a/README.md b/README.md index f6137b64..605fb571 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph-core:3.1.11' + implementation 'com.microsoft.graph:microsoft-graph-core:3.1.12' // x-release-please-end // This dependency is only needed if you are using the TokenCredentialAuthProvider implementation 'com.azure:azure-identity:1.11.0' @@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph-core - 3.1.11 + 3.1.12 com.azure diff --git a/gradle.properties b/gradle.properties index 4ba7c397..f22007a5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,7 +30,7 @@ mavenMajorVersion = 3 mavenMinorVersion = 1 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 11 +mavenPatchVersion = 12 # x-release-please-end mavenArtifactSuffix = diff --git a/pom.xml b/pom.xml index b7b61b67..c642d69c 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.1.11 + 3.1.12 pom diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index ed007973..5e2cddc4 100644 --- a/src/main/java/com/microsoft/graph/core/CoreConstants.java +++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java @@ -19,7 +19,7 @@ private static class VersionValues { private static final int MINOR = 1; // x-release-please-end // x-release-please-start-patch - private static final int PATCH = 11; + private static final int PATCH = 12; // x-release-please-end }