Kohsuke Kawaguchi
5d5c6cf71c
[maven-release-plugin] prepare release github-api-1.79
github-api-1.79
2016-10-24 19:23:14 -07:00
Kohsuke Kawaguchi
89aac45f41
Merge pull request #299
2016-10-24 19:15:46 -07:00
Kohsuke Kawaguchi
4965fd5f4c
Noting possible TODO for the future
2016-10-24 19:15:38 -07:00
Kohsuke Kawaguchi
87fbb8ec98
Copy/paste error
2016-10-24 19:07:32 -07:00
Kohsuke Kawaguchi
0d92d4ba61
[maven-release-plugin] prepare for next development iteration
2016-10-24 14:10:35 -07:00
Kohsuke Kawaguchi
b0df93bbcb
[maven-release-plugin] prepare release github-api-1.78
github-api-1.78
2016-10-24 14:10:30 -07:00
Kohsuke Kawaguchi
290d0b226a
Merge pull request #295 from jglick/pageSize
...
Use maximum permitted page size
2016-10-24 14:04:05 -07:00
Kohsuke Kawaguchi
8b3469610c
Merge pull request #300 from stephenc/commit-dates
...
Expose the commit dates
2016-10-24 14:03:14 -07:00
Stephen Connolly
50b47fb73b
Expose the commit dates
2016-10-24 21:12:56 +01:00
Ben Sheats
5334cb8688
url encode hashes in ref names
2016-10-21 11:40:01 -04:00
Jesse Glick
38983df42d
If we are a returning a collection of all things, we might as well use the maximum page size to minimize HTTP requests.
2016-09-19 09:48:23 -07:00
Kohsuke Kawaguchi
df963cb71c
[maven-release-plugin] prepare for next development iteration
2016-08-05 21:32:15 -07:00
Kohsuke Kawaguchi
e9368fb04e
[maven-release-plugin] prepare release github-api-1.77
github-api-1.77
2016-08-05 21:32:10 -07:00
Kohsuke Kawaguchi
e2a1630cf4
findbug taming
2016-08-05 21:28:54 -07:00
Kohsuke Kawaguchi
4f15b7c9fa
NPE fix. type can be null
2016-08-05 21:19:32 -07:00
Kohsuke Kawaguchi
63f500ad7f
Fixed issue #286
...
List commit API (https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository ) already populates short info, and so populate() call could be excessive.
It's possible that the short info is always available and therefore there's never a need to call populate(), but that assumption is hard to test, so I'm leaving that in
2016-08-05 21:11:00 -07:00
Kohsuke Kawaguchi
a9fb4546e1
Constants for preview media types
2016-08-05 20:56:11 -07:00
Kohsuke Kawaguchi
cabbbf7f02
Handle 404 that represents "no license"
2016-08-05 20:50:39 -07:00
Kohsuke Kawaguchi
59324b0082
Add preview media type header explicitly
2016-08-05 20:47:08 -07:00
Kohsuke Kawaguchi
6a356c82a5
Fixed up tests
2016-08-05 20:44:45 -07:00
Kohsuke Kawaguchi
70f0f5714a
While a use of custom HttpConnector is clever, it doesn't fit the current idiom of this library.
2016-08-05 20:44:10 -07:00
Kohsuke Kawaguchi
07b527a0f2
Enumeration in GitHub should be PagedIterable
2016-08-05 20:40:34 -07:00
Kohsuke Kawaguchi
80aa75aab1
Added the wrap() method for a backpointer
2016-08-05 20:40:23 -07:00
Kohsuke Kawaguchi
0cf4211aa5
Merged GHLicense & GHLicenseBase
...
Elsewhere in this library, whenever there are multiple forms of the same
object, we map that to the same class and use lazy data retrieval to
fill missing fields.
2016-08-05 20:36:46 -07:00
Kohsuke Kawaguchi
1de02a5099
Added a marker for preview APIs
2016-08-05 20:19:36 -07:00
Duncan Dickinson
bb1cecb95b
PR-284: license API support
...
Had to do git-diff | git-apply to avoid whitespe changes to GHRepository
2016-08-05 20:11:33 -07:00
Kohsuke Kawaguchi
d82397a173
doc fix
2016-08-05 20:00:05 -07:00
Kohsuke Kawaguchi
856cf5e568
Better type safety by splitting RateLimitHandler and AbuseLimitHandler
...
While the signature is the same, headers that they expect are different,
so any non-trivial logic cannot be reused.
2016-08-05 19:58:04 -07:00
Matt Mitchell
9f5a6ee549
Implement an abuse handler
...
If too many requests are made within X amount of time (not the traditional hourly rate limit), github may begin returning 403. Then we should wait for a bit to attempt to access the API again. In this case, we parse out the Retry-After field returned and sleep until that (it's usually 60 seconds)
2016-07-22 13:16:12 -07:00
Kohsuke Kawaguchi
a2f0837d14
Issue #279 : added another overload that takes permission
2016-06-03 20:56:17 -07:00
Kohsuke Kawaguchi
c7f6889534
Issue #258 : updated OkHttp that handles Cache control headers better
2016-06-03 20:31:12 -07:00
Kohsuke Kawaguchi
0415326d09
Issue #261 : handle 204 no content correctly
2016-06-03 20:27:29 -07:00
Kohsuke Kawaguchi
16a0f8ece0
[maven-release-plugin] prepare for next development iteration
2016-06-03 00:19:15 -07:00
Kohsuke Kawaguchi
5d1ef296b3
[maven-release-plugin] prepare release github-api-1.76
github-api-1.76
2016-06-03 00:19:09 -07:00
Kohsuke Kawaguchi
16dbcde90b
Shut up FindBugs!
2016-06-03 00:16:20 -07:00
Kohsuke Kawaguchi
50cbf25c72
Shut up FindBugs
2016-06-03 00:09:25 -07:00
Kohsuke Kawaguchi
7b87de2b4c
Giving it a bit of delay in the hope that it removes flakiness of tests
2016-06-03 00:04:36 -07:00
Kohsuke Kawaguchi
1ce54a7925
Bug fix in toString()
2016-06-02 23:55:55 -07:00
Kohsuke Kawaguchi
1bfe7dd99b
Issue #264 : wait for the repo to finish forking
2016-06-02 23:50:18 -07:00
Kohsuke Kawaguchi
27e855ddbd
Issue 262: added support for branch protection API
2016-06-02 23:40:37 -07:00
Kohsuke Kawaguchi
3d1bed0f8f
In JDK I'm using (Java8), I get a delegating HttpURLConnection that breaks the hack to set the method.
...
This change makes this hack even worse, but this is the only way I can think of, since I cannot update HttpURLConnection.methods that is static final.
2016-06-02 23:40:14 -07:00
Kohsuke Kawaguchi
5c9ea9b63a
Added a fluent version
2016-06-02 23:27:52 -07:00
Kohsuke Kawaguchi
7c034f5670
Doc improvement
2016-06-02 22:43:58 -07:00
Kohsuke Kawaguchi
3b9f5a417a
Formatting changes
2016-06-02 22:43:06 -07:00
Kohsuke Kawaguchi
cde501af8d
More meaningful toString() method
...
Produce toString without dilligently adding it to every single class.
Rely on heuristics to cut down the number of fields to show.
2016-06-02 22:38:38 -07:00
Kohsuke Kawaguchi
3c5592c1c8
Following the convention with GHMyself.getEmails2()
...
This way the method is more discoverable with IDE auto-completion
2016-06-02 22:05:24 -07:00
Kohsuke Kawaguchi
2508e022bb
Merge pull request #272 from noctarius/master
...
Added support for the extended stargazers API in Github V3 API
2016-06-03 14:04:24 +09:00
Kohsuke Kawaguchi
01fcbc24e8
Merge pull request #282 from apemberton/org-fix
...
related to JENKINS-34834. updating test for similar condition
2016-06-03 13:52:26 +09:00
Kohsuke Kawaguchi
204e639679
Merge pull request #281 from apemberton/master
...
Add Slug to GHTeam per v3 API: https://developer.github.com/v3/orgs/t…
2016-06-03 13:51:47 +09:00
Kohsuke Kawaguchi
3d301ec730
Merge pull request #278 from jglick/javadoc
...
Fixed broken link
2016-06-03 13:50:37 +09:00