Skip to content

Commit e4d7342

Browse files
authored
Merge pull request #1602 from microsoftgraph/dev
Release 3.1.10
2 parents 8fc97f7 + c8924b6 commit e4d7342

File tree

15 files changed

+50
-44
lines changed

15 files changed

+50
-44
lines changed

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Dependabot metadata
2121
id: metadata
22-
uses: dependabot/fetch-metadata@v2.0.0
22+
uses: dependabot/fetch-metadata@v2.1.0
2323
with:
2424
github-token: "${{ secrets.GITHUB_TOKEN }}"
2525

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [3.1.10] - 2024-05-09
15+
16+
### Changed
17+
18+
- Downgraded `jakarta.annotation-api` dependency to `2.1.1` for java 8 compatibility
19+
1420
## [3.1.9] - 2024-04-23
1521

1622
### Changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66

77
dependencies {
88
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.17.2"
9-
classpath "com.android.tools.build:gradle:8.3.2"
9+
classpath "com.android.tools.build:gradle:8.4.0"
1010
classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0"
1111
}
1212
}
-9 Bytes
Binary file not shown.

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

android/gradlew.bat

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343
%JAVA_EXE% -version >NUL 2>&1
4444
if %ERRORLEVEL% equ 0 goto execute
4545

46-
echo.
47-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48-
echo.
49-
echo Please set the JAVA_HOME variable in your environment to match the
50-
echo location of your Java installation.
46+
echo. 1>&2
47+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48+
echo. 1>&2
49+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50+
echo location of your Java installation. 1>&2
5151

5252
goto fail
5353

@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757

5858
if exist "%JAVA_EXE%" goto execute
5959

60-
echo.
61-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62-
echo.
63-
echo Please set the JAVA_HOME variable in your environment to match the
64-
echo location of your Java installation.
60+
echo. 1>&2
61+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62+
echo. 1>&2
63+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64+
echo location of your Java installation. 1>&2
6565

6666
goto fail
6767

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id 'maven-publish'
66
id 'signing'
77
id 'jacoco'
8-
id 'com.github.spotbugs' version '6.0.12'
8+
id 'com.github.spotbugs' version '6.0.14'
99
id "org.sonarqube" version "5.0.0.4638"
1010
}
1111

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525
mavenArtifactId = microsoft-graph-core
2626
mavenMajorVersion = 3
2727
mavenMinorVersion = 1
28-
mavenPatchVersion = 9
28+
mavenPatchVersion = 10
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ dependencies {
99
testImplementation 'io.github.std-uritemplate:std-uritemplate:0.0.57'
1010
implementation 'com.google.code.gson:gson:2.10.1'
1111

12-
implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0'
12+
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
1313

1414
api 'com.squareup.okhttp3:okhttp:4.12.0'
15-
api 'com.azure:azure-core:1.48.0'
15+
api 'com.azure:azure-core:1.49.0'
1616

17-
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.1.7'
18-
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.7'
19-
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.7'
20-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.7'
21-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.7'
22-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.7'
23-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.7'
17+
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.1.11'
18+
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.11'
19+
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.11'
20+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.11'
21+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.11'
22+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.11'
23+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.11'
2424
}

gradle/wrapper/gradle-wrapper.jar

-9 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)