diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 85b4861d..466b7195 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.3.0" + ".": "3.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f98daa20..e2b60af6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.3.1](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.3.0...v3.3.1) (2024-10-23) + + +### Bug Fixes + +* release new version with updated kiota dependencies ([6e70a6e](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/6e70a6e8e83457b20baac14a508400bb1b093432)) +* release new version with updated kiota dependencies ([1cfa35a](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/1cfa35ab9cd46b5a5761cbad1ef96f0c0883f8e6)) + ## [3.3.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.2.1...v3.3.0) (2024-09-30) diff --git a/README.md b/README.md index 7389b92f..54296fc8 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.3.0' + implementation 'com.microsoft.graph:microsoft-graph-core:3.3.1' // 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.3.0 + 3.3.1 com.azure @@ -75,7 +75,7 @@ OkHttpClient client = GraphClientFactory.create(authenticationProvider).build(); ## 3. Make requests against the service -After you have an OkHttpClient that is authenticated, you can begin making calls against the service. The requests against the service look like our [REST API](https://developer.microsoft.com/en-us/graph/docs/concepts/overview). +After you have an authenticated `OkHttpClient`, you can begin making calls against the service. The requests against the service look like our [REST API](https://developer.microsoft.com/en-us/graph/docs/concepts/overview). ### 3.1 Get the user's details @@ -125,13 +125,12 @@ For known issues, see [issues](https://github.com/MicrosoftGraph/msgraph-sdk-jav ## 5. Contributions -The Microsoft Graph SDK is open for contribution. To contribute to this project, see [Contributing](https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/main/CONTRIBUTING.md). +The Microsoft Graph SDK is open for contribution. To contribute to this project, see the [Contributing](https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/main/CONTRIBUTING.md) guide. ## 6. Supported Java versions The Microsoft Graph SDK for Java library is supported at runtime for Java 8 and [Android API revision 26](http://source.android.com/source/build-numbers.html) or greater. - ## 7. License Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MIT license](LICENSE). diff --git a/android/build.gradle b/android/build.gradle index 517d219f..2c9ea95c 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -6,7 +6,7 @@ buildscript { dependencies { classpath "com.gradle:gradle-enterprise-gradle-plugin:3.18.1" - classpath "com.android.tools.build:gradle:8.6.1" + classpath "com.android.tools.build:gradle:8.7.1" classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0" } } diff --git a/build.gradle b/build.gradle index 64c6eb49..d8f84e58 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { id 'maven-publish' id 'signing' id 'jacoco' - id 'com.github.spotbugs' version '6.0.23' + id 'com.github.spotbugs' version '6.0.25' id "org.sonarqube" version "5.1.0.4882" id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' } diff --git a/gradle.properties b/gradle.properties index 16397215..ee942d98 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,7 +30,7 @@ mavenMajorVersion = 3 mavenMinorVersion = 3 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 0 +mavenPatchVersion = 1 # x-release-please-end mavenArtifactSuffix = diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 66648e3a..c569a3f6 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -1,24 +1,24 @@ dependencies { // Use JUnit test framework - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.1' - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.1' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.1' - testImplementation 'org.mockito:mockito-core:5.14.0' - testImplementation 'io.opentelemetry:opentelemetry-api:1.42.1' - testImplementation 'io.opentelemetry:opentelemetry-context:1.42.1' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3' + testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.3' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3' + testImplementation 'org.mockito:mockito-core:5.14.2' + testImplementation 'io.opentelemetry:opentelemetry-api:1.43.0' + testImplementation 'io.opentelemetry:opentelemetry-context:1.43.0' testImplementation 'io.github.std-uritemplate:std-uritemplate:1.0.6' implementation 'com.google.code.gson:gson:2.11.0' implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1' api 'com.squareup.okhttp3:okhttp:4.12.0' - api 'com.azure:azure-core:1.52.0' + api 'com.azure:azure-core:1.53.0' - api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.5.0' - api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.5.0' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.5.0' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.5.0' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.5.0' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.5.0' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.5.0' + api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.7.0' + api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.7.0' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.7.0' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.7.0' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.7.0' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.7.0' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.7.0' } diff --git a/pom.xml b/pom.xml index aeaeb64a..a199192c 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.3.0 + 3.3.1 pom @@ -32,18 +32,18 @@ com.azure azure-core - 1.52.0 + 1.53.0 org.junit.jupiter junit-jupiter-api - 5.11.1 + 5.11.3 test org.junit.jupiter junit-jupiter-params - 5.11.1 + 5.11.3 test diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index 0c19f723..9025da1e 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 = 3; // x-release-please-end // x-release-please-start-patch - private static final int PATCH = 0; + private static final int PATCH = 1; // x-release-please-end }