Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [2.0.14] - 2022-10-06

### Added

### Changed

- Fixes an issue where the error code 'ErrorItemNotFound' is not accounted for. #606
- Bumps azure-core to 1.32.0 #603, #604, #605
- Bumps azure-identity to 1.6.0 #633, #635

## [2.0.13] - 2022-05-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph-core
mavenMajorVersion = 2
mavenMinorVersion = 0
mavenPatchVersion = 13
mavenPatchVersion = 14
mavenArtifactSuffix =

#These values are used to run functional tests
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/microsoft/graph/core/GraphErrorCodes.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ public enum GraphErrorCodes {
AUTHENTICATION_FAILURE,
/** An unspecified error has occurred. */
GENERAL_EXCEPTION,
/** The resource could not be found, specific to the Exchange workload. */
ERROR_ITEM_NOT_FOUND,
/** The specified byte range is invalid or unavailable. */
INVALID_RANGE,
/** The request is malformed or incorrect. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class TelemetryHandler implements Interceptor{
/**
* Current SDK version
*/
public static final String VERSION = "v2.0.13";
public static final String VERSION = "v2.0.14";
/**
* Verion prefix
*/
Expand Down