summaryrefslogtreecommitdiff
path: root/gitlab
Commit message (Collapse)AuthorAgeFilesLines
* chore(api): move repository endpoints into separate modulechore/split-repository-methodsNejc Habjan2021-02-282-197/+208
|
* Merge pull request #1333 from python-gitlab/feat/user-follow-apiNejc Habjan2021-02-283-0/+138
|\ | | | | feat(users): add follow/unfollow API
| * feat(users): add follow/unfollow APIfeat/user-follow-apiMax Wittig2021-02-273-0/+138
| |
* | Merge pull request #1339 from JohnVillalovos/jlvillal/mypy_client_pyMax Wittig2021-02-272-79/+141
|\ \ | | | | | | chore: add type-hints to gitlab/client.py
| * | chore: add type-hints to gitlab/client.pyJohn L. Villalovos2021-02-262-79/+141
| | | | | | | | | | | | Adding some initial type-hints to gitlab/client.py
* | | chore: remove import of gitlab.utils from __init__.pyJohn L. Villalovos2021-02-261-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | Initially when extracting out the gitlab/client.py code we tried to remove this but functional tests failed. Later we fixed the functional test that was failing, so now remove the unneeded import.
* | | chore: improve type-hints for gitlab/base.pyJohn L. Villalovos2021-02-261-3/+5
|/ / | | | | | | Determined the base class for obj_cls and adding type-hints for it.
* | Merge pull request #1334 from JohnVillalovos/jlvillal/mypy_cliNejc Habjan2021-02-261-8/+11
|\ \ | | | | | | chore: add type-hints to gitlab/cli.py
| * | chore: add type-hints to gitlab/cli.pyJohn L. Villalovos2021-02-251-8/+11
| | |
* | | fix: remove duplicate class definitions in v4/objects/users.pyJohn L. Villalovos2021-02-251-12/+0
|/ / | | | | | | | | The classes UserStatus and UserStatusManager were each declared twice. Remove the duplicate declarations.
* | Merge pull request #1329 from JohnVillalovos/jlvillal/mypy_constMax Wittig2021-02-251-30/+30
|\ \ | | | | | | Add type-hints to gitlab/const.py
| * | chore: add type-hints to gitlab/const.pyJohn L. Villalovos2021-02-251-30/+30
| | |
* | | Merge pull request #1330 from JohnVillalovos/jlvillal/mypy_utilsMax Wittig2021-02-251-6/+14
|\ \ \ | | | | | | | | chore: add type hints to gitlab/utils.py
| * | | chore: add type hints to gitlab/utils.pyJohn L. Villalovos2021-02-251-6/+14
| |/ /
* | | Merge pull request #1331 from JohnVillalovos/jlvillal/mypy_configMax Wittig2021-02-251-4/+7
|\ \ \ | | | | | | | | chore: add type-hints to gitlab/config.py
| * | | chore: add type-hints to gitlab/config.pyJohn L. Villalovos2021-02-251-4/+7
| |/ /
* | | fix: wrong variable nameJohn L. Villalovos2021-02-251-1/+1
|/ / | | | | | | | | Discovered this when I ran flake8 on the file. Unfortunately I was the one who introduced this wrong variable name :(
* | Merge pull request #1319 from JohnVillalovos/jlvillal/import_starNejc Habjan2021-02-2557-114/+244
|\ \ | |/ |/| chore: remove usage of 'from ... import *'
| * chore: remove usage of 'from ... import *'John L. Villalovos2021-02-2357-114/+244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In gitlab/v4/objects/*.py remove usage of: * from gitlab.base import * * from gitlab.mixins import * Change them to: * from gitlab.base import CLASS_NAME * from gitlab.mixins import CLASS_NAME Programmatically update code to explicitly import needed classes only. After the change the output of: $ flake8 gitlab/v4/objects/*py | grep 'REST\|Mixin' Is empty. Before many messages about unable to determine if it was a valid name.
* | test: don't add duplicate fixtureMax Wittig2021-02-241-26/+0
| | | | | | Co-authored-by: Nejc Habjan <hab.nejc@gmail.com>
* | feat(projects): add project access token apiMax Wittig2021-02-243-0/+159
|/
* fix: undefined name errorsJohn L. Villalovos2021-02-232-4/+8
| | | | Discovered that there were some undefined names.
* chore: remove unused function _construct_url()John L. Villalovos2021-02-231-18/+0
| | | | | | The function _construct_url() was used by the v3 API. All usage of the function was removed in commit fe89b949922c028830dd49095432ba627d330186
* chore: add type hints to gitlab/base.pyJohn L. Villalovos2021-02-221-29/+34
|
* feat: add an initial mypy test to tox.iniJohn L. Villalovos2021-02-222-2/+2
| | | | Add an initial mypy test to test gitlab/base.py and gitlab/__init__.py
* chore: remove usage of 'from ... import *' in client.pyJohn L. Villalovos2021-02-221-16/+16
| | | | | | | | | | | | | | | | In gitlab/client.py remove usage of: * from gitlab.const import * * from gitlab.exceptions import * Change them to: * import gitlab.const * import gitlab.exceptions Update code to explicitly reference things in gitlab.const and gitlab.exceptions A flake8 run no longer lists any undefined variables. Before it listed possible undefined variables.
* chore: explicitly import gitlab.v4.objects/cliJohn L. Villalovos2021-02-212-10/+29
| | | | | | | | | | | | | | | | | As we only support the v4 Gitlab API, explicitly import gitlab.v4.objects and gitlab.v4.clie instead of dynamically importing it depending on the API version. This has the added benefit of mypy being able to type check the Gitlab __init__() function as currently it will fail if we enable type checking of __init__() it will fail. Also, this also helps by not confusing tools like pyinstaller/cx_freeze with dynamic imports so you don't need hooks for standalone executables. And according to https://docs.gitlab.com/ee/api/, "GraphQL co-exists with the current v4 REST API. If we have a v5 API, this should be a compatibility layer on top of GraphQL."
* chore(objects): make Project refreshableNejc Habjan2021-02-211-1/+1
| | | | Helps getting the real state of the project from the server.
* feat(objects): add Release Links API supportNejc Habjan2021-02-216-14/+180
|
* Merge pull request #1308 from Sineaggi/add-project-audit-endpointNejc Habjan2021-02-203-0/+104
|\ | | | | feat: add project audit endpoint
| * chore(tests): remove unused URL segmentNejc Habjan2021-02-201-2/+2
| |
| * feat: add project audit endpointClayton Walker2021-02-193-0/+104
| |
* | refactor: move Gitlab and GitlabList to gitlab/client.pyJohn L. Villalovos2021-02-183-834/+860
|/ | | | | | | | Move the classes Gitlab and GitlabList from gitlab/__init__.py to the newly created gitlab/client.py file. Update one test case that was depending on requests being defined in gitlab/__init__.py
* feat: add personal access token APIfeat/personal-access-token-apiMax Wittig2021-02-174-0/+66
| | | | See: https://docs.gitlab.com/ee/api/personal_access_tokens.html
* chore: remove unused ALLOWED_KEYSET_ENDPOINTS variableJohn L. Villalovos2021-02-151-2/+0
| | | | | | | | | The variable ALLOWED_KEYSET_ENDPOINTS was added in commit f86ef3bbdb5bffa1348a802e62b281d3f31d33ad. Then most of that commit was removed in commit e71fe16b47835aa4db2834e98c7ffc6bdec36723, but ALLOWED_KEYSET_ENDPOINTS was missed.
* Merge pull request #1271 from ↵Nejc Habjan2021-02-151-2/+2
|\ | | | | | | | | allcloud-jonathan/feature/honor-bool-for-delete-source fix: honor parameter value passed
| * fix: honor parameter value passedJonathan Vogt2021-02-151-2/+2
| | | | | | | | | | | | Gitlab allows setting the defaults for MR to delete the source. Also the inline help of the CLI suggest that a boolean is expected, but no matter what value you set, it will always delete.
* | chore: remove Python 2 codeJohn L. Villalovos2021-02-151-4/+1
|/ | | | | | | httplib is a Python 2 library. It was renamed to http.client in Python 3. https://docs.python.org/2.7/library/httplib.html
* refactor(api): explicitly export classes for star importsrefactor/split-objectsNejc Habjan2021-02-0756-9/+557
|
* refactor(v4): split objects and managers per API resourceNejc Habjan2021-02-0754-5850/+6167
|
* feat(issues): add missing get verb to IssueManagerfeat/single-issue-apiNejc Habjan2021-02-062-3/+22
|
* feat: import from bitbucket serverDan Fuchs2021-02-042-3/+129
| | | | | | | | | | | | | I'd like to use this libary to automate importing Bitbucket Server repositories into GitLab. There is a [GitLab API endpoint](https://docs.gitlab.com/ee/api/import.html#import-repository-from-bitbucket-server) to do this, but it is not exposed through this library. * Add an `import_bitbucket_server` method to the `ProjectManager`. This method calls this GitLab API endpoint: https://docs.gitlab.com/ee/api/import.html#import-repository-from-bitbucket-server * Modify `import_gitlab` method docstring for python3 compatibility * Add a skipped stub test for the existing `import_github` method
* docs: add docs and examples for custom user agentfeat/override-user-agentNejc Habjan2021-01-311-0/+1
|
* test(api,cli): add tests for custom user agentNejc Habjan2021-01-312-2/+46
|
* feat(api,cli): make user agent configurableNejc Habjan2021-01-314-8/+34
|
* feat: support multipart uploadsfeat/multipart-uploadsMax Wittig2021-01-282-9/+11
|
* Merge pull request #1250 from JacobHenner/feature/add-minimal-accessNejc Habjan2021-01-251-0/+1
|\ | | | | feat: Add MINIMAL_ACCESS constant
| * feat: add MINIMAL_ACCESS constantJacob Henner2020-12-151-0/+1
| | | | | | | | | | | | A "minimal access" access level was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/220203) in GitLab 13.5.
* | fix(api): use RetrieveMixin for ProjectLabelManagerMarvin Scholz2021-01-101-1/+1
|/ | | | | Allows to get a single label from a project, which was missing before even though the GitLab API has the ability to.
* Merge pull request #1200 from ↵Max Wittig2020-10-292-8/+383
|\ | | | | | | | | robinson96/feature/project_merge_request_approval_rules Feature/project merge request approval rules