Skip to content
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [3.1.10] - 2024-05-09

### Changed

- Downgraded `jakarta.annotation-api` dependency to `2.1.1` for java 8 compatibility

## [3.1.9] - 2024-04-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph-core
mavenMajorVersion = 3
mavenMinorVersion = 1
mavenPatchVersion = 9
mavenPatchVersion = 10
mavenArtifactSuffix =

#These values are used to run functional tests
Expand Down
16 changes: 8 additions & 8 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ dependencies {
testImplementation 'io.github.std-uritemplate:std-uritemplate:0.0.57'
implementation 'com.google.code.gson:gson:2.10.1'

implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0'
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'

api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'com.azure:azure-core:1.49.0'

api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.1.10'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.10'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.10'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.10'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.10'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.10'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.10'
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.11'
}
12 changes: 6 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {

dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.6'
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.10'
// This dependency is only needed if you are using the TokenCredentialAuthProvider
implementation 'com.azure:azure-identity:1.11.0'
}
Expand All @@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-core</artifactId>
<version>3.1.6</version>
<version>3.1.10</version>
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
Expand Down Expand Up @@ -85,9 +85,9 @@ client.newCall(request).enqueue(new Callback() {
@Override
public void onResponse(Call call, Response response) throws IOException {
String responseBody = response.body().string();
// Your processing with the response body
// Your processing with the response body
}

@Override
public void onFailure(Call call, IOException e) {
e.printStackTrace();
Expand All @@ -106,9 +106,9 @@ client.newCall(request).enqueue(new Callback() {
@Override
public void onResponse(Call call, Response response) throws IOException {
String responseBody = response.body().string();
// Your processing with the response body
// Your processing with the response body
}

@Override
public void onFailure(Call call, IOException e) {
e.printStackTrace();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/microsoft/graph/core/CoreConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 9;
private static final int PATCH = 10;
}

/**
Expand Down