diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 23efc1ea..bea4c089 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.6.0" + ".": "3.6.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 952f2ba8..e24b1e0c 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.6.1](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.0...v3.6.1) (2025-02-25) + + +### Bug Fixes + +* resolve build errors for azure authentication package on android ([87c1042](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/87c1042f0f5383c4cdfd6a079d3aba643bcc607e)) +* resolve build errors for azure authentication package on android ([a379813](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/a3798137e26a27c002ccdd281220f58fd0baa372)) + ## [3.6.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.5.0...v3.6.0) (2025-02-18) diff --git a/README.md b/README.md index cc99376f..aab5f278 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.6.0' + implementation 'com.microsoft.graph:microsoft-graph-core:3.6.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.6.0 + 3.6.1 com.azure diff --git a/android/build.gradle b/android/build.gradle index 4ec12656..432ba732 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.1" + classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.2" classpath "com.android.tools.build:gradle:8.8.1" classpath "com.github.ben-manes:gradle-versions-plugin:0.52.0" } diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index cea7a793..e18bc253 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/android/lint-baseline.xml b/android/lint-baseline.xml index 11149ca5..9d4acb62 100644 --- a/android/lint-baseline.xml +++ b/android/lint-baseline.xml @@ -1,11 +1,3 @@ - - - - - diff --git a/build.gradle b/build.gradle index 2172daa7..31cca9cc 100644 --- a/build.gradle +++ b/build.gradle @@ -103,9 +103,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version getVersionName() + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = getVersionName() from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/gradle.properties b/gradle.properties index 3b9a6834..dd124a53 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,7 +30,7 @@ mavenMajorVersion = 3 mavenMinorVersion = 6 # 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 34cb92d0..c3fc2117 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -1,8 +1,7 @@ dependencies { // Use JUnit test framework - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4' - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.4' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4' + testImplementation 'org.junit.jupiter:junit-jupiter:5.12.0' + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.mockito:mockito-core:5.15.2' testImplementation 'io.opentelemetry:opentelemetry-api:1.47.0' testImplementation 'io.opentelemetry:opentelemetry-context:1.47.0' @@ -19,11 +18,11 @@ dependencies { api 'com.squareup.okhttp3:okhttp:4.12.0' api 'com.azure:azure-core:1.54.1' - api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.2' - api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.2' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.2' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.2' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.2' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.2' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.2' + api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.4' + api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.4' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.4' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.4' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.4' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.4' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.4' } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index cea7a793..e18bc253 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-8.12-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/pom.xml b/pom.xml index 2df82f13..823c6030 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.6.0 + 3.6.1 pom @@ -32,18 +32,18 @@ com.azure azure-core - 1.55.1 + 1.55.2 org.junit.jupiter junit-jupiter-api - 5.11.4 + 5.12.0 test org.junit.jupiter junit-jupiter-params - 5.11.4 + 5.12.0 test diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index f5193d77..6db5660a 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 = 6; // 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 }