summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use the pythongitlab/test-python-gitlab docker image for testsupdate/docker-imageGauvain Pocentek2018-11-032-2/+2
| | | | | | This images is updated to the latest GitLab CE. Fix the diff() test to match the change in the API output.
* Merge pull request #620 from bittner/patch-1Gauvain Pocentek2018-10-311-0/+3
|\ | | | | Add Gitter badge to README
| * Add Gitter badge to READMEPeter Bittner2018-10-311-0/+3
|/
* Merge pull request #613 from mkosiarc/fixDocGauvain Pocentek2018-10-161-3/+3
|\ | | | | [docs] fix discussions typo
| * [docs] fix discussions typomkosiarc2018-10-151-3/+3
|/
* Merge pull request #605 from python-gitlab/fix/dockerGauvain Pocentek2018-10-156-31/+43
|\ | | | | fix(docker): use docker image with current sources
| * fix(docker): use docker image with current sourcesfix/dockerMax Wittig2018-10-096-31/+43
| |
* | Merge pull request #608 from python-gitlab/ci-output-optionGauvain Pocentek2018-10-113-6/+28
|\ \ | | | | | | docs(cli): add PyYAML requirement notice
| * | docs(cli): add PyYAML requirement noticeci-output-optionMax Wittig2018-10-092-6/+21
| | | | | | | | | | | | Fixes #606
| * | docs(readme): add docs build informationMax Wittig2018-10-071-0/+7
|/ /
* | Merge pull request #607 from python-gitlab/refactor/rename-variableGauvain Pocentek2018-10-075-6/+7
|\ \ | | | | | | refactor: rename MASTER_ACCESS
| * | refactor: rename MASTER_ACCESSrefactor/rename-variableMax Wittig2018-10-065-6/+7
|/ / | | | | | | | | | | | | to MAINTAINER_ACCESS to follow GitLab 11.0 docs See: https://docs.gitlab.com/ce/user/permissions.html#project-members-permissions
* | Merge pull request #601 from max-wittig/fix/help-usageHans Donner2018-10-061-1/+5
|\ \ | |/ |/| fix(cli): print help and usage without config file
| * fix(cli): print help and usage without config filefix/help-usageMax Wittig2018-10-041-1/+5
| | | | | | | | Fixes #560
* | Merge pull request #600 from hans-d/dockerMax Wittig2018-10-044-28/+35
|\ \ | |/ |/| more flexible docker
| * Merge branch 'master' into dockerGauvain Pocentek2018-10-032-0/+46
| |\ | |/ |/|
* | Add project protected tags management (#581)Eric Sabouraud2018-10-032-0/+46
| |
| * more flexible dockerHans Donner2018-09-294-28/+35
|/
* README: add a note about maintainersGauvain Pocentek2018-09-261-0/+6
|
* Merge pull request #586 from Halliburton-Landmark/project-issue-create-argsGauvain Pocentek2018-09-111-2/+2
|\ | | | | add missing comma in ProjectIssueManager _create_attrs
| * add missing comma in ProjectIssueManager _create_attrsJustin2018-09-101-2/+2
|/ | | This fixes the argument handling for assignee/milestone ID when for `project-issue create`
* [docs] Add a note about GroupProject limited APIGauvain Pocentek2018-09-051-5/+17
|
* Fix the https redirection testGauvain Pocentek2018-09-051-1/+1
|
* [docs] add a warning about https://Gauvain Pocentek2018-09-052-0/+10
| | | | | http to https redirection cause problems. Make notes of this in the docs.
* [docs] fix cut and paste leftoverGauvain Pocentek2018-09-051-1/+1
|
* Use https:// for gitlab URLGauvain Pocentek2018-09-041-1/+1
|
* [docs] Fix the owned/starred usage documentationGauvain Pocentek2018-09-042-3/+3
| | | | Closes #579
* 1.6.0 release1.6.0Gauvain Pocentek2018-08-254-2/+34
|
* [cli] Fix the project-export downloadGauvain Pocentek2018-08-251-2/+24
| | | | Closes #559
* Minor doc updatesGauvain Pocentek2018-08-255-6/+12
|
* Add a FAQGauvain Pocentek2018-08-252-0/+34
|
* Raise an exception on https redirects for PUT/POSTGauvain Pocentek2018-08-243-19/+53
| | | | | | | | | | | POST and PUT requests are modified by clients when redirections happen. A common problem with python-gitlab is a misconfiguration of the server URL: the http to https redirection breaks some requests. With this change python-gitlab should detect problematic redirections, and raise a proper exception instead of failing with a cryptic error. Closes #565
* [docs] Add/updates notes about read-only objectsGauvain Pocentek2018-08-242-5/+32
| | | | | MR and issues attached to the root API or groups are not editable. Provide notes describing how to manage this.
* Merge pull request #572 from btmanm/masterGauvain Pocentek2018-08-241-1/+1
|\ | | | | Update projects.rst
| * Update projects.rstbtmanm2018-08-211-1/+1
|/
* Merge pull request #569 from mattthias/patch-1Gauvain Pocentek2018-08-141-1/+1
|\ | | | | Minor typo "ou" vs. "or"
| * Minor typo "ou" vs. "or"Matthias Schmitz2018-08-141-1/+1
|/ | | This change fixes a minor type in the table of possible values for options in the global section.
* Add support for project transfers from the projects interface. (#561)Will Rouesnel2018-08-021-0/+19
| | | See https://docs.gitlab.com/ee/api/projects.html#transfer-a-project-to-a-new-namespace
* Added support for listing forks of a project (#562)David Guest2018-07-263-1/+30
|
* MR: add the squash attribute for create/updateGauvain Pocentek2018-07-201-6/+7
| | | | Closes #557
* Implement MR.pipelines()Gauvain Pocentek2018-07-152-0/+26
| | | | Closes #555
* Support group and global MR listingGauvain Pocentek2018-07-153-2/+70
| | | | Closes #553
* Project import: fix the override_params parameterGauvain Pocentek2018-07-151-1/+2
| | | | Closes #552
* [cli] Fix the case where we have nothing to printGauvain Pocentek2018-07-121-2/+1
|
* [cli] Output: handle bytes in API responsesGauvain Pocentek2018-07-091-0/+3
| | | | Closes #548
* Improve the snippets examplesGauvain Pocentek2018-07-031-2/+10
| | | | closes #543
* Merge pull request #542 from tpdownes/patch-1Gauvain Pocentek2018-07-031-1/+1
|\ | | | | Fix simple typo in identity modification example
| * Fix simple typo in identity modification exampleTom Downes2018-07-021-1/+1
|/
* [docs] don't use hardcoded values for idsGauvain Pocentek2018-06-273-15/+14
|
* 1.5.1 release1.5.1Gauvain Pocentek2018-06-232-1/+7
|