File tree Expand file tree Collapse file tree 8 files changed +24
-13
lines changed
src/main/java/com/microsoft/graph/httpcore Expand file tree Collapse file tree 8 files changed +24
-13
lines changed Original file line number Diff line number Diff line change 1010 steps :
1111 - name : Generate token
1212 id : generate_token
13- uses : tibdex/github-app-token@021a2405c7f990db57f5eae5397423dcc554159c
13+ uses : tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
1414 with :
1515 app_id : ${{ secrets.GRAPHBOT_APP_ID }}
1616 private_key : ${{ secrets.GRAPHBOT_APP_PEM }}
Original file line number Diff line number Diff line change @@ -11,6 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
1212### Changed
1313
14+ ## [ 2.0.16] - 2023-01-30
15+
16+ ### Changed
17+
18+ - Removed unnecessary ` net.jcip:jcip-annotations ` dependency causing conflicts with Azure Identity.
19+
20+ ## [ 2.0.15] - 2023-01-19
21+
22+ ### Changed
23+
24+ - Switched required dependencies from implementation to api to avoid missing dependencies in some scenarios.
25+
1426## [ 2.0.14] - 2022-10-06
1527
1628### Added
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
88 }
99
1010 dependencies {
11- classpath " com.gradle:gradle-enterprise-gradle-plugin:3.12.2 "
11+ classpath " com.gradle:gradle-enterprise-gradle-plugin:3.12.3 "
1212 classpath " com.android.tools.build:gradle:7.4.0"
1313 classpath " com.github.ben-manes:gradle-versions-plugin:0.44.0"
1414 }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525mavenArtifactId = microsoft-graph-core
2626mavenMajorVersion = 2
2727mavenMinorVersion = 0
28- mavenPatchVersion = 15
28+ mavenPatchVersion = 16
2929mavenArtifactSuffix =
3030
3131# These values are used to run functional tests
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ dependencies {
33 testImplementation ' org.junit.jupiter:junit-jupiter-api:5.9.2'
44 testImplementation ' org.junit.jupiter:junit-jupiter-params:5.9.2'
55 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.9.2'
6- testImplementation ' org.mockito:mockito-inline:5.0.0 '
6+ testImplementation ' org.mockito:mockito-inline:5.1.1 '
77
88 api ' com.squareup.okhttp3:okhttp:4.10.0'
99
@@ -12,6 +12,5 @@ dependencies {
1212 implementation ' com.google.code.gson:gson:2.10.1'
1313 api ' com.azure:azure-core:1.35.0'
1414
15- api ' net.jcip:jcip-annotations:1.0'
1615 api ' com.github.spotbugs:spotbugs-annotations:4.7.3'
1716}
Original file line number Diff line number Diff line change 5252 <dependency >
5353 <groupId >org.mockito</groupId >
5454 <artifactId >mockito-inline</artifactId >
55- <version >5.0.0 </version >
55+ <version >5.1.1 </version >
5656 <scope >test</scope >
5757 </dependency >
5858 <dependency >
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ repositories {
2222
2323dependencies {
2424 // Include the sdk as a dependency
25- implementation 'com.microsoft.graph:microsoft-graph-core:2.0.12 '
26- // This dependency is only needed if you are using the TokenCrendentialAuthProvider
27- implementation 'com.azure:azure-identity:1.3.1 '
25+ implementation 'com.microsoft.graph:microsoft-graph-core:2.0.16 '
26+ // This dependency is only needed if you are using the TokenCredentialAuthProvider
27+ implementation 'com.azure:azure-identity:1.7.2 '
2828}
2929```
3030
@@ -37,11 +37,11 @@ Add the dependency in `dependencies` in pom.xml
3737 <!-- Include the sdk as a dependency -->
3838 <groupId >com.microsoft.graph</groupId >
3939 <artifactId >microsoft-graph-core</artifactId >
40- <version >2.0.12 </version >
41- <!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
40+ <version >2.0.16 </version >
41+ <!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4242 <groupId >com.azure</groupId >
4343 <artifactId >azure-identity</artifactId >
44- <version >1.3.1 </version >
44+ <version >1.7.2 </version >
4545</dependency >
4646```
4747
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class TelemetryHandler implements Interceptor{
2424 /**
2525 * Current SDK version
2626 */
27- public static final String VERSION = "v2.0.15 " ;
27+ public static final String VERSION = "v2.0.16 " ;
2828 /**
2929 * Version prefix
3030 */
You can’t perform that action at this time.
0 commit comments