Skip to content

Commit b8ef1cc

Browse files
Merge pull request #653 from microsoftgraph/dev
Dev to Main
2 parents fe78afe + ef370ce commit b8ef1cc

Some content is hidden

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

46 files changed

+1540
-873
lines changed

.github/fabricbot.json

Lines changed: 628 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- uses: actions/setup-java@v3
2020
with:
2121
distribution: 'adopt'
22-
java-version: 17
22+
java-version: 18
2323
- name: Setup Android SDK
24-
uses: android-actions/[email protected].8
24+
uses: android-actions/[email protected].9
2525
- name: Add execution right to the script
2626
run: chmod +x gradlew
2727
working-directory: ./android

.github/workflows/build-and-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and Publish
22

33
on:
44
push:
5-
branches: [ dev , master ]
5+
branches: [ dev , master, v3/longTermBranch ]
66
paths-ignore:
77
- '.gradle/wrapper'
88
- '.gitignore'
@@ -15,7 +15,7 @@ env:
1515

1616
jobs:
1717
maven_Preview:
18-
if: ${{ github.ref == 'refs/heads/dev' }}
18+
if: ${{ github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/v3/longTermBranch'}}
1919
environment:
2020
name: maven_central_snapshot
2121
runs-on: ubuntu-latest
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up JDK
2727
uses: actions/setup-java@v3
2828
with:
29-
java-version: 17
29+
java-version: 18
3030
distribution: 'adopt'
3131
cache: gradle
3232
- name: Download file
@@ -58,7 +58,7 @@ jobs:
5858
- name: Set up JDK
5959
uses: actions/setup-java@v3
6060
with:
61-
java-version: 17
61+
java-version: 18
6262
distribution: 'adopt'
6363
cache: gradle
6464
- name: Download file
@@ -105,7 +105,7 @@ jobs:
105105
run: .\scripts\getLatestVersion.ps1
106106
shell: pwsh
107107
- name: Create tag
108-
uses: rickstaa/[email protected].2
108+
uses: rickstaa/[email protected].9
109109
with:
110110
tag: ${{ steps.GetVersion.outputs.tag }}
111111
- name: Queue Git Release

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/setup-java@v3
2727
with:
2828
distribution: 'adopt'
29-
java-version: 17
29+
java-version: 18
3030

3131
# If this run was triggered by a pull request event, then checkout
3232
# the head of the pull request instead of the merge commit.

.github/workflows/git-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Download Build Artifact
15-
uses: dawidd6/action-download-artifact@v2.19.0
15+
uses: dawidd6/action-download-artifact@v2.24.0
1616
with:
1717
workflow: build-and-publish.yml
1818
workflow_conclusion: success
@@ -21,7 +21,7 @@ jobs:
2121
name: drop
2222
path: drop
2323
- name: Github Release
24-
uses: anton-yurchenko/git-release@v4.2
24+
uses: anton-yurchenko/git-release@v5.0
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
2727
DRAFT_RELEASE: "false"

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up JDK
2020
uses: actions/setup-java@v3
2121
with:
22-
java-version: 17
22+
java-version: 18
2323
distribution: 'adopt'
2424
cache: gradle
2525
- name: Easy detect-secrets

.github/workflows/projectsbot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- name: Generate token
1212
id: generate_token
13-
uses: tibdex/github-app-token@36464acb844fc53b9b8b2401da68844f6b05ebb0
13+
uses: tibdex/github-app-token@f717b5ecd4534d3c4df4ce9b5c1c2214f0f7cd06
1414
with:
1515
app_id: ${{ secrets.GRAPHBOT_APP_ID }}
1616
private_key: ${{ secrets.GRAPHBOT_APP_PEM }}

.github/workflows/sample-build-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/setup-java@v3
1616
with:
1717
distribution: 'adopt'
18-
java-version: 17
18+
java-version: 18
1919
- name: Add execution right to the script
2020
run: chmod +x gradlew
2121
working-directory: ./samples/deviceCodeSample
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/setup-java@v3
3030
with:
3131
distribution: 'adopt'
32-
java-version: 17
32+
java-version: 18
3333
- name: Add execution right to the script
3434
run: chmod +x gradlew
3535
working-directory: ./samples/interactiveBrowserSample

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up JDK
2020
uses: actions/setup-java@v3
2121
with:
22-
java-version: 17
22+
java-version: 18
2323
distribution: 'adopt'
2424
cache: gradle
2525
- name: Cache SonarCloud packages

CHANGELOG.md

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

1212
### Changed
1313

14+
## [2.0.14] - 2022-10-06
15+
16+
### Added
17+
18+
### Changed
19+
20+
- Fixes an issue where the error code 'ErrorItemNotFound' is not accounted for. #606
21+
- Bumps azure-core to 1.32.0 #603, #604, #605
22+
- Bumps azure-identity to 1.6.0 #633, #635
23+
1424
## [2.0.13] - 2022-05-26
1525

1626
### Added

0 commit comments

Comments
 (0)