From 72a1d1ca3f578e3e88b2a9a4b5da60528a663560 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:39:48 -0800 Subject: [PATCH 1/2] bump to 3.1.6 --- CHANGELOG.md | 7 +++++++ gradle.properties | 2 +- gradle/dependencies.gradle | 14 +++++++------- readme.md | 4 ++-- .../com/microsoft/graph/core/CoreConstants.java | 2 +- 5 files changed, 18 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 385d6c94..900a92d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [3.1.6] - 2024-02-29 + +### Changed + +- Bumps Kiota-Java abstractions, authentication, http, and serialization components +- Kiota-Java version bumps address a bug where file upload would fail due to unknown contentLength value. [Kiota-Java #1088](https://github.com/microsoft/kiota-java/pull/1088) + ## [3.1.5] - 2024-02-27 ### Changed diff --git a/gradle.properties b/gradle.properties index 1c64422b..af378343 100644 --- a/gradle.properties +++ b/gradle.properties @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph mavenArtifactId = microsoft-graph-core mavenMajorVersion = 3 mavenMinorVersion = 1 -mavenPatchVersion = 5 +mavenPatchVersion = 6 mavenArtifactSuffix = #These values are used to run functional tests diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 48be2509..83b58e79 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -16,11 +16,11 @@ dependencies { api 'com.squareup.okhttp3:okhttp:4.12.0' api 'com.azure:azure-core:1.46.0' - api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.4' - implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.4' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.4' + api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.5' + implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.5' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.5' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.5' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.5' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.5' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.5' } diff --git a/readme.md b/readme.md index 737ef138..e2ebbd0f 100644 --- a/readme.md +++ b/readme.md @@ -22,7 +22,7 @@ repositories { dependencies { // Include the sdk as a dependency - implementation 'com.microsoft.graph:microsoft-graph-core:3.1.5' + implementation 'com.microsoft.graph:microsoft-graph-core:3.1.6' // This dependency is only needed if you are using the TokenCredentialAuthProvider implementation 'com.azure:azure-identity:1.11.0' } @@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph-core - 3.1.5 + 3.1.6 com.azure azure-identity diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index 2aae7cda..ccd9946a 100644 --- a/src/main/java/com/microsoft/graph/core/CoreConstants.java +++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java @@ -14,7 +14,7 @@ private CoreConstants() {} private static class VersionValues { private static final int MAJOR = 3; private static final int MINOR = 1; - private static final int PATCH = 5; + private static final int PATCH = 6; } /** From e2cc79af2fab5fbf30be1c7ba28891a668fcaad6 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Thu, 29 Feb 2024 14:53:38 -0500 Subject: [PATCH 2/2] - bumps android tooling to unblock --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index efbf782e..286b3f14 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -6,7 +6,7 @@ buildscript { dependencies { classpath "com.gradle:gradle-enterprise-gradle-plugin:3.16.2" - classpath "com.android.tools.build:gradle:8.2.2" + classpath "com.android.tools.build:gradle:8.3.0" classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0" } }