summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* docs: remove exclusive EE about issue linksazro3522023-05-151-1/+1
|
* feat(objects): support fetching PATs via id or `self` endpointNejc Habjan2023-04-071-0/+8
|
* docs(objects): fix typo in pipeline schedulesNejc Habjan2023-04-071-1/+1
|
* feat: add resource_weight_event for ProjectIssuePaul Fariello2023-03-231-0/+4
|
* fix(cli): add ability to escape at-prefixed parameter (#2513)PyHedgehog2023-03-111-0/+11
| | | | | | | * fix(cli): Add ability to escape at-prefixed parameter (#2511) --------- Co-authored-by: Nejc Habjan <hab.nejc@gmail.com>
* docs(advanced): clarify netrc, proxy behavior with requestsNejc Habjan2023-02-121-26/+37
|
* docs: fix update badge behaviourSoumya Kushwaha2023-02-111-1/+2
| | | | | | | | | | docs: fix update badge behaviour Earlier: badge.image_link = new_link Now: badge.image_url = new_image_url badge.link_url = new_link_url
* docs(advanced): fix typo in Gitlab examplesNejc Habjan2023-02-051-8/+8
|
* feat(client): add http_patch method (#2471)John Villalovos2023-02-051-0/+1
| | | | | In order to support some new API calls we need to support the HTTP `PATCH` method. Closes: #2469
* Merge branch 'main' into typosValentin Grégoire2023-02-019-52/+237
|\
| * fix(client): regression - do not automatically get_next if page=# andHelen Koike2023-01-251-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | iterator=True/as_list=False are used This fix a regression introduced on commit https://github.com/python-gitlab/python-gitlab/commit/1339d645ce58a2e1198b898b9549ba5917b1ff12 If page is used, then get_next should be false. This was found on the mesa ci project, after upgrading the python-gitlab version, the script that monitors the ci was getting killed by consuming too much memory.
| * feat(group): add support for group restore APIMahadevan Karthi2023-01-181-0/+5
| |
| * chore: add test, docs, and helper for 409 retriesNejc Habjan2022-12-191-3/+8
| |
| * feat(client): automatically retry on HTTP 409 Resource lockPetr Špaček2022-12-191-3/+5
| | | | | | | | Fixes: #2325
| * feat(api): add support for bulk imports APINejc Habjan2022-12-193-0/+85
| |
| * feat(api): add support for resource groupsNejc Habjan2022-12-182-0/+39
| |
| * chore: add docs for schedule pipelinesNejc Habjan2022-12-111-3/+9
| |
| * docs(faq): describe and group common errorsNejc Habjan2022-12-092-46/+86
| |
* | fix: typo fixed in docsValentin Grégoire2023-02-011-1/+1
|/
* feat: add resource iteration events (see ↵Oliver Blasius2022-12-041-0/+4
| | | | https://docs.gitlab.com/ee/api/resource_iteration_events.html)
* feat: allow passing kwargs to Gitlab class when instantiating with ↵Liora Milbaum2022-12-041-0/+12
| | | | `from_config` (#2392)
* feat: add support for SAML group links (#2367)Abhishek Singh2022-11-221-0/+22
|
* docs: Use the term "log file" for getting a job log fileJohn L. Villalovos2022-11-181-1/+1
| | | | | | | | The GitLab docs refer to it as a log file: https://docs.gitlab.com/ee/api/jobs.html#get-a-log-file "trace" is the endpoint name but not a common term people will think of for a "log file"
* feat(groups): add LDAP link manager and deprecate old API endpointsNejc Habjan2022-11-171-2/+13
|
* refactor: explicitly use ProjectSecureFileNejc Habjan2022-11-171-2/+2
|
* docs(groups): describe GitLab.com group creation limitationNejc Habjan2022-11-101-0/+6
|
* feat: implement secure files APIBen Brown2022-11-102-0/+48
|
* docs(api): pushrules remove saying `None` is returned when not foundJohn L. Villalovos2022-11-082-2/+2
| | | | | | | | | | | | | In `groups.pushrules.get()`, GitLab does not return `None` when no rules are found. GitLab returns a 404. Update docs to not say it will return `None` Also update docs in `project.pushrules.get()` to be consistent. Not 100% sure if it returns `None` or returns a 404, but we don't need to document that. Closes: #2368
* feat(api): add support for getting a project's pull mirror detailsJohn L. Villalovos2022-11-041-0/+4
| | | | | | | 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
* feat(api): add support for remote project import from AWS S3 (#2357)Abhishek Singh2022-11-021-0/+14
|
* feat(api): add support for remote project import (#2348)Abhishek Singh2022-11-011-0/+9
|
* feat(api): add application statisticsShreya2022-11-012-0/+22
|
* fix: use POST method and return dict in ↵John Villalovos2022-10-311-1/+7
| | | | | | | | | | | | | | `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
* docs(advanced): add hint on type narrowingNejc Habjan2022-10-271-0/+20
|
* docs: add minimal docs about the `enable_debug()` methodJohn L. Villalovos2022-10-271-0/+6
| | | | Add some minimal documentation about the `enable_debug()` method.
* fix: remove `project.approvals.set_approvals()` methodJohn L. Villalovos2022-10-191-5/+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
* docs(commits): fix commit create example for binary contentThomas Schmelzer2022-10-181-1/+1
|
* chore: use kwargs for http_request docsNejc Habjan2022-10-161-2/+7
|
* docs(readme): add a basic feature listNejc Habjan2022-10-161-0/+3
|
* docs(api): describe use of lower-level methodsNejc Habjan2022-10-162-0/+97
|
* feat(api): add support for topics merge APINejc Habjan2022-10-141-0/+4
|
* docs(api): describe the list() and all() runners' functionsLiora Milbaum2022-10-094-16/+20
|
* docs(api): Update `merge_requests.rst`: `mr_id` to `mr_iid`Stavros Ntentos2022-10-031-2/+2
| | | | | | | | | Typo: Author probably meant `mr_iid` (i.e. project-specific MR ID) and **not** `mr_id` (i.e. server-wide MR ID) Closes: https://github.com/python-gitlab/python-gitlab/issues/2295 Signed-off-by: Stavros Ntentos <133706+stdedos@users.noreply.github.com>
* feat: Add reset_approvals apiLucas Zampieri2022-09-261-0/+4
| | | | | | Added the newly added reset_approvals merge request api. Signed-off-by: Lucas Zampieri <lzampier@redhat.com>
* feat: add support for deployment approval endpointJohn L. Villalovos2022-08-251-0/+12
| | | | | | | 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 APINejc Habjan2022-08-192-0/+10
|
* chore: consolidate license and authorsNejc Habjan2022-08-041-3/+1
|
* docs: describe self-revoking personal access tokensNejc Habjan2022-07-292-0/+32
|
* Merge pull request #2194 from python-gitlab/jlvillal/update-gitlabNejc Habjan2022-07-293-5/+10
|\ | | | | test(functional): bump GitLab docker image to 15.2.0-ee.0
| * chore(clusters): deprecate clusters supportJohn L. Villalovos2022-07-282-4/+9
| | | | | | | | | | | | | | | | | | | | | | Cluster support was deprecated in GitLab 14.5 [1]. And disabled by default in GitLab 15.0 [2] * Update docs to mark clusters as deprecated * Remove testing of clusters [1] https://docs.gitlab.com/ee/api/project_clusters.html [2] https://gitlab.com/groups/gitlab-org/configure/-/epics/8