Skip to content

Commit cdc0ae8

Browse files
Merge branch 'main' into dependabot/gradle/com.microsoft.graph-microsoft-graph-core-3.6.5
2 parents af93bb1 + a3daaea commit cdc0ae8

File tree

581 files changed

+30494
-3895
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

581 files changed

+30494
-3895
lines changed

.github/workflows/api-level-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
working-directory: ./android
3232
- name: Upload linting results
3333
if: failure() && steps.lint.outcome == 'failure'
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v5
3535
with:
3636
name: lint-report
3737
path: ./android/build/reports

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
# Initializes the CodeQL tools for scanning.
5555
- name: Initialize CodeQL
56-
uses: github/codeql-action/init@v3
56+
uses: github/codeql-action/init@v4
5757
with:
5858
languages: ${{ matrix.language }}
5959
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -81,6 +81,6 @@ jobs:
8181
run: ./gradlew --no-build-cache build
8282

8383
- name: Perform CodeQL Analysis
84-
uses: github/codeql-action/analyze@v3
84+
uses: github/codeql-action/analyze@v4
8585
with:
8686
category: "/language:${{matrix.language}}"

.github/workflows/gradle-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
run: ./gradlew build
2828
- name: Upload Unit Test Results
2929
if: ${{ always() }}
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v5
3131
with:
3232
name: UnitTests
3333
path: |
3434
build/reports/tests/test/**
3535
build/test-results/**
3636
- name: Upload a Build Artifact
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v5
3838
with:
3939
name: drop
4040
path: |

.github/workflows/validate-public-api-surface.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
- name: Upload patch file as artifact
3737
if: always()
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
continue-on-error: true
4040
with:
4141
name: patch
4242
path: '*.patch'
4343
- name: Upload explanations file as artifact
4444
if: always()
45-
uses: actions/upload-artifact@v4
45+
uses: actions/upload-artifact@v5
4646
continue-on-error: true
4747
with:
4848
name: explanations

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.52.0"
2+
".": "6.55.0"
33
}

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [6.55.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.54.0...v6.55.0) (2025-10-21)
6+
7+
8+
### Features
9+
10+
* **generation:** update request builders and models ([4171605](https://github.com/microsoftgraph/msgraph-sdk-java/commit/4171605db5a78e2149f24fe2ebcef7f6b9bd246a))
11+
* **generation:** update request builders and models ([66d3364](https://github.com/microsoftgraph/msgraph-sdk-java/commit/66d3364f9b9837629ddf544388b5a50a98788054))
12+
13+
## [6.54.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.53.0...v6.54.0) (2025-10-03)
14+
15+
16+
### Features
17+
18+
* **generation:** update request builders and models ([4f4c23d](https://github.com/microsoftgraph/msgraph-sdk-java/commit/4f4c23df4fa0df7d5b3e43fbc69a4da80f2b66bb))
19+
20+
## [6.53.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.52.0...v6.53.0) (2025-09-16)
21+
22+
23+
### Features
24+
25+
* **generation:** update request builders and models ([946fb5f](https://github.com/microsoftgraph/msgraph-sdk-java/commit/946fb5fccb6690d4fea481555fda8db46e26b714))
26+
527
## [6.52.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.51.0...v6.52.0) (2025-09-11)
628

729

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
dependencies {
2121
// Include the sdk as a dependency
2222
// x-release-please-start-version
23-
implementation 'com.microsoft.graph:microsoft-graph:6.52.0'
23+
implementation 'com.microsoft.graph:microsoft-graph:6.55.0'
2424
// x-release-please-end
2525
// This dependency is only needed if you are using a TokenCredential object for authentication
2626
implementation 'com.azure:azure-identity:1.15.0'
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<groupId>com.microsoft.graph</groupId>
3838
<artifactId>microsoft-graph</artifactId>
3939
<!--x-release-please-start-version-->
40-
<version>6.52.0</version>
40+
<version>6.55.0</version>
4141
<!--x-release-please-end-->
4242
</dependency>
4343
<dependency>
@@ -99,24 +99,28 @@ For more detailed documentation, see:
9999
* [Known issues](https://github.com/MicrosoftGraph/msgraph-sdk-java/issues)
100100
* [Contributions](https://github.com/microsoftgraph/msgraph-sdk-java/blob/main/CONTRIBUTING.md)
101101

102-
## 5. Issues
102+
## 5. Update Schedule
103+
104+
The Microsoft Graph Java SDK is scheduled to be updated during the second and fourth week of each month
105+
106+
## 6. Issues
103107

104108
For known issues, see [issues](https://github.com/MicrosoftGraph/msgraph-sdk-java/issues).
105109

106-
## 6. Contributions
110+
## 7. Contributions
107111

108112
The Microsoft Graph SDK is open for contribution. To contribute to this project, see [Contributing](https://github.com/microsoftgraph/msgraph-sdk-java/blob/main/CONTRIBUTING.md).
109113

110-
## 7. Supported Java versions
114+
## 8. Supported Java versions
111115

112116
The Microsoft Graph SDK for Java library is supported at runtime for Java 8+ and [Android API revision 26](http://source.android.com/source/build-numbers.html) and greater.
113117

114118

115-
## 8. License
119+
## 9. License
116120

117121
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MIT license](LICENSE).
118122

119-
## 9. Third-party notices
123+
## 10. Third-party notices
120124

121125
[Third-party notices](THIRD%20PARTY%20NOTICES)
122126

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
dependencies {
99
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.2"
1010
classpath "gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE"
11-
classpath "com.github.ben-manes:gradle-versions-plugin:0.52.0"
11+
classpath "com.github.ben-manes:gradle-versions-plugin:0.53.0"
1212
classpath "com.android.tools.build:gradle:8.13.0"
1313
}
1414
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mavenArtifactId = microsoft-graph
2929
mavenMajorVersion = 6
3030
# x-release-please-end
3131
# x-release-please-start-minor
32-
mavenMinorVersion = 52
32+
mavenMinorVersion = 55
3333
# x-release-please-end
3434
# x-release-please-start-patch
3535
mavenPatchVersion = 0

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.microsoft.graph</groupId>
1010
<artifactId>microsoft-graph</artifactId>
11-
<version>6.52.0</version>
11+
<version>6.55.0</version>
1212
<packaging>pom</packaging>
1313

1414
<properties>
@@ -30,12 +30,12 @@
3030
<dependency>
3131
<groupId>com.microsoft.graph</groupId>
3232
<artifactId>microsoft-graph-core</artifactId>
33-
<version>3.6.4</version>
33+
<version>3.6.5</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.junit.jupiter</groupId>
3737
<artifactId>junit-jupiter-api</artifactId>
38-
<version>5.13.4</version>
38+
<version>6.0.0</version>
3939
<scope>test</scope>
4040
</dependency>
4141
<dependency>

0 commit comments

Comments
 (0)