summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | [cli] Output: handle bytes in API responsesGauvain Pocentek2018-07-091-0/+3
| | | | | | | | Closes #548
| * feat: Added approve & unapprove method for MergerequestsJoost Evertse2019-01-192-0/+45
|/ | | | Offical GitLab API supports this for GitLab EE
* 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
|
* Improve the protect branch creation exampleGauvain Pocentek2018-06-231-1/+5
| | | | Closes #536
* Fix the ProjectPipelineJob base classGauvain Pocentek2018-06-231-1/+1
| | | | Closes #537
* Prepare the 1.5.0 release1.5.0Gauvain Pocentek2018-06-224-2/+64
|
* [cli] Fix the non-verbose output of ProjectCommitCommentGauvain Pocentek2018-06-222-1/+9
| | | | Closes #433
* Use the same description for **kwargs everywhereGauvain Pocentek2018-06-173-32/+32
|
* [docs] Add an example for external identities settingsGauvain Pocentek2018-06-171-0/+6
| | | | Fixes #528
* Revert "make as_list work for all queries"Gauvain Pocentek2018-06-172-67/+20
| | | | | | This reverts commit 8e787612fa77dc945a4c1327e9faa6eee10c48f2. This change broke the basic generator usage (Fixes #534)
* Add support for epics API (EE)Gauvain Pocentek2018-06-174-1/+180
| | | | Fixes #525
* README updateGauvain Pocentek2018-06-151-4/+4
|
* ProjectPipelineJob objects can only be listedGauvain Pocentek2018-06-142-9/+15
| | | | | | And they are not directly related to ProjectJob objects. Fixes #531
* Add support for the LDAP gorups APIGauvain Pocentek2018-06-134-2/+59
|
* Add support for the EE license APIGauvain Pocentek2018-06-133-9/+51
|
* Merge pull request #530 from stefancrain/masterGauvain Pocentek2018-06-131-1/+1
|\ | | | | Correct session example
| * Correct session exampleStefan Crain2018-06-131-1/+1
|/
* Implement MR-level approvalsGauvain Pocentek2018-06-113-19/+77
| | | | Fixes #323
* Add push rules testsGauvain Pocentek2018-06-111-0/+13
|
* Add project push rules configuration (#520)Eric Sabouraud2018-06-114-5/+67
|
* [docs] projects.all() doesn't exist in v4Gauvain Pocentek2018-06-111-3/+0
| | | | Fixes #526
* Pull mirroring doesn't return dataGauvain Pocentek2018-06-101-1/+1
|
* Add support for Project.pull_mirror (EE)Gauvain Pocentek2018-06-102-1/+20
|
* Add support for board creation/deletion (EE)Gauvain Pocentek2018-06-103-9/+37
|
* Add support for LDAP groupsGauvain Pocentek2018-06-093-0/+84
|
* Merge pull request #514 from jouve/generatorGauvain Pocentek2018-06-092-20/+67
|\ | | | | make as_list=False work for all=True queries
| * make as_list work for all queriesCyril Jouve2018-06-072-20/+67
| |
* | Add support for issue links (EE)Gauvain Pocentek2018-06-094-7/+102
| | | | | | | | Fixes #422
* | Add geo nodes API supportGauvain Pocentek2018-06-096-0/+132
| | | | | | | | Fixes #524
* | Merge branch 'master' of github.com:python-gitlab/python-gitlabGauvain Pocentek2018-06-091-1/+1
|\ \
| * \ Merge pull request #522 from beyondliu/masterGauvain Pocentek2018-06-091-1/+1
| |\ \ | | | | | | | | fix #521 change post_data default value to None
| | * | fix #521 change post_data default value to Noneleon2018-06-081-1/+1
| | |/
* | | Add basic testing forr EE endpointsGauvain Pocentek2018-06-081-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | Today we don't have a solution for easily deploying an EE instance so using the functional tools is not possible. This patch provides a testing script that needs to be run against a private EE instance.
* | | docs: add MR approvals in indexGauvain Pocentek2018-06-081-0/+1
|/ /
* | Add support for project-level MR approval configurationEric Sabouraud2018-06-083-2/+81
|/
* Merge pull request #519 from jouve/silenceGauvain Pocentek2018-06-073-7/+29
|\ | | | | silence logs/warnings in unittests
| * silence logs/warnings in unittestsCyril Jouve2018-06-073-7/+29
|/
* Merge pull request #517 from jouve/dedupGauvain Pocentek2018-06-071-11/+1
|\ | | | | projectpipelinejob was defined twice
| * projectpipelinejob was defined twiceCyril Jouve2018-06-071-11/+1
|/
* Use python 2 on travis for nowtravisGauvain Pocentek2018-06-061-2/+2
|
* tests: default to python 3Gauvain Pocentek2018-06-062-10/+11
| | | | Fix the bytes/str issues
* Make ProjectCommitStatus.create work with CLIGauvain Pocentek2018-06-061-3/+10
| | | | Fixes #511
* time_stats(): use an existing attribute if availableGauvain Pocentek2018-05-301-0/+5
| | | | | | | | A time_stats attribute is returned by GitLab when fetching issues and merge requests (on reasonably recent GitLab versions). Use this info instead of making a new API call if possible. Fixes #510
* Update time stats docsGauvain Pocentek2018-05-302-0/+36
|
* Fix the IssueManager path to avoid redirectionsGauvain Pocentek2018-05-301-1/+1
|
* Add support for group badgesGauvain Pocentek2018-05-296-3/+115
| | | | | | Also consolidate project/group badges tests, and add some docs Fixes #469