Skip to content

Commit

Permalink
Merge pull request #1527 from microsoftgraph/rsh/v316_bump
Browse files Browse the repository at this point in the history
Bump to 3.1.6
  • Loading branch information
baywet authored Feb 29, 2024
2 parents 5e0137b + e2cc79a commit 0873fa3
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [3.1.6] - 2024-02-29

### Changed

- Bumps Kiota-Java abstractions, authentication, http, and serialization components
- 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)

## [3.1.5] - 2024-02-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

dependencies {
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.16.2"
classpath "com.android.tools.build:gradle:8.2.2"
classpath "com.android.tools.build:gradle:8.3.0"
classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0"
}
}
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 = 5
mavenPatchVersion = 6
mavenArtifactSuffix =

#These values are used to run functional tests
Expand Down
14 changes: 7 additions & 7 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ dependencies {
api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'com.azure:azure-core:1.46.0'

api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.4'
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.5'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.5'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.5'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.5'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.5'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.5'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.5'
}
4 changes: 2 additions & 2 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.5'
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.6'
// 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.5</version>
<version>3.1.6</version>
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
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 = 5;
private static final int PATCH = 6;
}

/**
Expand Down

0 comments on commit 0873fa3

Please sign in to comment.