From b92cf6fd35acb2eeee5040bb33ef1fa7839748bd Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Tue, 26 Nov 2019 17:53:42 -0800 Subject: [PATCH 1/4] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f5e1fb4e77..300e44a944 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ github-api - 1.100 + 1.101-SNAPSHOT GitHub API for Java https://github-api.kohsuke.org/ GitHub API for Java @@ -17,7 +17,7 @@ scm:git:git@github.com/github-api/${project.artifactId}.git scm:git:ssh://git@github.com/github-api/${project.artifactId}.git https://${project.artifactId}.kohsuke.org/ - github-api-1.100 + HEAD From 60acd5c864180c2a9e4c482877138a050a17097e Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Tue, 26 Nov 2019 19:08:00 -0800 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 151a5f6da2..28ae84661e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,24 +6,24 @@ ### Features and Fixes -- Add method to set repository topics @martinvanzijl (#594) -- Adjust GHRateLimit to system time instead of depending on synchronization @bitwiseman (#595) -- Add Functionality of OTP to support user 2fa @madhephaestus (#603) -- Implement Meta endpoint @PauloMigAlmeida (#611) -- fix and unit tests for issue #504 @siordache (#620) -- Fixed GHContent to allow spaces in path @bitwiseman (#625) +- Add method to set repository topics @martinvanzijl [\#594](https://github.com/github-api/github-api/issues/594) +- Adjust GHRateLimit to system time instead of depending on synchronization @bitwiseman [#595](https://github.com/github-api/github-api/issues/595) +- Add Functionality of OTP to support user 2fa @madhephaestus [\#603](https://github.com/github-api/github-api/issues/603) +- Implement Meta endpoint @PauloMigAlmeida [\#611](https://github.com/github-api/github-api/issues/611) +- fix and unit tests for issue #504 @siordache [\#620](https://github.com/github-api/github-api/issues/620) +- Fixed GHContent to allow spaces in path @bitwiseman [\#625](https://github.com/github-api/github-api/issues/625) ### Internals -- Clean up Requester interface a bit @bitwiseman (#614) -- Javadoc fail on warning during CI build @bitwiseman (#613) -- Code style fixes @bitwiseman (#609) -- Re-enable Lifecycle test @bitwiseman (#621) -- Removed permission field in createTeam. It is deprecated in the API @asthinasthi (#619) -- Cleanup imports @bitwiseman (#616) -- Branch missing @alexanderrtaylor (#615) -- jackson 2.10.1 @sullis (#604) -- Bump okhttp from 3.14.2 to 4.2.2 @dependabot-preview (#593) +- Bump okhttp3 from 3.14.2 to 4.2.2 @dependabot-preview [\#593](https://github.com/github-api/github-api/issues/593) +- jackson 2.10.1 @sullis [\#604](https://github.com/github-api/github-api/issues/604) +- Code style fixes @bitwiseman [\#609](https://github.com/github-api/github-api/issues/609) +- Javadoc fail on warning during CI build @bitwiseman [\#613](https://github.com/github-api/github-api/issues/613) +- Clean up Requester interface a bit @bitwiseman [\#614](https://github.com/github-api/github-api/issues/614) +- Branch missing @alexanderrtaylor [\#615](https://github.com/github-api/github-api/issues/615) +- Cleanup imports @bitwiseman [\#616](https://github.com/github-api/github-api/issues/616) +- Removed permission field in createTeam. It is deprecated in the API @asthinasthi [\#619](https://github.com/github-api/github-api/issues/619) +- Re-enable Lifecycle test @bitwiseman [\#621](https://github.com/github-api/github-api/issues/621) ## [github-api-1.99](https://github.com/github-api/github-api/tree/github-api-1.99) (2019-11-04) From 39e7c5c3de24f5f4b1e119c993d6588abfbf016a Mon Sep 17 00:00:00 2001 From: Adrien Lecharpentier Date: Wed, 27 Nov 2019 18:30:06 +0100 Subject: [PATCH 3/4] Fixed CacheControl package name With okhttp 3, the package name changed. In the okhttp3.OkHttpConnector, the incorrect class is loaded, creating a ClassNotFoundException at runtime when okhttp3 only is loaded. --- .../java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java b/src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java index ebfc09ad6e..823b2a09cd 100644 --- a/src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java +++ b/src/main/java/org/kohsuke/github/extras/okhttp3/OkHttpConnector.java @@ -1,6 +1,6 @@ package org.kohsuke.github.extras.okhttp3; -import com.squareup.okhttp.CacheControl; +import okhttp3.CacheControl; import okhttp3.ConnectionSpec; import okhttp3.OkHttpClient; import org.kohsuke.github.HttpConnector; From d667b2f8224144e6ce4c4901d813a8c2448404cd Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Wed, 27 Nov 2019 10:27:24 -0800 Subject: [PATCH 4/4] [maven-release-plugin] prepare release github-api-1.101 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 300e44a944..ba5385ef4d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ github-api - 1.101-SNAPSHOT + 1.101 GitHub API for Java https://github-api.kohsuke.org/ GitHub API for Java @@ -17,7 +17,7 @@ scm:git:git@github.com/github-api/${project.artifactId}.git scm:git:ssh://git@github.com/github-api/${project.artifactId}.git https://${project.artifactId}.kohsuke.org/ - HEAD + github-api-1.101