Skip to content

Commit 2e374d8

Browse files
authored
Merge pull request #518 from microsoftgraph/dev
2.0.13
2 parents b4361e8 + e666efb commit 2e374d8

38 files changed

+90
-37
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
run: .\scripts\getLatestVersion.ps1
106106
shell: pwsh
107107
- name: Create tag
108-
uses: rickstaa/action-create-tag@v1.2.2
108+
uses: rickstaa/action-create-tag@v1.3.2
109109
with:
110110
tag: ${{ steps.GetVersion.outputs.tag }}
111111
- name: Queue Git Release

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535

3636
# Initializes the CodeQL tools for scanning.
3737
- name: Initialize CodeQL
38-
uses: github/codeql-action/init@v1
38+
uses: github/codeql-action/init@v2
3939
# Override language selection by uncommenting this and choosing your languages
4040
with:
4141
languages: java
4242

4343
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4444
# If this step fails, then you should remove it and run the build manually (see below)
4545
- name: Autobuild
46-
uses: github/codeql-action/autobuild@v1
46+
uses: github/codeql-action/autobuild@v2
4747

4848
# ℹ️ Command-line programs to run using the OS shell.
4949
# 📚 https://git.io/JvXDl
@@ -57,4 +57,4 @@ jobs:
5757
# make release
5858

5959
- name: Perform CodeQL Analysis
60-
uses: github/codeql-action/analyze@v1
60+
uses: github/codeql-action/analyze@v2

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.13] - 2022-05-26
15+
16+
### Added
17+
18+
### Changed
19+
20+
- Fixed an issue where the error message would be logged twice. #514
21+
- Bumps azure-core to 1.28.0 #503, #504, #506
22+
- Bumps azure-identity to 1.5.1 #505, #507
23+
1424
## [2.0.12] - 2022-04-22
1525

1626
### Added

android/build.gradle

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

1010
dependencies {
11-
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.10"
12-
classpath "com.android.tools.build:gradle:7.1.3"
11+
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.10.1"
12+
classpath "com.android.tools.build:gradle:7.2.1"
1313
classpath "com.github.ben-manes:gradle-versions-plugin:0.42.0"
1414
}
1515
}

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 '5.0.6'
17+
id 'com.github.spotbugs' version '5.0.7'
1818
id "org.sonarqube" version "3.3"
1919
}
2020

gradle/dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ dependencies {
1010
implementation 'com.google.guava:guava:31.1-jre'
1111

1212
implementation 'com.google.code.gson:gson:2.9.0'
13-
api 'com.azure:azure-core:1.27.0'
13+
api 'com.azure:azure-core:1.28.0'
1414

1515
compileOnly 'net.jcip:jcip-annotations:1.0'
16-
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.6.0'
16+
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.7.0'
1717
testCompileOnly 'net.jcip:jcip-annotations:1.0'
18-
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.5.3'
18+
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.7.0'
1919
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com.azure</groupId>
3737
<artifactId>azure-core</artifactId>
38-
<version>1.27.0</version>
38+
<version>1.28.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.junit.jupiter</groupId>

samples/deviceCodeSample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ repositories {
1212
dependencies {
1313
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
1414
implementation project(':coreLibrary')
15-
implementation 'com.azure:azure-identity:1.5.0'
15+
implementation 'com.azure:azure-identity:1.5.1'
1616
}

samples/interactiveBrowserSample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ repositories {
1212
dependencies {
1313
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
1414
implementation project(':coreLibrary')
15-
implementation 'com.azure:azure-identity:1.5.0'
15+
implementation 'com.azure:azure-identity:1.5.1'
1616
}

src/main/java/com/microsoft/graph/http/CoreHttpProvider.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import com.microsoft.graph.httpcore.middlewareoption.RedirectOptions;
2929
import com.microsoft.graph.httpcore.middlewareoption.RetryOptions;
3030
import com.microsoft.graph.logger.ILogger;
31-
import com.microsoft.graph.logger.LoggerLevel;
3231
import com.microsoft.graph.options.HeaderOption;
3332
import com.microsoft.graph.serializer.ISerializer;
3433

@@ -489,8 +488,7 @@ private <Result, Body, DeserializeType> Result processResponse(final Response re
489488
}
490489
}
491490
} catch (final GraphServiceException ex) {
492-
final boolean shouldLogVerbosely = logger.getLoggingLevel() == LoggerLevel.DEBUG;
493-
logger.logError("Graph service exception " + ex.getMessage(shouldLogVerbosely), ex);
491+
logger.logError("Graph service exception", ex);
494492
throw ex;
495493
} catch (final Exception ex) {
496494
final ClientException clientException = new ClientException("Error during http request",

0 commit comments

Comments
 (0)