File tree 6 files changed +13
-6
lines changed
src/main/java/com/microsoft/graph/core
6 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 3.1.15 "
2
+ "." : " 3.1.16 "
3
3
}
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 3.1.16] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.15...v3.1.16 ) (2024-08-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Retain insertion order of batch request steps ([ 68c43c1] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/68c43c1371f77553afb2dbf9af370feaa5740c59 ) )
14
+
8
15
## [ 3.1.15] ( https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.14...v3.1.15 ) (2024-07-31)
9
16
10
17
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ repositories {
23
23
dependencies {
24
24
// Include the sdk as a dependency
25
25
// x-release-please-start-version
26
- implementation 'com.microsoft.graph:microsoft-graph-core:3.1.15 '
26
+ implementation 'com.microsoft.graph:microsoft-graph-core:3.1.16 '
27
27
// x-release-please-end
28
28
// This dependency is only needed if you are using the TokenCredentialAuthProvider
29
29
implementation 'com.azure:azure-identity:1.11.0'
@@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml
40
40
<groupId >com.microsoft.graph</groupId >
41
41
<artifactId >microsoft-graph-core</artifactId >
42
42
<!-- x-release-please-start-version-->
43
- <version >3.1.15 </version >
43
+ <version >3.1.16 </version >
44
44
<!-- x-release-please-end-->
45
45
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
46
46
<groupId >com.azure</groupId >
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ mavenMajorVersion = 3
30
30
mavenMinorVersion = 1
31
31
# x-release-please-end
32
32
# x-release-please-start-patch
33
- mavenPatchVersion = 15
33
+ mavenPatchVersion = 16
34
34
# x-release-please-end
35
35
mavenArtifactSuffix =
36
36
Original file line number Diff line number Diff line change 9
9
<groupId >com.microsoft.graph</groupId >
10
10
<artifactId >microsoft-graph-core</artifactId >
11
11
<!-- x-release-please-start-version-->
12
- <version >3.1.15 </version >
12
+ <version >3.1.16 </version >
13
13
<!-- x-release-please-end-->
14
14
<packaging >pom</packaging >
15
15
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ private static class VersionValues {
19
19
private static final int MINOR = 1 ;
20
20
// x-release-please-end
21
21
// x-release-please-start-patch
22
- private static final int PATCH = 15 ;
22
+ private static final int PATCH = 16 ;
23
23
// x-release-please-end
24
24
}
25
25
You can’t perform that action at this time.
0 commit comments