summaryrefslogtreecommitdiff
path: root/gitlab/objects.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement merge requests diff supportGauvain Pocentek2016-11-051-0/+15
|
* Remove deprecated methodsGauvain Pocentek2016-11-051-66/+13
| | | | | | Also deprecate {un,}archive_() in favor of {un,}archive(). Fix #115
* Implement __repr__ for gitlab objectsGauvain Pocentek2016-11-051-0/+5
| | | | Fix #114
* Fix tuples definitionGauvain Pocentek2016-11-051-13/+21
|
* pep8 fixGauvain Pocentek2016-11-051-0/+1
|
* Build managers on demand on GitlabObject'sGauvain Pocentek2016-11-051-27/+35
|
* fix line too longGauvain Pocentek2016-11-051-1/+2
|
* Move deploy key enable/disable to the objectGauvain Pocentek2016-11-051-9/+9
| | | | | To keep things consistent with other objects, action methods are available on the object itself, not the manager.
* Merge branch 'master-project-deploy-keys' of ↵Gauvain Pocentek2016-11-051-0/+12
|\ | | | | | | https://github.com/Asher256/python-gitlab into Asher256-master-project-deploy-keys
| * Project deploy key response code = 201Asher256@users.noreply.github.com2016-11-011-8/+8
| |
| * Fixing the response and project_id argumentAsher2562016-11-011-6/+6
| |
| * Documentation for enable/disable deploy key functionsAsher256@users.noreply.github.com2016-10-301-2/+2
| |
| * New exception for ProjectKey.enable_deploy_key and disable_deploy_keyAsher256@users.noreply.github.com2016-10-301-2/+2
| |
| * enable/disable deploy key methos moved to the class ProjectKey()Asher256@users.noreply.github.com2016-10-301-6/+6
| |
| * Delete is used for '/projects/%s/deploy_keys/%s/disable'Asher2562016-10-301-1/+1
| |
| * Feature: enable / disable the deploy key in a projectAsher2562016-10-281-0/+12
| |
* | ProjectHook: support the token attributeGauvain Pocentek2016-11-021-1/+1
|/ | | | Fix #170
* fix bug when retrieving changes for merge requestChristian2016-10-281-1/+1
| | | Erroneously a merge request would return its commit when being queried for its changes.
* Don't overwrite attributes returned by the serverGauvain Pocentek2016-10-241-1/+3
| | | | Fixes #171
* Add support for the notification settings APIGauvain Pocentek2016-10-231-0/+46
|
* Add support for broadcast messages APIGauvain Pocentek2016-10-231-0/+12
|
* Add support for boards APIGauvain Pocentek2016-10-231-0/+30
| | | | | | | | This is not fully usable because the gitlab API has some limitations: - not possible to create boards programmatically - not possible to get labels ID (https://gitlab.com/gitlab-org/gitlab-ce/issues/23448)
* Convert response list to single data source for iid requestsPhilipp Busch2016-10-231-0/+16
|
* Pass kwargs to the object factoryPhilipp Busch2016-10-201-6/+7
|
* Fix ProjectBuild.play raises error on successhakkeroid2016-10-171-1/+1
| | | Running play on ProjectBuild raises a GitlabBuildPlayError although the request was successful. It looks like gitlab returns a 200-OK instead of 201-CREATED response and as such always raises an exception.
* Implement ProjectBuild.play()Gauvain Pocentek2016-10-031-0/+6
|
* Add ProjectBuild.erase()Jonathon Reinhart2016-10-021-0/+6
| | | | | | | | | | We can't use the existing delete() functionality, because GitLab uses `POST /projects/:id/builds/:build_id/erase` to erase a build. Instead of overriding delete(), we add a separate erase() method to keep the naming consistent, and allow potentially more fine-grained operations in the future. - https://docs.gitlab.com/ce/api/builds.html#erase-a-build
* Use the plural merge_requests URL everywhereGauvain Pocentek2016-09-291-2/+1
| | | | | | | | This breaks compatibility with older gitlab versions but maintaining support for changed APIs is just too complex and time consuming. See issue #139 if you need a workaround. Fixes #157
* break lines too longRafael Eyng2016-09-221-2/+4
|
* add only_allow_merge_if_build_succeeds option to project objectsRafael Eyng2016-09-221-3/+3
|
* Missing coma concatenates array valuesderek-austin2016-09-131-1/+1
| | | 'enabled_git_access_protocolgravatar_enabled' were two distinct values in ApplicationSettings.optionalUpdateAttrs.
* JIRA service - add api_url to optional attributesMichal Galet2016-09-131-1/+1
| | | | | | | | The api_url attribute is mandatory at least since GitLab 8.11. Otherwise server returns gitlab.exceptions.GitlabUpdateError: 400: 400 (Bad request) "api_url" not given. Keep it as optional to maintain backward compatibility with older GitLab versions.
* fix pep8Armin Weihbold2016-09-101-0/+1
|
* Add the ability to fork to a specific namespaceArmin Weihbold2016-09-101-1/+1
|
* Add support for project deploymentsGauvain Pocentek2016-08-271-0/+12
|
* Add support for access requestsGauvain Pocentek2016-08-271-3/+64
|
* Add support for project pipelinesGauvain Pocentek2016-08-271-0/+38
|
* Add support for project services APIGauvain Pocentek2016-08-131-0/+80
|
* Remove unused ProjectTagReleaseManager classGauvain Pocentek2016-08-131-4/+0
|
* Fix canGet attribute (typo)Gauvain Pocentek2016-08-131-1/+1
|
* Remove _get_list_or_object() and its testsGauvain Pocentek2016-08-131-10/+0
|
* Let _data_for_gitlab return python dataGauvain Pocentek2016-08-131-12/+13
|
* Remove method marked as deprecated 7 months agoGauvain Pocentek2016-08-111-156/+0
|
* Move the constants at the gitlab root levelGauvain Pocentek2016-08-111-11/+11
|
* Add sidekiq metrics supportGauvain Pocentek2016-08-111-0/+36
|
* implement the todo APIGauvain Pocentek2016-08-111-1/+50
|
* Update the ApplicationSettings attributesGauvain Pocentek2016-08-091-5/+17
|
* MR merge(): update the objectGauvain Pocentek2016-08-071-1/+1
|
* MR (un)subscribe: don't fail if state doesn't changeGauvain Pocentek2016-08-071-2/+4
|
* MR: fix updatesGauvain Pocentek2016-08-071-2/+7
|