Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | docs: remove v3 supportno-more-v3 | Gauvain Pocentek | 2019-06-08 | 1 | -6/+1 |
| | |||||
* | fix(api): avoid parameter conflicts with python and gitlabno-param-conflicts | Gauvain Pocentek | 2019-01-13 | 1 | -0/+19 |
| | | | | | | | | | | Provide another way to send data to gitlab with a new `query_parameters` argument. This parameter can be used to explicitly define the dict of items to send to the server, so that **kwargs are only used to specify python-gitlab specific parameters. Closes #566 Closes #629 | ||||
* | fix: handle empty 'Retry-After' header from GitLab | Srikanth Chelluri | 2019-01-08 | 1 | -1/+15 |
| | | | | | | | | | When requests are throttled (HTTP response code 429), python-gitlab assumed that 'Retry-After' existed in the response headers. This is not always the case and so the request fails due to a KeyError. The change in this commit adds a rudimentary exponential backoff to the 'http_request' method, which defaults to 10 retries but can be set to -1 to retry without bound. | ||||
* | [docs] add a warning about https:// | Gauvain Pocentek | 2018-09-05 | 1 | -0/+5 |
| | | | | | http to https redirection cause problems. Make notes of this in the docs. | ||||
* | [docs] fix cut and paste leftover | Gauvain Pocentek | 2018-09-05 | 1 | -1/+1 |
| | |||||
* | [docs] Fix the owned/starred usage documentation | Gauvain Pocentek | 2018-09-04 | 1 | -1/+1 |
| | | | | Closes #579 | ||||
* | Minor doc updates | Gauvain Pocentek | 2018-08-25 | 1 | -4/+4 |
| | |||||
* | Correct session example | Stefan Crain | 2018-06-13 | 1 | -1/+1 |
| | |||||
* | Document the global per_page setting | Gauvain Pocentek | 2018-05-26 | 1 | -0/+7 |
| | |||||
* | Drop API v3 support | Gauvain Pocentek | 2018-05-19 | 1 | -69/+23 |
| | | | | Drop the code, the tests, and update the documentation. | ||||
* | api-usage: bit more detail for listing with `all` | Gauvain Pocentek | 2018-05-11 | 1 | -9/+10 |
| | |||||
* | docs(api-usage): add rate limit documentation | Max Wittig | 2018-04-18 | 1 | -0/+23 |
| | |||||
* | Fix typos in documentation | Jakub Wilk | 2018-03-03 | 1 | -2/+2 |
| | |||||
* | Default to API v4 | Gauvain Pocentek | 2018-02-05 | 1 | -7/+5 |
| | |||||
* | Gitlab can be used as context manager | Gauvain Pocentek | 2018-02-05 | 1 | -0/+17 |
| | | | | Fixes #371 | ||||
* | [docs] Add a note about password auth being removed from GitLab | Gauvain Pocentek | 2017-12-16 | 1 | -2/+17 |
| | | | | | | | Provide a code snippet demonstrating how to use cookie-based authentication. Fixes #380 | ||||
* | Update pagination docs for ProjectCommit | Gauvain Pocentek | 2017-12-11 | 1 | -1/+1 |
| | | | | | | In v3 pagination starts at page 0 instead of page 1. Fixes: #377 | ||||
* | Rework authentication args handling | Gauvain Pocentek | 2017-11-10 | 1 | -2/+8 |
| | | | | | | | | * Raise exceptions when conflicting arguments are used * Build the auth headers when instanciating Gitlab, not on each request * Enable anonymous Gitlab objects (#364) Add docs and unit tests | ||||
* | [doc] Add sample code for client-side certificates | Gauvain Pocentek | 2017-11-03 | 1 | -0/+23 |
| | | | | Closes #23 | ||||
* | Pagination generators: expose more information | Gauvain Pocentek | 2017-11-01 | 1 | -0/+9 |
| | | | | | | | Expose the X-* pagination attributes returned by the Gitlab server when requesting lists. Closes #304 | ||||
* | Document the Gitlab session parameter | Gauvain Pocentek | 2017-10-21 | 1 | -0/+24 |
| | | | | | | Provide a proxy setup example. Closes #341 | ||||
* | [docs] document `get_create_attrs` in the API tutorial | Gauvain Pocentek | 2017-10-21 | 1 | -27/+36 |
| | |||||
* | Improve the docs to make v4 a first class citizen | Gauvain Pocentek | 2017-09-07 | 1 | -19/+75 |
| | |||||
* | Add v4 support to docs | Gauvain Pocentek | 2017-05-24 | 1 | -0/+14 |
| | |||||
* | s/correspnding/corresponding/ | Guillaume Delacour | 2017-04-05 | 1 | -1/+1 |
| | |||||
* | Stop listing if recursion limit is hit (#234) | Johan Brandhorst | 2017-03-23 | 1 | -1/+3 |
| | |||||
* | document the dynamic aspect of objects | Gauvain Pocentek | 2017-02-04 | 1 | -1/+12 |
| | |||||
* | [docs] update pagination section | Gauvain Pocentek | 2016-12-24 | 1 | -1/+6 |
| | | | | | | First page is page 1. Fixes #197 | ||||
* | docs: improve the pagination section | Gauvain Pocentek | 2016-08-30 | 1 | -2/+11 |
| | |||||
* | doc: replace incorrect archive call() | Gauvain Pocentek | 2016-08-04 | 1 | -2/+2 |
| | |||||
* | Re-implement _custom_list in the Gitlab class | Gauvain Pocentek | 2016-02-18 | 1 | -1/+2 |
| | | | | | | | | Rename the method _raw_list. This adds support for the ``all=True`` option to enable automatic recursion and avoid pagination if requested by the user. Fixes #93 | ||||
* | Add sudo support | Gauvain Pocentek | 2016-01-30 | 1 | -0/+10 |
| | |||||
* | Provide a getting started doc for the API | Gauvain Pocentek | 2016-01-03 | 1 | -0/+119 |