| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bump version and update changelog | Gauvain Pocentek | 2016-08-27 | 1 | -1/+1 |
| | | |||||
| * | Add support for project deployments | Gauvain Pocentek | 2016-08-27 | 2 | -0/+15 |
| | | |||||
| * | Add support for access requests | Gauvain Pocentek | 2016-08-27 | 2 | -3/+70 |
| | | |||||
| * | Add support for project pipelines | Gauvain Pocentek | 2016-08-27 | 3 | -2/+59 |
| | | |||||
| * | Add support for project services API | Gauvain Pocentek | 2016-08-13 | 2 | -0/+83 |
| | | |||||
| * | Remove unused ProjectTagReleaseManager class | Gauvain Pocentek | 2016-08-13 | 1 | -4/+0 |
| | | |||||
| * | Fix canGet attribute (typo) | Gauvain Pocentek | 2016-08-13 | 1 | -1/+1 |
| | | |||||
| * | Remove _get_list_or_object() and its tests | Gauvain Pocentek | 2016-08-13 | 3 | -75/+0 |
| | | |||||
| * | Let _data_for_gitlab return python data | Gauvain Pocentek | 2016-08-13 | 1 | -12/+13 |
| | | |||||
| * | Refactor the Gitlab class | Gauvain Pocentek | 2016-08-13 | 1 | -135/+25 |
| | | | | | Make use of the _raw_* methods in the CRUD methods. | ||||
| * | fix pep8 test | Gauvain Pocentek | 2016-08-11 | 1 | -0/+1 |
| | | |||||
| * | Remove method marked as deprecated 7 months ago | Gauvain Pocentek | 2016-08-11 | 2 | -280/+0 |
| | | |||||
| * | Add copyright header to utils.py | Gauvain Pocentek | 2016-08-11 | 1 | -0/+17 |
| | | |||||
| * | Move the constants at the gitlab root level | Gauvain Pocentek | 2016-08-11 | 3 | -11/+38 |
| | | |||||
| * | Add sidekiq metrics support | Gauvain Pocentek | 2016-08-11 | 2 | -0/+37 |
| | | |||||
| * | implement the todo API | Gauvain Pocentek | 2016-08-11 | 3 | -1/+56 |
| | | |||||
| * | Update the ApplicationSettings attributes | Gauvain Pocentek | 2016-08-09 | 1 | -5/+17 |
| | | |||||
| * | ignore pep8 error | Gauvain Pocentek | 2016-08-08 | 1 | -1/+1 |
| | | |||||
| * | add a basic HTTP debug method | Gauvain Pocentek | 2016-08-08 | 1 | -0/+14 |
| | | |||||
| * | Update changelog/authors/version for 0.140.14 | Gauvain Pocentek | 2016-08-07 | 1 | -1/+1 |
| | | |||||
| * | MR merge(): update the object | Gauvain Pocentek | 2016-08-07 | 1 | -1/+1 |
| | | |||||
| * | MR (un)subscribe: don't fail if state doesn't change | Gauvain Pocentek | 2016-08-07 | 1 | -2/+4 |
| | | |||||
| * | Handle empty messages from server in exceptions | Gauvain Pocentek | 2016-08-07 | 1 | -1/+1 |
| | | |||||
| * | MR: fix updates | Gauvain Pocentek | 2016-08-07 | 1 | -2/+7 |
| | | |||||
| * | Fix the listing of some resources | Gauvain Pocentek | 2016-08-07 | 2 | -25/+16 |
| | | | | | | | | The parent ID wasn't available in the generated objects, leading to exceptions when trying to use specific methods for these objects. Fixes #132 | ||||
| * | MR: get list of changes and commits | Gauvain Pocentek | 2016-08-07 | 1 | -0/+30 |
| | | |||||
| * | remove debug print statement | Gauvain Pocentek | 2016-08-06 | 1 | -1/+0 |
| | | |||||
| * | Add support for project environments | Gauvain Pocentek | 2016-08-06 | 2 | -0/+18 |
| | | |||||
| * | add support for global deploy key listing | Gauvain Pocentek | 2016-08-06 | 2 | -0/+14 |
| | | |||||
| * | Added a new project attribute to enable the container registry. | Christian Wenk | 2016-07-25 | 1 | -3/+5 |
| | | |||||
| * | Add support from listing group issues | Gauvain Pocentek | 2016-07-24 | 2 | -1/+18 |
| | | |||||
| * | Improve commit statuses and comments | Gauvain Pocentek | 2016-07-24 | 2 | -6/+26 |
| | | | | | Fixes #92 | ||||
| * | tests: don't use deprecated Content method | Gauvain Pocentek | 2016-07-18 | 1 | -2/+2 |
| | | |||||
| * | CLI: refactor _die() | Gauvain Pocentek | 2016-07-18 | 1 | -35/+36 |
| | | |||||
| * | Replace Snippet.Content() with a new content() method | Gauvain Pocentek | 2016-07-17 | 1 | -5/+27 |
| | | | | | | This new method use the standard lowercase name and implements data streaming. | ||||
| * | fix unit tests | Gauvain Pocentek | 2016-07-17 | 1 | -1/+1 |
| | | |||||
| * | Groups can be updated | Gauvain Pocentek | 2016-07-17 | 1 | -1/+1 |
| | | |||||
| * | Add missing args in docstrings | Gauvain Pocentek | 2016-07-17 | 1 | -0/+32 |
| | | |||||
| * | Allow to stream the downloads when appropriate | Gauvain Pocentek | 2016-07-17 | 3 | -21/+50 |
| | | | | | | | | | | Some API calls will download possibly large data, resulting in a high memory usage and out-of-memory errors. For these API calls use the requests streaming capabilities and download chunked data. The caller is responsible of providing a callable to actually store the data. The default callable just prints the data on stdout. | ||||
| * | Implement ProjectBuild.keep_artifacts | Gauvain Pocentek | 2016-07-17 | 1 | -1/+14 |
| | | |||||
| * | Gitlab: add managers for build-related resources | Gauvain Pocentek | 2016-07-17 | 1 | -0/+7 |
| | | |||||
| * | Implement runners global API | Gauvain Pocentek | 2016-07-17 | 2 | -0/+31 |
| | | |||||
| * | Add docstring for settings manager in Gitlab class | Gauvain Pocentek | 2016-07-17 | 1 | -0/+1 |
| | | |||||
| * | Fix pep8 test | Gauvain Pocentek | 2016-07-16 | 1 | -1/+2 |
| | | |||||
| * | implement CLI for project archive/unarchive/share | Gauvain Pocentek | 2016-07-16 | 1 | -1/+25 |
| | | |||||
| * | Implement sharing project with a group | Gauvain Pocentek | 2016-07-16 | 1 | -0/+16 |
| | | |||||
| * | Fix ProjectMember update | Gauvain Pocentek | 2016-07-16 | 1 | -0/+1 |
| | | |||||
| * | Update ProjectSnippet attributes | Gauvain Pocentek | 2016-07-16 | 1 | -1/+2 |
| | | | | | | | | 'visibility_level' has been added as an optional attribute to keep compatibility with older releases of gitlab. Fixes #129 | ||||
| * | Implement archive/unarchive for a projet | Gauvain Pocentek | 2016-07-16 | 1 | -5/+37 |
| | | | | | | | The methods are called archive_ and unarchive_ to workaround a conflict with the deprecated archive method. Method will be renamed when the archive method is removed. | ||||
| * | Fix the Project.archive call | Gauvain Pocentek | 2016-07-16 | 1 | -1/+1 |
| | | |||||
