From a18321656dfaa7207fccfb041aeaf30265f5c893 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 09:03:44 +0000 Subject: [PATCH 1/3] chore(deps): bump gradle-wrapper from 9.5.1 to 9.6.0 Bumps [gradle-wrapper](https://github.com/gradle/gradle) from 9.5.1 to 9.6.0. - [Release notes](https://github.com/gradle/gradle/releases) - [Commits](https://github.com/gradle/gradle/compare/v9.5.1...v9.6.0) --- updated-dependencies: - dependency-name: gradle-wrapper dependency-version: 9.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- gradle/wrapper/gradle-wrapper.properties | 2 +- gradlew | 4 ++-- gradlew.bat | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index df6a6ad7..eb84db68 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.0-bin.zip networkTimeout=10000 retries=0 retryBackOffMs=500 diff --git a/gradlew b/gradlew index b9bb139f..249efbb0 100755 --- a/gradlew +++ b/gradlew @@ -20,7 +20,7 @@ ############################################################################## # -# Gradle start up script for POSIX generated by Gradle. +# gradlew start up script for POSIX generated by Gradle. # # Important for running: # @@ -29,7 +29,7 @@ # bash, then to run this script, type that shell name before the whole # command line, like: # -# ksh Gradle +# ksh gradlew # # Busybox and similar reduced shells will NOT work, because this script # requires all of these POSIX shell features: diff --git a/gradlew.bat b/gradlew.bat index aa5f10b0..8508ef68 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -19,7 +19,7 @@ @if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem -@rem Gradle startup script for Windows +@rem gradlew startup script for Windows @rem @rem ########################################################################## @@ -72,7 +72,7 @@ echo location of your Java installation. 1>&2 -@rem Execute Gradle +@rem Execute gradlew @rem endlocal doesn't take effect until after the line is parsed and variables are expanded @rem which allows us to clear the local environment before executing the java command endlocal & "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* & call :exitWithErrorLevel From 1739c10a53b8a0e689ed50452142c8c0f53a5321 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Mon, 22 Jun 2026 08:03:33 -0400 Subject: [PATCH 2/3] ci: upgrades outdated version of android library --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7d9d03de..38eb75dc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,7 +3,7 @@ okhttp = "4.12.0" opentelemetry = "1.63.0" [libraries] -com-android-tools-build-gradle = { group = "com.android.tools.build", name = "gradle", version = "8.11.0" } +com-android-tools-build-gradle = { group = "com.android.tools.build", name = "gradle", version = "9.2.1" } com-azure-azure-core = { group = "com.azure", name = "azure-core", version = "1.58.1" } com-github-ben-manes-gradle-versions-plugin = { group = "com.github.ben-manes", name = "gradle-versions-plugin", version = "0.52.0" } com-google-code-gson-gson = { group = "com.google.code.gson", name = "gson", version = "2.14.0" } From e534a7d81850ffb602df8f0be37f21fab71238f1 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Mon, 22 Jun 2026 10:12:23 -0400 Subject: [PATCH 3/3] ci: upgrades android sdk version to match dependency upgrade --- components/abstractions/android/build.gradle | 4 ++-- components/authentication/azure/android/build.gradle | 4 ++-- components/bundle/android/build.gradle | 4 ++-- components/http/okHttp/android/build.gradle | 4 ++-- components/serialization/form/android/build.gradle | 4 ++-- components/serialization/json/android/build.gradle | 4 ++-- components/serialization/multipart/android/build.gradle | 4 ++-- components/serialization/text/android/build.gradle | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/components/abstractions/android/build.gradle b/components/abstractions/android/build.gradle index 7c78f35e..a05caf2c 100644 --- a/components/abstractions/android/build.gradle +++ b/components/abstractions/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes { diff --git a/components/authentication/azure/android/build.gradle b/components/authentication/azure/android/build.gradle index aa82165a..5a9fa092 100644 --- a/components/authentication/azure/android/build.gradle +++ b/components/authentication/azure/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota.authentication" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes { diff --git a/components/bundle/android/build.gradle b/components/bundle/android/build.gradle index d84d033b..32c70b13 100644 --- a/components/bundle/android/build.gradle +++ b/components/bundle/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota.bundle" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes { diff --git a/components/http/okHttp/android/build.gradle b/components/http/okHttp/android/build.gradle index b110eec8..0b654599 100644 --- a/components/http/okHttp/android/build.gradle +++ b/components/http/okHttp/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota.http" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes { diff --git a/components/serialization/form/android/build.gradle b/components/serialization/form/android/build.gradle index 6dca0aeb..903079dc 100644 --- a/components/serialization/form/android/build.gradle +++ b/components/serialization/form/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota.serialization" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes { diff --git a/components/serialization/json/android/build.gradle b/components/serialization/json/android/build.gradle index 6dca0aeb..903079dc 100644 --- a/components/serialization/json/android/build.gradle +++ b/components/serialization/json/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota.serialization" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes { diff --git a/components/serialization/multipart/android/build.gradle b/components/serialization/multipart/android/build.gradle index 6dca0aeb..903079dc 100644 --- a/components/serialization/multipart/android/build.gradle +++ b/components/serialization/multipart/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota.serialization" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes { diff --git a/components/serialization/text/android/build.gradle b/components/serialization/text/android/build.gradle index 6dca0aeb..903079dc 100644 --- a/components/serialization/text/android/build.gradle +++ b/components/serialization/text/android/build.gradle @@ -24,13 +24,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace "com.microsoft.kiota.serialization" - compileSdkVersion 36 + compileSdkVersion 37 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 36 + targetSdkVersion 37 } buildTypes {