Compare commits

...

5 Commits

Author SHA1 Message Date
Liam Newman
d667b2f822 [maven-release-plugin] prepare release github-api-1.101 2019-11-27 10:27:24 -08:00
Liam Newman
d7f511363d Merge pull request #627 from alecharp/fix-cache-control-packagename
Fixed CacheControl package name
2019-11-27 10:14:12 -08:00
Adrien Lecharpentier
39e7c5c3de 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.
2019-11-27 18:30:06 +01:00
Liam Newman
60acd5c864 Update CHANGELOG.md 2019-11-26 19:08:00 -08:00
Liam Newman
b92cf6fd35 [maven-release-plugin] prepare for next development iteration 2019-11-26 17:53:42 -08:00
3 changed files with 18 additions and 18 deletions

View File

@@ -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)

View File

@@ -8,7 +8,7 @@
</parent>
<artifactId>github-api</artifactId>
<version>1.100</version>
<version>1.101</version>
<name>GitHub API for Java</name>
<url>https://github-api.kohsuke.org/</url>
<description>GitHub API for Java</description>
@@ -17,7 +17,7 @@
<connection>scm:git:git@github.com/github-api/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://git@github.com/github-api/${project.artifactId}.git</developerConnection>
<url>https://${project.artifactId}.kohsuke.org/</url>
<tag>github-api-1.100</tag>
<tag>github-api-1.101</tag>
</scm>
<distributionManagement>

View File

@@ -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;