Commit ad546e2
authored
feature #1053 Include optional params parameter for Commits compare method (mountiny)
This PR was merged into the 3.4.x-dev branch.
Discussion
----------
The Github compare API limits the response to only [250 commits](https://docs.github.com/en/rest/reference/commits#compare-two-commits). I have been testing this library and I have not been able to paginate the compare call without using the params array and adding the `per_page` key. Without it, I always got only 250 commits in the diff.
When the `$params` is included, I have managed to get paginate all the commits from the Github API.
Unfortunately, I cannot easily use the `all` call with the `since` parameter because I only have the base and head available.
I think this change would be valuable in general, it should not break any existing behaviour and it will enable pagination for compare calls.
Thank you very much for the review and considering this change, it would help a lot to our team.
Commits
-------
ed63fb6 Include optional params parameter for Commits compare1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
0 commit comments