summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Add support for user_agent_detail (issues)Gauvain Pocentek2017-11-111-0/+15
| | | | https://docs.gitlab.com/ce/api/issues.html#get-user-agent-details
* Add support for user activitiesGauvain Pocentek2017-11-111-0/+9
|
* Add support for impersonation tokens APIGauvain Pocentek2017-11-101-0/+13
| | | | Closes #363
* Merge branch 'master' of github.com:python-gitlab/python-gitlabGauvain Pocentek2017-11-081-0/+1
|\
| * Merge pull request #342 from matejzero/mattermostGauvain Pocentek2017-11-071-0/+1
| |\ | | | | | | Add mattermost service support
| | * Add mattermost service supportMatej Zerovnik2017-10-131-0/+1
| | |
* | | Add users custome attributes supportGauvain Pocentek2017-11-041-0/+31
|/ /
* | Update the repository_blob documentationGauvain Pocentek2017-11-011-2/+2
| | | | | | | | Fixes #312
* | Add support for wiki pagesGauvain Pocentek2017-11-011-0/+15
| |
* | Move the ProjectManager class for readabilityGauvain Pocentek2017-11-011-28/+28
| |
* | Add support for GPG keysGauvain Pocentek2017-11-011-0/+24
| | | | | | | | Closes #355
* | Add support for group milestonesGauvain Pocentek2017-11-011-5/+75
| | | | | | | | Closes #349
* | Move group related code for readabilityGauvain Pocentek2017-11-011-72/+72
| |
* | Project: add support for printing_merge_request_link_enabled attrGauvain Pocentek2017-10-311-2/+2
| | | | | | | | Closes #353
* | ProjectFileManager: custom update() methodGauvain Pocentek2017-10-211-0/+24
| | | | | | | | Closes #340
* | Change ProjectUser and GroupProject base classGauvain Pocentek2017-10-211-2/+2
| | | | | | | | | | | | | | | | | | python-gitlab shouldn't try to provide features that are not existing in the Gitlab API: GroupProject and ProjectUser objects should not provide unsupported API methods (no get, no create, no update). This Closes #346 by making explicit that we don't support these non-existant methods.
* | Remove support for "constructor types" in v4Gauvain Pocentek2017-10-211-23/+6
| | | | | | | | | | | | In v3 we create objects from json dicts when it makes sense. Support for this feature has not been kept in v4, and we didn't get requests for it so let's drop the _constructor_types definitions.
* | Snippet notes support all the CRUD methodsGauvain Pocentek2017-10-211-2/+3
| | | | | | | | Fixes #343
* | ProjectFileManager.create: handle / in file pathsGauvain Pocentek2017-10-121-1/+1
|/ | | | | | Replace / with %2F as is done in other methods. Fixes #339
* Add support for listing project usersGauvain Pocentek2017-10-081-0/+12
| | | | | | https://docs.gitlab.com/ce/api/projects.html#get-project-users Closes #328
* Tags release description: support / in tag namesGauvain Pocentek2017-10-081-1/+2
|
* Fix trigger variables in v4 API (#334)Jerome Robert2017-10-081-5/+1
| | | | | | Fix trigger variables in v4 API Close #333
* ProjectFile: handle / in path for delete() and save()Gauvain Pocentek2017-09-291-1/+3
| | | | Fixes #326
* Properly handle the labels attribute in ProjectMergeRequestGauvain Pocentek2017-09-271-0/+6
| | | | | | | This should have made it into e09581fc but something went wrong (probably a PEBCAK). Closes #325
* Fix a couple listing calls to allow proper paginationGauvain Pocentek2017-09-211-3/+3
| | | | | | | | Project.repository_tree and Project.repository_contributors return lists, so use http_list to allow users to use listing features such as `all=True`. Closes #314
* CommitStatus: `sha` is parent attributeGauvain Pocentek2017-09-211-1/+1
| | | | Fixes #316
* Fix http_get method in get artifacts and job traceCarlo Mion2017-09-201-2/+2
|
* Fix the labels attrs on MR and issuesGauvain Pocentek2017-09-191-0/+6
| | | | Fixes #306
* adds project upload feature (#239)James Johnson2017-09-121-0/+53
|
* add list methodRobert Lu2017-09-111-2/+1
|
* Tag can get by idRobert Lu2017-09-111-1/+1
|
* FIX Group.tranfer_projectGauvain Pocentek2017-09-051-1/+1
|
* Add support for protected branchesGauvain Pocentek2017-09-021-0/+12
| | | | | | This feature appeared in gitlab 9.5. Fixes #299
* Merge branch 'group-variables'Gauvain Pocentek2017-09-021-0/+13
|\
| * Add support for group variablesGauvain Pocentek2017-09-021-0/+13
| |
* | [v4] More python functional testsGauvain Pocentek2017-08-211-11/+13
| |
* | [v4] Fix the CLI for project filesGauvain Pocentek2017-08-201-0/+7
| |
* | [v4] CLI support is backGauvain Pocentek2017-08-171-4/+65
| |
* | [v4] drop unused CurrentUserManager.credentials_auth methodGauvain Pocentek2017-08-171-5/+0
|/
* Fix URL for branch.unprotectGauvain Pocentek2017-08-111-1/+1
|
* docs: fix invalid Raise attribute in docstringsGauvain Pocentek2017-08-111-4/+4
|
* [v4] fix the project attributes for jobsGauvain Pocentek2017-08-051-4/+4
| | | | builds_enabled and public_builds are now jobs_enabled and public_jobs.
* Make the project services work in v4rework_apiGauvain Pocentek2017-08-041-42/+46
|
* Restore the prvious listing behaviorGauvain Pocentek2017-08-041-4/+13
| | | | | | | Return lists by default : this makes the explicit use of pagination work again. Use generators only when `as_list` is explicitly set to `False`.
* functional tests for v4Gauvain Pocentek2017-08-041-38/+115
| | | | | Update the python tests for v4, and fix the problems raised when running those tests.
* Restore correct exceptionsGauvain Pocentek2017-07-151-97/+511
| | | | | | Match the exceptions raised in v3 for v4. Also update the doc strings with correct information.
* Fix merge_when_build_succeeds attribute nameGauvain Pocentek2017-07-091-5/+5
| | | | Fixes #285
* remove useless attributesGauvain Pocentek2017-06-251-12/+1
|
* Fix GroupProject constructorGauvain Pocentek2017-06-241-3/+2
|
* minor doc updatesGauvain Pocentek2017-06-181-1/+1
|