Skip to content

Commit f61d598

Browse files
authored
Merge pull request #430 from microsoftgraph/dev
release 2.0.11
2 parents 683bd9c + 39261cd commit f61d598

37 files changed

+223
-59
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ updates:
55
schedule:
66
interval: daily
77
open-pull-requests-limit: 10
8+
- package-ecosystem: gradle
9+
directory: "/android"
10+
schedule:
11+
interval: daily
12+
open-pull-requests-limit: 10
13+
- package-ecosystem: gradle
14+
directory: "/samples/deviceCodeSample"
15+
schedule:
16+
interval: daily
17+
open-pull-requests-limit: 10
18+
- package-ecosystem: gradle
19+
directory: "/samples/interactiveBrowserSample"
20+
schedule:
21+
interval: daily
22+
open-pull-requests-limit: 10
823
- package-ecosystem: maven
924
directory: "/"
1025
schedule:

.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/[email protected]
1414
- name: Download Build Artifact
15-
uses: dawidd6/action-download-artifact@v2.15.0
15+
uses: dawidd6/action-download-artifact@v2.17.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.1
24+
uses: anton-yurchenko/git-release@v4.2
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
2727
DRAFT_RELEASE: "false"

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
with:
2222
java-version: 11
2323
- name: Cache SonarCloud packages
24-
uses: actions/[email protected].6
24+
uses: actions/[email protected].7
2525
with:
2626
path: ~/.sonar/cache
2727
key: ${{ runner.os }}-sonar
2828
restore-keys: ${{ runner.os }}-sonar
2929
- name: Cache Gradle packages
30-
uses: actions/[email protected].6
30+
uses: actions/[email protected].7
3131
with:
3232
path: ~/.gradle/caches
3333
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

CHANGELOG.md

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

1212
### Changed
1313

14+
## [2.0.11] - 2022-02-04
15+
16+
### Added
17+
18+
- Removing lock on Http protocol 1.1 in preparation for Graph service support of Http2 #429
19+
20+
### Changed
21+
22+
- Bumps Azure Core to 1.24.1 #408, #409, #410
23+
- Bumps mockito-inline to 4.3.1 #422, #423, #424
24+
- Bumps okhttp to 4.9.3 #371, #372
25+
- Bumps junit to 4.13.2 #391, #394
26+
- Bumps junit-jupiter-api to 5.8.2 #379, #382
27+
- Bumps junit-jupiter-egine to 5.8.2 #380
28+
- Bumps junit-jupiter-params to 5.8.2 #381, #383
29+
- Bumps gradle wrappers to 7.3.3 #426
30+
- Bumps gradle-versions-plugin to 0.42.0 in /android #428
31+
- Bumps gradle from 7.1.0 in /android #425
32+
- Bumps gradle-enterprise-gradle-plugin 3.8.1 in /android #413
33+
- Bumps dawidd6/action-download-artifact to 2.17.0 #427
34+
- Bumps com.github.spotbugs to 5.0.5 #416
35+
- Bumps spotbugs-annotations to 4.5.3 #407
36+
- Bumps azure-identity to 1.4.3 #411, #412
37+
- Bumps anton-yurchenko/git-release to 4.2 #378
38+
- Bumps actions/cache from to 2.1.7 #375
39+
1440
## [2.0.10] - 2021-11-16
1541

1642
### Added

android/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.6"
12-
classpath "com.android.tools.build:gradle:4.1.3"
13-
classpath "com.github.ben-manes:gradle-versions-plugin:0.36.0"
11+
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.8.1"
12+
classpath "com.android.tools.build:gradle:7.1.0"
13+
classpath "com.github.ben-manes:gradle-versions-plugin:0.42.0"
1414
}
1515
}
1616

@@ -23,13 +23,13 @@ apply plugin: "com.android.library"
2323
apply plugin: "com.github.ben-manes.versions"
2424

2525
android {
26-
compileSdkVersion 31
26+
compileSdkVersion 32
2727

2828
defaultConfig {
2929
versionCode 1
3030
versionName "1.0"
3131
minSdkVersion 26
32-
targetSdkVersion 31
32+
targetSdkVersion 32
3333
}
3434

3535
buildTypes {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
id 'maven-publish'
1515
id 'signing'
1616
id 'jacoco'
17-
id 'com.github.spotbugs' version '4.7.1'
17+
id 'com.github.spotbugs' version '5.0.5'
1818
id "org.sonarqube" version "3.3"
1919
}
2020

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525
mavenArtifactId = microsoft-graph-core
2626
mavenMajorVersion = 2
2727
mavenMinorVersion = 0
28-
mavenPatchVersion = 10
28+
mavenPatchVersion = 11
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
dependencies {
22
// Use JUnit test framework
3-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
4-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.1'
5-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
6-
testImplementation 'org.mockito:mockito-inline:4.0.0'
3+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
4+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
5+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
6+
testImplementation 'org.mockito:mockito-inline:4.3.1'
77

8-
api 'com.squareup.okhttp3:okhttp:4.9.2'
8+
api 'com.squareup.okhttp3:okhttp:4.9.3'
99

1010
implementation 'com.google.guava:guava:31.0.1-jre'
1111

1212
implementation 'com.google.code.gson:gson:2.8.9'
13-
api 'com.azure:azure-core:1.22.0'
13+
api 'com.azure:azure-core:1.24.1'
14+
15+
compileOnly 'net.jcip:jcip-annotations:1.0'
16+
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.5.3'
17+
testCompileOnly 'net.jcip:jcip-annotations:1.0'
18+
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.5.3'
1419
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)