Migrate to Quarkus 3.8.6 and SDK 1.1.6
Compare changes
Files
25@@ -11,6 +11,17 @@
@@ -11,6 +11,17 @@
@@ -18,15 +29,9 @@ import jakarta.ws.rs.POST;
@@ -18,15 +29,9 @@ import jakarta.ws.rs.POST;
@@ -48,7 +53,7 @@ public interface GithubAPI {
@@ -48,7 +53,7 @@ public interface GithubAPI {
@@ -63,13 +68,12 @@ public interface GithubAPI {
@@ -63,13 +68,12 @@ public interface GithubAPI {
* Posts an update to the Github API, using an access token to update a given pull requests commit status, targeted
@@ -80,13 +84,13 @@ public interface GithubAPI {
@@ -80,13 +84,13 @@ public interface GithubAPI {
* Requires a JWT bearer token for the application to retrieve installations for. Returns a list of installations for
@@ -94,7 +98,8 @@ public interface GithubAPI {
@@ -94,7 +98,8 @@ public interface GithubAPI {
public Response getInstallations(@BeanParam BaseAPIParameters params, @HeaderParam(HttpHeaderNames.AUTHORIZATION) String bearer);
* Retrieves an access token for a specific installation, given the applications JWT bearer and the api version.
@@ -106,7 +111,7 @@ public interface GithubAPI {
@@ -106,7 +111,7 @@ public interface GithubAPI {
public GithubAccessToken getNewAccessToken(@HeaderParam(HttpHeaderNames.AUTHORIZATION) String bearer,
@HeaderParam("X-GitHub-Api-Version") String apiVersion, @PathParam("installationId") String installationId);
@@ -118,7 +123,6 @@ public interface GithubAPI {
@@ -118,7 +123,6 @@ public interface GithubAPI {