Skip to content

Commit 0873fa3

Browse files
authored
Merge pull request microsoftgraph#1527 from microsoftgraph/rsh/v316_bump
Bump to 3.1.6
2 parents 5e0137b + e2cc79a commit 0873fa3

File tree

6 files changed

+19
-12
lines changed

6 files changed

+19
-12
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
## [3.1.6] - 2024-02-29
15+
16+
### Changed
17+
18+
- Bumps Kiota-Java abstractions, authentication, http, and serialization components
19+
- Kiota-Java version bumps address a bug where file upload would fail due to unknown contentLength value. [Kiota-Java #1088](https://github.com/microsoft/kiota-java/pull/1088)
20+
1421
## [3.1.5] - 2024-02-27
1522

1623
### 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.2.2"
9+
classpath "com.android.tools.build:gradle:8.3.0"
1010
classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0"
1111
}
1212
}

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

3131
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ dependencies {
1616
api 'com.squareup.okhttp3:okhttp:4.12.0'
1717
api 'com.azure:azure-core:1.46.0'
1818

19-
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.4'
20-
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.4'
21-
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.4'
22-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.4'
23-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.4'
24-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.4'
25-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.4'
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'
2626
}

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
2323
dependencies {
2424
// Include the sdk as a dependency
25-
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.5'
25+
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.6'
2626
// This dependency is only needed if you are using the TokenCredentialAuthProvider
2727
implementation 'com.azure:azure-identity:1.11.0'
2828
}
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph-core</artifactId>
40-
<version>3.1.5</version>
40+
<version>3.1.6</version>
4141
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4242
<groupId>com.azure</groupId>
4343
<artifactId>azure-identity</artifactId>

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 = 5;
17+
private static final int PATCH = 6;
1818
}
1919

2020
/**

0 commit comments

Comments
 (0)