summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * chore: add type-hints to gitlab/v4/objects/snippets.pyjlvillal/mypy_snippetsJohn L. Villalovos2021-11-142-5/+32
|/
* chore(deps): update dependency types-pyyaml to v6.0.1Renovate Bot2021-11-122-2/+2
|
* chore(deps): update dependency sphinx to v4.3.0Renovate Bot2021-11-101-1/+1
|
* chore(deps): update dependency types-requests to v2.26.0Renovate Bot2021-11-092-2/+2
|
* chore(deps): update dependency isort to v5.10.1Renovate Bot2021-11-091-1/+1
|
* chore(deps): update dependency types-requests to v2.25.12Renovate Bot2021-11-082-2/+2
|
* refactor: use new-style formatting for named placeholdersNejc Habjan2021-11-0851-164/+148
|
* Merge pull request #1680 from python-gitlab/jlvillal/mypy_small_files_1Nejc Habjan2021-11-0822-58/+232
|\ | | | | chore: enforce type-hints on most files in gitlab/v4/objects/
| * chore: enforce type-hints on most files in gitlab/v4/objects/jlvillal/mypy_small_files_1John L. Villalovos2021-11-0822-58/+232
|/ | | | | | | * Add type-hints to some of the files in gitlab/v4/objects/ * Fix issues detected when adding type-hints * Changed mypy exclusion to explicitly list the 13 files that have not yet had type-hints added.
* Merge pull request #1678 from python-gitlab/jlvillal/mypy_commitsNejc Habjan2021-11-082-9/+25
|\ | | | | chore: add type hints for gitlab/v4/objects/commits.py
| * chore: add type hints for gitlab/v4/objects/commits.pyjlvillal/mypy_commitsJohn L. Villalovos2021-11-072-9/+25
|/
* Merge pull request #1677 from python-gitlab/chore/ci-lock-threadsNejc Habjan2021-11-081-0/+20
|\ | | | | chore(ci): add workflow to lock old issues
| * chore(ci): add workflow to lock old issuesNejc Habjan2021-11-071-0/+20
|/
* Merge pull request #1674 from python-gitlab/jlvillal/mypy_small_files_1Nejc Habjan2021-11-077-4/+51
|\ | | | | chore: add type-hints to multiple files in gitlab/v4/objects/
| * chore: add type-hints to multiple files in gitlab/v4/objects/John L. Villalovos2021-11-077-4/+51
|/ | | | | | | | | | | | | | | | | | | | Add and/or check type-hints for the following files gitlab.v4.objects.access_requests gitlab.v4.objects.applications gitlab.v4.objects.broadcast_messages gitlab.v4.objects.deployments gitlab.v4.objects.keys gitlab.v4.objects.merge_trains gitlab.v4.objects.namespaces gitlab.v4.objects.pages gitlab.v4.objects.personal_access_tokens gitlab.v4.objects.project_access_tokens gitlab.v4.objects.tags gitlab.v4.objects.templates gitlab.v4.objects.triggers Add a 'get' method with the correct type for Managers derived from GetMixin.
* Merge pull request #1668 from python-gitlab/jlvillal/mypy_groupsNejc Habjan2021-11-072-12/+46
|\ | | | | chore: add type-hints to gitlab/v4/objects/groups.py
| * chore: add type-hints to gitlab/v4/objects/groups.pyJohn L. Villalovos2021-11-072-12/+46
|/ | | | | | | * Add type-hints to gitlab/v4/objects/groups.py * Have share() function update object attributes. * Add 'get()' method so that type-checkers will understand that getting a group is of type Group.
* Merge pull request #1673 from python-gitlab/jlvillal/mypy_merge_requestsNejc Habjan2021-11-072-17/+51
|\ | | | | chore: add type-hints to gitlab/v4/objects/merge_requests.py
| * chore: add type-hints to gitlab/v4/objects/merge_requests.pyjlvillal/mypy_merge_requestsJohn L. Villalovos2021-11-062-17/+51
|/ | | | | | | | | | * Add type-hints to gitlab/v4/objects/merge_requests.py * Add return value to cancel_merge_when_pipeline_succeeds() function as GitLab docs show it returns a value. * Add return value to approve() function as GitLab docs show it returns a value. * Add 'get()' method so that type-checkers will understand that getting a project merge request is of type ProjectMergeRequest.
* Merge pull request #1670 from python-gitlab/jlvillal/merge_requests_apiNejc Habjan2021-11-061-0/+9
|\ | | | | docs: add links to the GitLab API docs
| * docs: add links to the GitLab API docsjlvillal/merge_requests_apiJohn L. Villalovos2021-11-051-0/+9
|/ | | | | Add links to the GitLab API docs for merge_requests.py as it contains code which spans two different API documentation pages.
* refactor: use f-strings for string formattingNejc Habjan2021-11-0540-227/+206
|
* Merge pull request #1665 from python-gitlab/renovate/isort-5.xNejc Habjan2021-11-031-1/+1
|\ | | | | chore(deps): update dependency isort to v5.10.0
| * chore(deps): update dependency isort to v5.10.0Renovate Bot2021-11-031-1/+1
|/
* Merge pull request #1646 from JacobHenner/add-merge-trainsNejc Habjan2021-11-016-0/+116
|\ | | | | feat(api): add merge trains
| * feat(api): add merge trainsJacob Henner2021-10-206-0/+116
| | | | | | | | Add support for merge trains
* | chore(ci): wait for all coverage jobs before posting commentNejc Habjan2021-10-311-0/+1
| |
* | fix(build): do not include docs in wheel packageNejc Habjan2021-10-312-5/+6
| |
* | Merge pull request #1655 from StingRayZA/add-milestone-promoteNejc Habjan2021-10-313-2/+28
|\ \ | | | | | | feat(api): add project milestone promotion
| * | feat(api): add project milestone promotionRaimund Hook2021-10-273-2/+28
|/ / | | | | | | | | | | Adds promotion to Project Milestones Signed-off-by: Raimund Hook <raimund.hook@exfo.com>
* | chore(deps): update dependency types-pyyaml to v6Renovate Bot2021-10-222-2/+2
| |
* | Merge pull request #1641 from JacobHenner/add-merge-request-approval-stateNejc Habjan2021-10-204-0/+52
|\ \ | | | | | | feat(api): add merge request approval state
| * | feat(api): add merge request approval stateJacob Henner2021-10-194-0/+52
| |/ | | | | | | Add support for merge request approval state
* | Merge pull request #1610 from StingRayZA/add-label-promoteNejc Habjan2021-10-205-1/+83
|\ \ | | | | | | feat(api): add project label promotion
| * | feat(api): add project label promotionRaimund Hook2021-10-185-1/+83
|/ / | | | | | | | | | | Adds a mixin that allows the /promote endpoint to be called. Signed-off-by: Raimund Hook <raimund.hook@exfo.com>
* | fix(api): delete invalid 'project-runner get' command (#1628)Léo GATELLIER2021-10-172-17/+7
| | | | | | | | | | * fix(api): delete 'group-runner get' and 'group-runner delete' commands Co-authored-by: Léo GATELLIER <git@leogatellier.fr>
* | chore(deps): update typing dependenciesRenovate Bot2021-10-142-4/+4
| |
* | feat(objects): support delete package files APINejc Habjan2021-10-143-1/+26
| |
* | feat(objects): list starred projects of a userNejc Habjan2021-10-144-3/+73
| |
* | chore(deps): update dependency flake8 to v4Renovate Bot2021-10-121-1/+1
| |
* | docs: fix API delete key exampleBen Gray2021-10-121-1/+1
| |
* | chore(deps): update typing dependenciesRenovate Bot2021-10-122-4/+4
| |
* | Merge pull request #1629 from python-gitlab/chore/master-to-mainNejc Habjan2021-10-1230-77/+81
|\ \ | |/ |/| chore: rename `master` branch to `main`
| * chore: rename `master` branch to `main`chore/master-to-mainNejc Habjan2021-10-1130-77/+81
|/ | | | | BREAKING CHANGE: As of python-gitlab 3.0.0, the default branch for development has changed from `master` to `main`.
* chore(deps): upgrade gitlab-ce to 14.3.2-ce.0Nejc Habjan2021-10-081-1/+1
|
* docs(pipelines): document take_ownership methodNejc Habjan2021-10-081-0/+4
|
* chore(objects): remove non-existing trigger ownership methodNejc Habjan2021-10-081-17/+1
|
* Merge pull request #1616 from lmmx/patch-1Nejc Habjan2021-10-081-0/+2
|\ | | | | Document the `update` method for project variables
| * docs(api): document the update method for project variablesLouis Maddox2021-10-081-0/+2
| |
* | Merge pull request #1624 from axl89/docs-clarificationNejc Habjan2021-10-081-1/+4
|\ \ | | | | | | Clarified CI Job Token auth() caveats