Skip to content

Commit 683bd9c

Browse files
authored
Merge pull request #369 from microsoftgraph/dev
2.0.10 Release
2 parents b38f034 + 6a6b5c7 commit 683bd9c

31 files changed

+780
-490
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
lint-api-level:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2.3.4
18+
- uses: actions/checkout@v2.4.0
1919
- uses: actions/setup-java@v2
2020
with:
2121
distribution: 'adopt'
22-
java-version: 16
22+
java-version: 17
2323
- name: Setup Android SDK
2424
uses: android-actions/[email protected]
2525
- name: Add execution right to the script

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

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@ name: Build and Publish
33
on:
44
push:
55
branches: [ dev , master ]
6-
paths:
7-
- 'src/**'
8-
- '.github/**'
9-
- '!.gradle/wrapper'
10-
- '!.gitignore'
11-
- '!LICENSE'
12-
- '!THIRD PARTY NOTICES'
13-
- '!*.md'
14-
- '*.gradle'
6+
paths-ignore:
7+
- '.gradle/wrapper'
8+
- '.gitignore'
9+
- 'LICENSE'
10+
- 'THIRD PARTY NOTICES'
11+
- '*.md'
1512
env:
1613
PREVIEW_TASK: publishSnapshotPublicationToSonatypeSnapshotRepository
1714
PUBLISH_TASK: publishMavenCentralReleasePublicationToSonatypeRepository
@@ -23,13 +20,13 @@ jobs:
2320
name: maven_central_snapshot
2421
runs-on: ubuntu-latest
2522
steps:
26-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v2.4.0
2724
- name: Easy detect-secrets
2825
uses: RobertFischer/[email protected]
2926
- name: Set up JDK
3027
uses: actions/setup-java@v2
3128
with:
32-
java-version: '16'
29+
java-version: 17
3330
distribution: 'adopt'
3431
cache: gradle
3532
- name: Download file
@@ -55,13 +52,13 @@ jobs:
5552
name: maven_central_release
5653
runs-on: ubuntu-latest
5754
steps:
58-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v2.4.0
5956
- name: Easy detect-secrets
6057
uses: RobertFischer/[email protected]
6158
- name: Set up JDK
6259
uses: actions/setup-java@v2
6360
with:
64-
java-version: '16'
61+
java-version: 17
6562
distribution: 'adopt'
6663
cache: gradle
6764
- name: Download file
@@ -102,7 +99,7 @@ jobs:
10299
env:
103100
RELEASE_TAG: ""
104101
steps:
105-
- uses: actions/checkout@v2
102+
- uses: actions/checkout@v2.4.0
106103
- name: Get Version
107104
id: GetVersion
108105
run: .\scripts\getLatestVersion.ps1

.github/workflows/codeql-analysis.yml

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

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v2.3.4
20+
uses: actions/checkout@v2.4.0
2121
with:
2222
# We must fetch at least the immediate parents so that if this is
2323
# a pull request then we can checkout the head.
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/setup-java@v2
2727
with:
2828
distribution: 'adopt'
29-
java-version: 16
29+
java-version: 17
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
@@ -10,9 +10,9 @@ jobs:
1010
Git_Release:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v2.4.0
1414
- name: Download Build Artifact
15-
uses: dawidd6/action-download-artifact@v2.14.1
15+
uses: dawidd6/action-download-artifact@v2.15.0
1616
with:
1717
workflow: build-and-publish.yml
1818
workflow_conclusion: success

.github/workflows/gradle-build.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,23 @@ name: Java CI with Gradle
33
on:
44
pull_request:
55
branches: [ dev, master ]
6-
paths:
7-
- 'src/**'
8-
- '.github/**'
9-
- '!.gradle/wrapper'
10-
- '!.gitignore'
11-
- '!LICENSE'
12-
- '!THIRD PARTY NOTICES'
13-
- '!*.md'
14-
- '*.gradle'
6+
paths-ignore:
7+
- '.gradle/wrapper'
8+
- '.gitignore'
9+
- 'LICENSE'
10+
- 'THIRD PARTY NOTICES'
11+
- '*.md'
1512
workflow_dispatch:
1613

1714
jobs:
1815
build:
1916
runs-on: ubuntu-latest
2017
steps:
21-
- uses: actions/checkout@v2
22-
- name: Set up JDK 16
18+
- uses: actions/checkout@v2.4.0
19+
- name: Set up JDK
2320
uses: actions/setup-java@v2
2421
with:
25-
java-version: '16'
22+
java-version: 17
2623
distribution: 'adopt'
2724
cache: gradle
2825
- name: Easy detect-secrets

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
samples-build-check-device-code:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2.3.4
14+
- uses: actions/checkout@v2.4.0
1515
- uses: actions/setup-java@v2
1616
with:
1717
distribution: 'adopt'
18-
java-version: 16
18+
java-version: 17
1919
- name: Add execution right to the script
2020
run: chmod +x gradlew
2121
working-directory: ./samples/deviceCodeSample
@@ -25,11 +25,11 @@ jobs:
2525
samples-build-check-interactive:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2.3.4
28+
- uses: actions/checkout@v2.4.0
2929
- uses: actions/setup-java@v2
3030
with:
3131
distribution: 'adopt'
32-
java-version: 16
32+
java-version: 17
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
@@ -13,7 +13,7 @@ jobs:
1313
name: Build
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v2.4.0
1717
with:
1818
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1919
- name: Set up JDK 11

CHANGELOG.md

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

1212
### Changed
1313

14+
## [2.0.10] - 2021-11-16
15+
16+
### Added
17+
18+
- Added support for cancelling requests #361
19+
20+
### Changed
21+
22+
- Fixed a bug where batching would fail for national clouds
23+
- Bumps Azure Core from 1.20.0 to 1.22.0 #359, #360, #341, #342
24+
- Bumps gson from 2.8.8 to 2.8.9 #356, #355
25+
- Bumps actions/checkout from 2.3.5 to 2.4.0 #358, #349
26+
- Upgrades CI pipeline to Java 17 #348, #330
27+
- Bumps mockito-inline from 3.12.4 to 4.0.0 #346, #345
28+
- Bumps action-download-artifact from 2.14.1 to 2.15.0 #344
29+
- Bumps okhttp from 4.9.1 to 4.9.2 #339, #340
30+
- Bumps guava from 30.1.1 to 31.0.1 #338, #337, #335, #336
31+
- Bumps junit-jupiter-api from 5.8.0 to 5.8.1 #332, #334
32+
- Bumps junit-jupiter-egine from 5.8.0 to 5.8.1 #333
33+
1434
## [2.0.9] - 2021-09-17
1535

1636
### Added

android/gradle.properties

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

1010
# Specifies the JVM arguments used for the daemon process.
1111
# The setting is particularly useful for tweaking memory settings.
12-
# Default value: -Xmx10248m -XX:MaxPermSize=256m
13-
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
12+
# Default value: -Xmx10248m
13+
# org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
1414

1515
# When configured, Gradle will run in incubating parallel mode.
1616
# This option should only be used with decoupled projects. More details, visit
@@ -19,7 +19,7 @@
1919

2020
# The size of the library demands a large amount of RAM to build. Increase as necessary if you get GC errors
2121
## linux requires 10G, OSX requires 11G
22-
org.gradle.jvmargs=-XX:MaxPermSize=512m -Xmx2g
22+
org.gradle.jvmargs=-Xmx2g
2323
org.gradle.parallel=true
2424
org.gradle.caching=true
2525

333 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)