Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feat(api): add support for events scope parameter | Samuël WEBER | 2023-05-03 | 1 | -1/+1 |
| | |||||
* | feat: usernames support for MR approvals | Nick Brown | 2023-04-19 | 1 | -1/+1 |
| | | | | | | This can be used instead of 'user_ids' See: https://docs.gitlab.com/ee/api/merge_request_approvals.html#create-project-level-rule | ||||
* | fix(cli): warn user when no fields are displayed | Nejc Habjan | 2023-04-11 | 1 | -16/+28 |
| | |||||
* | feat(projects): allow importing additional items from GitHub | Nejc Habjan | 2023-04-10 | 1 | -2/+10 |
| | |||||
* | feat(objects): support fetching PATs via id or `self` endpoint | Nejc Habjan | 2023-04-07 | 1 | -2/+9 |
| | |||||
* | feat: add resource_weight_event for ProjectIssue | Paul Fariello | 2023-03-23 | 2 | -0/+21 |
| | |||||
* | fix: support int for `parent_id` in `import_group` | John L. Villalovos | 2023-03-12 | 1 | -2/+2 |
| | | | | | | | | | This will also fix other use cases where an integer is passed in to MultipartEncoder. Added unit tests to show it works. Closes: #2506 | ||||
* | fix(cli): display items when iterator is returned | Nejc Habjan | 2023-02-06 | 1 | -0/+2 |
| | |||||
* | feat(cli): add setting of `allow_force_push` for protected branch | John L. Villalovos | 2023-02-03 | 1 | -0/+1 |
| | | | | | | | | | | For the CLI: add `allow_force_push` as an optional argument for creating a protected branch. API reference: https://docs.gitlab.com/ee/api/protected_branches.html#protect-repository-branches Closes: #2466 | ||||
* | feat(group): add support for group restore API | Mahadevan Karthi | 2023-01-18 | 1 | -0/+15 |
| | |||||
* | chore: update attributes for create and update projects | jrdescartes | 2023-01-18 | 1 | -2/+26 |
| | |||||
* | feat(api): add support for bulk imports API | Nejc Habjan | 2022-12-19 | 2 | -0/+55 |
| | |||||
* | fix: change return value to "None" in case getattr returns None to prevent error | Wu Yang | 2022-12-19 | 1 | -1/+1 |
| | |||||
* | feat(api): add support for resource groups | Nejc Habjan | 2022-12-18 | 3 | -0/+48 |
| | |||||
* | feat(api): support listing pipelines triggered by pipeline schedules | Steve Vermeulen | 2022-12-11 | 1 | -0/+13 |
| | |||||
* | feat: allow filtering pipelines by source | Nick Brown | 2022-12-10 | 1 | -0/+1 |
| | | | | | | See: https://docs.gitlab.com/ee/api/pipelines.html#list-project-pipelines Added in GitLab 14.3 | ||||
* | feat: add resource iteration events (see ↵ | Oliver Blasius | 2022-12-04 | 2 | -0/+21 |
| | | | | https://docs.gitlab.com/ee/api/resource_iteration_events.html) | ||||
* | fix: Use the ProjectIterationManager within the Project object | Ryan Holleran | 2022-12-03 | 1 | -2/+2 |
| | | | | | | | | The Project object was previously using the GroupIterationManager resulting in the incorrect API endpoint being used. Utilize the correct ProjectIterationManager instead. Resolves #2403 | ||||
* | fix(api): Make description optional for releases | lovetox | 2022-12-03 | 1 | -1/+1 |
| | |||||
* | feat: add support for SAML group links (#2367) | Abhishek Singh | 2022-11-22 | 1 | -0/+21 |
| | |||||
* | feat(groups): add LDAP link manager and deprecate old API endpoints | Nejc Habjan | 2022-11-17 | 1 | -19/+67 |
| | |||||
* | refactor: explicitly use ProjectSecureFile | Nejc Habjan | 2022-11-17 | 2 | -9/+11 |
| | |||||
* | feat(groups): add support for listing ldap_group_links (#2371) | Ray | 2022-11-16 | 1 | -0/+17 |
| | |||||
* | feat: implement secure files API | Ben Brown | 2022-11-10 | 3 | -0/+72 |
| | |||||
* | feat(api): add support for getting a project's pull mirror details | John L. Villalovos | 2022-11-04 | 1 | -0/+23 |
| | | | | | | | Add the ability to get a project's pull mirror details. This was added in GitLab 15.5 and is a PREMIUM feature. https://docs.gitlab.com/ee/api/projects.html#get-a-projects-pull-mirror-details | ||||
* | fix(cli): expose missing mr_default_target_self project attribute | Romain Dartigues | 2022-11-03 | 1 | -0/+1 |
| | | | | | | | | | | | | Example:: gitlab project update --id 616 --mr-default-target-self 1 References: * https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58093 * https://gitlab.com/gitlab-org/gitlab/-/blob/v13.11.0-ee/doc/user/project/merge_requests/creating_merge_requests.md#new-merge-request-from-a-fork * https://gitlab.com/gitlab-org/gitlab/-/blob/v14.7.0-ee/doc/api/projects.md#get-single-project | ||||
* | feat(api): add support for remote project import from AWS S3 (#2357) | Abhishek Singh | 2022-11-02 | 1 | -2/+64 |
| | |||||
* | feat(api): add support for remote project import (#2348) | Abhishek Singh | 2022-11-01 | 1 | -0/+45 |
| | |||||
* | feat(api): add application statistics | Shreya | 2022-11-01 | 1 | -0/+14 |
| | |||||
* | fix: use POST method and return dict in ↵ | John Villalovos | 2022-10-31 | 1 | -7/+8 |
| | | | | | | | | | | | | | | `cancel_merge_when_pipeline_succeeds()` (#2350) * Call was incorrectly using a `PUT` method when should have used a `POST` method. * Changed return type to a `dict` as GitLab only returns {'status': 'success'} on success. Since the function didn't work previously, this should not impact anyone. * Updated the test fixture `merge_request` to add ability to create a pipeline. * Added functional test for `mr.cancel_merge_when_pipeline_succeeds()` Fixes: #2349 | ||||
* | fix: remove `project.approvals.set_approvals()` method | John L. Villalovos | 2022-10-19 | 1 | -32/+0 |
| | | | | | | | | | | | | The `project.approvals.set_approvals()` method used the `/projects/:id/approvers` end point. That end point was removed from GitLab in the 13.11 release, on 2-Apr-2021 in commit 27dc2f2fe81249bbdc25f7bd8fe799752aac05e6 via merge commit e482597a8cf1bae8e27abd6774b684fb90491835. It was deprecated on 19-Aug-2019. See merge request: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57473 | ||||
* | fix: use epic id instead of iid for epic notes | Shreya | 2022-10-16 | 1 | -4/+4 |
| | |||||
* | feat(api): add support for topics merge API | Nejc Habjan | 2022-10-14 | 1 | -1/+39 |
| | |||||
* | fix(cli): handle list response for json/yaml output | John L. Villalovos | 2022-10-06 | 1 | -4/+4 |
| | | | | | | | | | Handle the case with the CLI where a list response is returned from GitLab and json/yaml output is requested. Add a functional CLI test to validate it works. Closes: #2287 | ||||
* | feat: Add reset_approvals api | Lucas Zampieri | 2022-09-26 | 1 | -0/+18 |
| | | | | | | Added the newly added reset_approvals merge request api. Signed-off-by: Lucas Zampieri <lzampier@redhat.com> | ||||
* | fix(cli): add missing attributes for creating MRs | Nejc Habjan | 2022-09-23 | 1 | -3/+6 |
| | |||||
* | fix(cli): add missing attribute for MR changes | Nejc Habjan | 2022-09-23 | 1 | -1/+1 |
| | |||||
* | feat: add support for deployment approval endpoint | John L. Villalovos | 2022-08-25 | 1 | -1/+51 |
| | | | | | | | Add support for the deployment approval endpoint[1] [1] https://docs.gitlab.com/ee/api/deployments.html#approve-or-reject-a-blocked-deployment Closes: #2253 | ||||
* | feat: add support for merge_base API | Nejc Habjan | 2022-08-19 | 1 | -1/+27 |
| | |||||
* | chore: consolidate license and authors | Nejc Habjan | 2022-08-04 | 2 | -35/+0 |
| | |||||
* | Merge pull request #2211 from python-gitlab/jlvillal/mypy_step_step | Nejc Habjan | 2022-08-01 | 4 | -9/+21 |
|\ | | | | | chore: enable mypy check `disallow_any_generics` | ||||
| * | chore: enable mypy check `disallow_any_generics` | John L. Villalovos | 2022-08-01 | 4 | -9/+21 |
| | | |||||
* | | chore: enable mypy check `no_implicit_optional` | John L. Villalovos | 2022-07-31 | 3 | -3/+3 |
|/ | |||||
* | chore: change `_repr_attr` for Project to be `path_with_namespace` | John L. Villalovos | 2022-07-29 | 1 | -1/+1 |
| | | | | | | | Previously `_repr_attr` was `path` but that only gives the basename of the path. So https://gitlab.com/gitlab-org/gitlab would only show "gitlab". Using `path_with_namespace` it will now show "gitlab-org/gitlab" | ||||
* | Merge pull request #2199 from orf/patch-1 | Nejc Habjan | 2022-07-29 | 1 | -3/+7 |
|\ | | | | | Support downloading archive subpaths | ||||
| * | feat: Support downloading archive subpaths | Tom Forbes | 2022-07-29 | 1 | -3/+7 |
| | | |||||
* | | Merge pull request #2194 from python-gitlab/jlvillal/update-gitlab | Nejc Habjan | 2022-07-29 | 1 | -1/+4 |
|\ \ | |/ |/| | test(functional): bump GitLab docker image to 15.2.0-ee.0 | ||||
| * | chore(topics): 'title' is required when creating a topic | John L. Villalovos | 2022-07-28 | 1 | -1/+4 |
| | | | | | | | | In GitLab >= 15.0 `title` is required when creating a topic. | ||||
* | | Merge pull request #2198 from nickbroon/nickbroon-release-sort-order | Nejc Habjan | 2022-07-28 | 1 | -0/+5 |
|\ \ | | | | | | | feat: allow sort/ordering for project releases | ||||
| * | | feat: allow sort/ordering for project releases | Nick Brown | 2022-07-28 | 1 | -0/+5 |
| |/ | | | | | | | See: https://docs.gitlab.com/ee/api/releases/#list-releases |