From 5970969087fb7cd986b225e18d1dc04e3c303831 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 12:57:49 +0000 Subject: [PATCH 1/3] Bump okhttp from 3.12.1 to 4.8.1 Bumps [okhttp](https://github.com/square/okhttp) from 3.12.1 to 4.8.1. - [Release notes](https://github.com/square/okhttp/releases) - [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/okhttp/compare/parent-3.12.1...parent-4.8.1) Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0f161d93f..6a415234c 100644 --- a/build.gradle +++ b/build.gradle @@ -33,7 +33,7 @@ dependencies { // Use JUnit test framework testImplementation 'junit:junit:4.13' - api 'com.squareup.okhttp3:okhttp:3.12.1' + api 'com.squareup.okhttp3:okhttp:4.8.1' // https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' From 69a56e5f4dbf96079e66370f74911ec8039bea8c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 17:15:06 +0000 Subject: [PATCH 2/3] Bump okhttp from 3.12.1 to 4.8.1 Bumps [okhttp](https://github.com/square/okhttp) from 3.12.1 to 4.8.1. - [Release notes](https://github.com/square/okhttp/releases) - [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/okhttp/compare/parent-3.12.1...parent-4.8.1) Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 22aa4e5b0..ac05d1689 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ dependencies { // Use JUnit test framework testImplementation 'junit:junit:4.13' - api 'com.squareup.okhttp3:okhttp:3.12.1' + api 'com.squareup.okhttp3:okhttp:4.8.1' // https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' From 4b6b59178ce863734359c539c3ba1ae121b929a4 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Mon, 24 Aug 2020 13:16:18 -0400 Subject: [PATCH 3/3] - fixes reference to ok http after upgrade --- .../com/microsoft/graph/httpcore/AuthenticationHandlerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/microsoft/graph/httpcore/AuthenticationHandlerTest.java b/src/test/java/com/microsoft/graph/httpcore/AuthenticationHandlerTest.java index 7f5feba6f..601cb4427 100644 --- a/src/test/java/com/microsoft/graph/httpcore/AuthenticationHandlerTest.java +++ b/src/test/java/com/microsoft/graph/httpcore/AuthenticationHandlerTest.java @@ -27,7 +27,7 @@ public void testAuthenticationHandler() { AuthenticationHandler authHandler = new AuthenticationHandler(authProvider); Request request = new Request.Builder().url("https://graph.microsoft.com/v1.0/me/").build(); - RealInterceptorChain chain = new RealInterceptorChain(null, null, null, null, 0, request, null, null, 0, 0, 0); + RealInterceptorChain chain = new RealInterceptorChain(null, null, 0, null, request, 0, 0, 0); try { authHandler.intercept(chain);