Skip to content

Commit cb2c3d9

Browse files
authored
Merge pull request #1557 from microsoftgraph/dev
release 3.1.7
2 parents 4773372 + be9fbec commit cb2c3d9

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
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@v1.6.0
22+
uses: dependabot/fetch-metadata@v2.0.0
2323
with:
2424
github-token: "${{ secrets.GITHUB_TOKEN }}"
2525

.github/workflows/git-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Download Build Artifact
17-
uses: dawidd6/[email protected].2
17+
uses: dawidd6/[email protected].4
1818
with:
1919
workflow: build-and-publish.yml
2020
workflow_conclusion: success

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.7] - 2024-03-28
15+
16+
### Changed
17+
18+
- Updates kiota dependencies to solve for misalignments.
19+
1420
## [3.1.6] - 2024-02-29
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.16.2"
9-
classpath "com.android.tools.build:gradle:8.3.0"
9+
classpath "com.android.tools.build:gradle:8.3.1"
1010
classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0"
1111
}
1212
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ plugins {
55
id 'maven-publish'
66
id 'signing'
77
id 'jacoco'
8-
id 'com.github.spotbugs' version '6.0.7'
9-
id "org.sonarqube" version "4.4.1.3373"
8+
id 'com.github.spotbugs' version '6.0.9'
9+
id "org.sonarqube" version "5.0.0.4638"
1010
}
1111

1212
java {

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 = 6
28+
mavenPatchVersion = 7
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,22 @@ dependencies {
44
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2'
55
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
66
testImplementation 'org.mockito:mockito-inline:5.2.0'
7-
testImplementation 'io.opentelemetry:opentelemetry-api:1.35.0'
8-
testImplementation 'io.opentelemetry:opentelemetry-context:1.35.0'
9-
testImplementation 'io.opentelemetry.semconv:opentelemetry-semconv:1.23.1-alpha'
10-
testImplementation 'io.github.std-uritemplate:std-uritemplate:0.0.54'
7+
testImplementation 'io.opentelemetry:opentelemetry-api:1.36.0'
8+
testImplementation 'io.opentelemetry:opentelemetry-context:1.36.0'
9+
testImplementation 'io.github.std-uritemplate:std-uritemplate:0.0.55'
1110

1211
implementation 'com.google.code.gson:gson:2.10.1'
1312

1413
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
1514

1615
api 'com.squareup.okhttp3:okhttp:4.12.0'
17-
api 'com.azure:azure-core:1.46.0'
16+
api 'com.azure:azure-core:1.47.0'
1817

19-
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.5'
20-
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.5'
21-
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.5'
22-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.5'
23-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.5'
24-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.5'
25-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.5'
18+
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.1.2'
19+
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.2'
20+
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.2'
21+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.2'
22+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.2'
23+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.2'
24+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.2'
2625
}

pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@
2222
<artifactId>gson</artifactId>
2323
<version>2.10.1</version>
2424
</dependency>
25-
<dependency>
26-
<groupId>com.google.guava</groupId>
27-
<artifactId>guava</artifactId>
28-
<version>33.0.0-jre</version>
29-
</dependency>
3025
<dependency>
3126
<groupId>com.squareup.okhttp3</groupId>
3227
<artifactId>okhttp</artifactId>
@@ -35,7 +30,7 @@
3530
<dependency>
3631
<groupId>com.azure</groupId>
3732
<artifactId>azure-core</artifactId>
38-
<version>1.46.0</version>
33+
<version>1.47.0</version>
3934
</dependency>
4035
<dependency>
4136
<groupId>org.junit.jupiter</groupId>

src/main/java/com/microsoft/graph/core/CoreConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ private CoreConstants() {}
1414
private static class VersionValues {
1515
private static final int MAJOR = 3;
1616
private static final int MINOR = 1;
17-
private static final int PATCH = 6;
17+
private static final int PATCH = 7;
1818
}
1919

2020
/**

0 commit comments

Comments
 (0)