Bug Fixes
- Handle situation where GitLab does not return values
([`cb824a4`](https://github.com/python-gitlab/python-gitlab/commit/cb824a49af9b0d155b89fe66a4cfebefe52beb7a))
If a query returns more than 10,000 records than the following values are NOT returned:
x.total_pages x.total
Modify the code to allow no value to be set for these values. If there is not a value returned the
functions will now return None.
Update unit test so no longer `xfail`
https://docs.gitlab.com/ee/user/gitlab_com/index.html#pagination-response-headers
Closes 1686
- Raise error if there is a 301/302 redirection
([`d56a434`](https://github.com/python-gitlab/python-gitlab/commit/d56a4345c1ae05823b553e386bfa393541117467))
Before we raised an error if there was a 301, 302 redirect but only from an http URL to an https
URL. But we didn't raise an error for any other redirects.
This caused two problems:
1. PUT requests that are redirected get changed to GET requests which don't perform the desired
action but raise no error. This is because the GET response succeeds but since it wasn't a PUT it
doesn't update. See issue: https://github.com/python-gitlab/python-gitlab/issues/1432 2. POST
requests that are redirected also got changed to GET requests. They also caused hard to debug
tracebacks for the user. See issue: https://github.com/python-gitlab/python-gitlab/issues/1477
Correct this by always raising a RedirectError exception and improve the exception message to let
them know what was redirected.
Closes: 1485
Closes: 1432
Closes: 1477
- Stop encoding '.' to '%2E'
([`702e41d`](https://github.com/python-gitlab/python-gitlab/commit/702e41dd0674e76b292d9ea4f559c86f0a99edfe))
Forcing the encoding of '.' to '%2E' causes issues. It also goes against the RFC:
https://datatracker.ietf.org/doc/html/rfc3986.html#section-2.3
From the RFC: For consistency, percent-encoded octets in the ranges of ALPHA (%41-%5A and %61-%7A),
DIGIT (%30-%39), hyphen (%2D), period (%2E), underscore (%5F), or tilde (%7E) should not be
created by URI producers...
Closes 1006 Related 1356 Related 1561
BREAKING CHANGE: stop encoding '.' to '%2E'. This could potentially be a breaking change for users
who have incorrectly configured GitLab servers which don't handle period '.' characters correctly.
- **api**: Delete invalid 'project-runner get' command
([1628](https://github.com/python-gitlab/python-gitlab/pull/1628),
[`905781b`](https://github.com/python-gitlab/python-gitlab/commit/905781bed2afa33634b27842a42a077a160cffb8))
* fix(api): delete 'group-runner get' and 'group-runner delete' commands
Co-authored-by: Léo GATELLIER <gitleogatellier.fr>
- **api**: Replace deprecated attribute in delete_in_bulk()
([1536](https://github.com/python-gitlab/python-gitlab/pull/1536),
[`c59fbdb`](https://github.com/python-gitlab/python-gitlab/commit/c59fbdb0e9311fa84190579769e3c5c6aeb07fe5))
BREAKING CHANGE: The deprecated `name_regex` attribute has been removed in favor of
`name_regex_delete`. (see https://gitlab.com/gitlab-org/gitlab/-/commit/ce99813cf54)
- **build**: Do not include docs in wheel package
([`68a97ce`](https://github.com/python-gitlab/python-gitlab/commit/68a97ced521051afb093cf4fb6e8565d9f61f708))
- **build**: Do not package tests in wheel
([`969dccc`](https://github.com/python-gitlab/python-gitlab/commit/969dccc084e833331fcd26c2a12ddaf448575ab4))
- **objects**: Rename confusing `to_project_id` argument
([`ce4bc0d`](https://github.com/python-gitlab/python-gitlab/commit/ce4bc0daef355e2d877360c6e496c23856138872))
BREAKING CHANGE: rename confusing `to_project_id` argument in transfer_project to `project_id`
(`--project-id` in CLI). This is used for the source project, not for the target namespace.
Chores
- Add .env as a file that search tools should not ignore
([`c9318a9`](https://github.com/python-gitlab/python-gitlab/commit/c9318a9f73c532bee7ba81a41de1fb521ab25ced))
The `.env` file was not set as a file that should not be ignored by search tools. We want to have
the search tools search any `.env` files.
- Add and document optional parameters for get MR
([`bfa3dbe`](https://github.com/python-gitlab/python-gitlab/commit/bfa3dbe516cfa8824b720ba4c52dd05054a855d7))
Add and document (some of the) optional parameters that can be done for a
`project.merge_requests.get()`
Closes 1775
- Add get() methods for GetWithoutIdMixin based classes
([`d27c50a`](https://github.com/python-gitlab/python-gitlab/commit/d27c50ab9d55dd715a7bee5b0c61317f8565c8bf))
Add the get() methods for the GetWithoutIdMixin based classes.
Update the tests/meta/test_ensure_type_hints.py tests to check to ensure that the get methods are
defined with the correct return type.
- Add initial pylint check
([`041091f`](https://github.com/python-gitlab/python-gitlab/commit/041091f37f9ab615e121d5aafa37bf23ef72ba13))
Initial pylint check is added. A LONG list of disabled checks is also added. In the future we should
work through the list and resolve the errors or disable them on a more granular level.
- Add Python 3.11 testing
([`b5ec192`](https://github.com/python-gitlab/python-gitlab/commit/b5ec192157461f7feb326846d4323c633658b861))
Add a unit test for Python 3.11. This will use the latest version of Python 3.11 that is available
from https://github.com/actions/python-versions/
At this time it is 3.11.0-alpha.2 but will move forward over time until the final 3.11 release and
updates. So 3.11.0, 3.11.1, ... will be matched.
- Add running unit tests on windows/macos
([`ad5d60c`](https://github.com/python-gitlab/python-gitlab/commit/ad5d60c305857a8e8c06ba4f6db788bf918bb63f))
Add running the unit tests on windows-latest and macos-latest with Python 3.10.
- Add test case to show branch name with period works
([`ea97d7a`](https://github.com/python-gitlab/python-gitlab/commit/ea97d7a68dd92c6f43dd1f307d63b304137315c4))
Add a test case to show that a branch name with a period can be fetched with a `get()`
Closes: 1715
- Add type hints for gitlab/v4/objects/commits.py
([`dc096a2`](https://github.com/python-gitlab/python-gitlab/commit/dc096a26f72afcebdac380675749a6991aebcd7c))
- Add type-hints to gitlab/v4/objects/epics.py
([`d4adf8d`](https://github.com/python-gitlab/python-gitlab/commit/d4adf8dfd2879b982ac1314e89df76cb61f2dbf9))
- Add type-hints to gitlab/v4/objects/files.py
([`0c22bd9`](https://github.com/python-gitlab/python-gitlab/commit/0c22bd921bc74f48fddd0ff7d5e7525086264d54))
- Add type-hints to gitlab/v4/objects/geo_nodes.py
([`13243b7`](https://github.com/python-gitlab/python-gitlab/commit/13243b752fecc54ba8fc0967ba9a223b520f4f4b))
- Add type-hints to gitlab/v4/objects/groups.py
([`94dcb06`](https://github.com/python-gitlab/python-gitlab/commit/94dcb066ef3ff531778ef4efb97824f010b4993f))
* 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.
- Add type-hints to gitlab/v4/objects/issues.py
([`93e39a2`](https://github.com/python-gitlab/python-gitlab/commit/93e39a2947c442fb91f5c80b34008ca1d27cdf71))
- Add type-hints to gitlab/v4/objects/jobs.py
([`e8884f2`](https://github.com/python-gitlab/python-gitlab/commit/e8884f21cee29a0ce4428ea2c4b893d1ab922525))
- Add type-hints to gitlab/v4/objects/labels.py
([`d04e557`](https://github.com/python-gitlab/python-gitlab/commit/d04e557fb09655a0433363843737e19d8e11c936))
- Add type-hints to gitlab/v4/objects/merge_request_approvals.py
([`cf3a99a`](https://github.com/python-gitlab/python-gitlab/commit/cf3a99a0c4cf3dc51e946bf29dc44c21b3be9dac))
- Add type-hints to gitlab/v4/objects/merge_requests.py
([`f9c0ad9`](https://github.com/python-gitlab/python-gitlab/commit/f9c0ad939154375b9940bf41a7e47caab4b79a12))
* 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.
- Add type-hints to gitlab/v4/objects/milestones.py
([`8b6078f`](https://github.com/python-gitlab/python-gitlab/commit/8b6078faf02fcf9d966e2b7d1d42722173534519))
- Add type-hints to gitlab/v4/objects/pipelines.py
([`cb3ad6c`](https://github.com/python-gitlab/python-gitlab/commit/cb3ad6ce4e2b4a8a3fd0e60031550484b83ed517))
- Add type-hints to gitlab/v4/objects/repositories.py
([`00d7b20`](https://github.com/python-gitlab/python-gitlab/commit/00d7b202efb3a2234cf6c5ce09a48397a40b8388))
- Add type-hints to gitlab/v4/objects/services.py
([`8da0b75`](https://github.com/python-gitlab/python-gitlab/commit/8da0b758c589f608a6ae4eeb74b3f306609ba36d))
- Add type-hints to gitlab/v4/objects/sidekiq.py
([`a91a303`](https://github.com/python-gitlab/python-gitlab/commit/a91a303e2217498293cf709b5e05930d41c95992))
- Add type-hints to gitlab/v4/objects/snippets.py
([`f256d4f`](https://github.com/python-gitlab/python-gitlab/commit/f256d4f6c675576189a72b4b00addce440559747))
- Add type-hints to gitlab/v4/objects/users.py
([`88988e3`](https://github.com/python-gitlab/python-gitlab/commit/88988e3059ebadd3d1752db60c2d15b7e60e7c46))
Adding type-hints to gitlab/v4/objects/users.py
- Add type-hints to multiple files in gitlab/v4/objects/
([`8b75a77`](https://github.com/python-gitlab/python-gitlab/commit/8b75a7712dd1665d4b3eabb0c4594e80ab5e5308))
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.
- Add type-hints to setup.py and check with mypy
([`06184da`](https://github.com/python-gitlab/python-gitlab/commit/06184daafd5010ba40bb39a0768540b7e98bd171))
- Attempt to be more informative for missing attributes
([`1839c9e`](https://github.com/python-gitlab/python-gitlab/commit/1839c9e7989163a5cc9a201241942b7faca6e214))
A commonly reported issue from users on Gitter is that they get an AttributeError for an attribute
that should be present. This is often caused due to the fact that they used the `list()` method to
retrieve the object and objects retrieved this way often only have a subset of the full data.
Add more details in the AttributeError message that explains the situation to users. This will
hopefully allow them to resolve the issue.
Update the FAQ in the docs to add a section discussing the issue.
Closes 1138
- Attempt to fix flaky functional test
([`487b9a8`](https://github.com/python-gitlab/python-gitlab/commit/487b9a875a18bb3b4e0d49237bb7129d2c6dba2f))
Add an additional check to attempt to solve the flakiness of the
test_merge_request_should_remove_source_branch() test.
- Check setup.py with mypy
([`77cb7a8`](https://github.com/python-gitlab/python-gitlab/commit/77cb7a8f64f25191d84528cc61e1d246296645c9))
Prior commit 06184daafd5010ba40bb39a0768540b7e98bd171 fixed the type-hints for setup.py. But missed
removing 'setup' from the exclude list in pyproject.toml for mypy checks.
Remove 'setup' from the exclude list in pyproject.toml from mypy checks.
- Clean up install docs
([`a5d8b7f`](https://github.com/python-gitlab/python-gitlab/commit/a5d8b7f2a9cf019c82bef1a166d2dc24f93e1992))
- Convert to using type-annotations for managers
([`d8de4dc`](https://github.com/python-gitlab/python-gitlab/commit/d8de4dc373dc608be6cf6ba14a2acc7efd3fa7a7))
Convert our manager usage to be done via type annotations.
Now to define a manager to be used in a RESTObject subclass can simply do: class
ExampleClass(CRUDMixin, RESTObject): my_manager: MyManager
Any type-annotation that annotates it to be of type *Manager (with the exception of RESTManager)
will cause the manager to be created on the object.
- Correct test_groups.py test
([`9c878a4`](https://github.com/python-gitlab/python-gitlab/commit/9c878a4090ddb9c0ef63d06b57eb0e4926276e2f))
The test was checking twice if the same group3 was not in the returned list. Should have been
checking for group3 and group4.
Also added a test that only skipped one group and checked that the group was not in the returned
list and a non-skipped group was in the list.
- Create a 'tests/meta/' directory and put test_mro.py in it
([`94feb8a`](https://github.com/python-gitlab/python-gitlab/commit/94feb8a5534d43a464b717275846faa75783427e))
The 'test_mro.py' file is not really a unit test but more of a 'meta' check on the validity of the
code base.
- Enable 'warn_redundant_casts' for mypy
([`f40e9b3`](https://github.com/python-gitlab/python-gitlab/commit/f40e9b3517607c95f2ce2735e3b08ffde8d61e5a))
Enable 'warn_redundant_casts'for mypy and resolve one issue.
- Enable mypy for tests/meta/*
([`ba7707f`](https://github.com/python-gitlab/python-gitlab/commit/ba7707f6161463260710bd2b109b172fd63472a1))
- Enable subset of the 'mypy --strict' options that work
([`a86d049`](https://github.com/python-gitlab/python-gitlab/commit/a86d0490cadfc2f9fe5490879a1258cf264d5202))
Enable the subset of the 'mypy --strict' options that work with no changes to the code.
- Enforce type-hints on most files in gitlab/v4/objects/
([`7828ba2`](https://github.com/python-gitlab/python-gitlab/commit/7828ba2fd13c833c118a673bac09b215587ba33b))
* 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.
- Ensure get() methods have correct type-hints
([`46773a8`](https://github.com/python-gitlab/python-gitlab/commit/46773a82565cef231dc3391c12f296ac307cb95c))
Fix classes which don't have correct 'get()' methods for classes derived from GetMixin.
Add a unit test which verifies that classes have the correct return type in their 'get()' method.
- Ensure reset_gitlab() succeeds
([`0aa0b27`](https://github.com/python-gitlab/python-gitlab/commit/0aa0b272a90b11951f900b290a8154408eace1de))
Ensure reset_gitlab() succeeds by waiting to make sure everything has been deleted as expected. If
the timeout is exceeded fail the test.
Not using `wait_for_sidekiq` as it didn't work. During testing I didn't see any sidekiq processes as
being busy even though not everything was deleted.
- Fix functional test failure if config present
([`c8256a5`](https://github.com/python-gitlab/python-gitlab/commit/c8256a5933d745f70c7eea0a7d6230b51bac0fbc))
Fix functional test failure if config present and configured with token.
Closes: 1791
- Fix issue with adding type-hints to 'manager' attribute
([`9a451a8`](https://github.com/python-gitlab/python-gitlab/commit/9a451a892d37e0857af5c82c31a96d68ac161738))
When attempting to add type-hints to the the 'manager' attribute into a RESTObject derived class it
would break things.
This was because our auto-manager creation code would automatically add the specified annotated
manager to the 'manager' attribute. This breaks things.
Now check in our auto-manager creation if our attribute is called 'manager'. If so we ignore it.
- Fix pylint error "expression-not-assigned"
([`a90eb23`](https://github.com/python-gitlab/python-gitlab/commit/a90eb23cb4903ba25d382c37ce1c0839642ba8fd))
Fix pylint error "expression-not-assigned" and remove check from the disabled list.
And I personally think it is much more readable now and is less lines of code.
- Fix renovate setup for gitlab docker image
([`49af15b`](https://github.com/python-gitlab/python-gitlab/commit/49af15b3febda5af877da06c3d8c989fbeede00a))
- Fix type-check issue shown by new requests-types
([`0ee9aa4`](https://github.com/python-gitlab/python-gitlab/commit/0ee9aa4117b1e0620ba3cade10ccb94944754071))
types-requests==2.25.9 changed a type-hint. Update code to handle this change.
- Fix typo in MR documentation
([`2254222`](https://github.com/python-gitlab/python-gitlab/commit/2254222094d218b31a6151049c7a43e19c593a97))
- Fix unit test if config file exists locally
([`c80b3b7`](https://github.com/python-gitlab/python-gitlab/commit/c80b3b75aff53ae228ec05ddf1c1e61d91762846))
Closes 1764
- Generate artifacts for the docs build in the CI
([`85b43ae`](https://github.com/python-gitlab/python-gitlab/commit/85b43ae4a96b72e2f29e36a0aca5321ed78f28d2))
When building the docs store the created documentation as an artifact so that it can be viewed.
This will create a html-docs.zip file which can be downloaded containing the contents of the
`build/sphinx/html/` directory. It can be downloaded, extracted, and then viewed. This can be
useful in reviewing changes to the documentation.
See https://github.com/actions/upload-artifact for more information on how this works.
- Github workflow: cancel prior running jobs on new push
([`fd81569`](https://github.com/python-gitlab/python-gitlab/commit/fd8156991556706f776c508c373224b54ef4e14f))
If new new push is done to a pull-request, then cancel any already running github workflow jobs in
order to conserve resources.
- Have renovate upgrade black version
([1700](https://github.com/python-gitlab/python-gitlab/pull/1700),
[`21228cd`](https://github.com/python-gitlab/python-gitlab/commit/21228cd14fe18897485728a01c3d7103bff7f822))
renovate is not upgrading the `black` package. There is an open issue[1] about this.
Also change .commitlintrc.json to allow 200 character footer lines in the commit message. Otherwise
would be forced to split the URL across multiple lines making it un-clickable :(
Use suggested work-arounds from:
https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
[1] https://github.com/renovatebot/renovate/issues/7167
- Improve type-hinting for managers
([`c9b5d3b`](https://github.com/python-gitlab/python-gitlab/commit/c9b5d3bac8f7c1f779dd57653f718dd0fac4db4b))
The 'managers' are dynamically created. This unfortunately means that we don't have any type-hints
for them and so editors which understand type-hints won't know that they are valid attributes.
* Add the type-hints for the managers we define. * Add a unit test that makes sure that the
type-hints and the '_managers' attribute are kept in sync with each other. * Add unit test that
makes sure specified managers in '_managers' have a name ending in 'Managers' to keep with current
convention. * Make RESTObject._managers always present with a default value of None. * Fix a
type-issue revealed now that mypy knows what the type is
- Remove ' type: ignore' for new mypy version
([`34a5f22`](https://github.com/python-gitlab/python-gitlab/commit/34a5f22c81590349645ce7ba46d4153d6de07d8c))
mypy 0.920 now understands the type of 'http.client.HTTPConnection.debuglevel' so we remove the
'type: ignore' comment to make mypy pass
- Remove duplicate/no-op tests from meta/test_ensure_type_hints
([`a2f59f4`](https://github.com/python-gitlab/python-gitlab/commit/a2f59f4e3146b8871a9a1d66ee84295b44321ecb))
Before we were generating 725 tests for the meta/test_ensure_type_hints.py tests. Which isn't a huge
concern as it was fairly fast. But when we had a failure we would usually get two failures for
each problem as the same test was being run multiple times.
Changed it so that: 1. Don't add tests that are not for *Manager classes 2. Use a set so that we
don't have duplicate tests.
After doing that our generated test count in meta/test_ensure_type_hints.py went from 725 to 178
tests.
Additionally removed the parsing of `pyproject.toml` to generate files to ignore as we have finished
adding type-hints to all files in gitlab/v4/objects/. This also means we no longer use the toml
library so remove installation of `types-toml`.
To determine the test count the following command was run: $ tox -e py39 -- -k
test_ensure_type_hints
- Remove pytest-console-scripts specific config
([`e80dcb1`](https://github.com/python-gitlab/python-gitlab/commit/e80dcb1dc09851230b00f8eb63e0c78fda060392))
Remove the pytest-console-scripts specific config from the global '[pytest]' config section.
Use the command line option `--script-launch-mode=subprocess`
Closes 1713
- Rename `master` branch to `main`
([`545f8ed`](https://github.com/python-gitlab/python-gitlab/commit/545f8ed24124837bf4e55aa34e185270a4b7aeff))
BREAKING CHANGE: As of python-gitlab 3.0.0, the default branch for development has changed from
`master` to `main`.
- Run pre-commit on changes to the config file
([`5f10b3b`](https://github.com/python-gitlab/python-gitlab/commit/5f10b3b96d83033805757d72269ad0a771d797d4))
If .pre-commit-config.yaml or .github/workflows/pre_commit.yml are updated then run pre-commit.
- Set pre-commit mypy args to empty list
([`b67a6ad`](https://github.com/python-gitlab/python-gitlab/commit/b67a6ad1f81dce4670f9820750b411facc01a048))
https://github.com/pre-commit/mirrors-mypy/blob/master/.pre-commit-hooks.yaml
Sets some default args which seem to be interfering with things. Plus we set all of our args in the
`pyproject.toml` file.
- Skip a functional test if not using >= py3.9
([`ac9b595`](https://github.com/python-gitlab/python-gitlab/commit/ac9b59591a954504d4e6e9b576b7a43fcb2ddaaa))
One of the tests requires Python 3.9 or higher to run. Mark the test to be skipped if running Python
less than 3.9.
- Update version in docker-compose.yml
([`79321aa`](https://github.com/python-gitlab/python-gitlab/commit/79321aa0e33f0f4bd2ebcdad47769a1a6e81cba8))
When running with docker-compose on Ubuntu 20.04 I got the error:
$ docker-compose up ERROR: The Compose file './docker-compose.yml' is invalid because:
networks.gitlab-network value Additional properties are not allowed ('name' was unexpected)
Changing the version in the docker-compose.yml file fro '3' to '3.5' resolved the issue.
- Use constants from gitlab.const module
([`6b8067e`](https://github.com/python-gitlab/python-gitlab/commit/6b8067e668b6a37a19e07d84e9a0d2d2a99b4d31))
Have code use constants from the gitlab.const module instead of from the top-level gitlab module.
- **api**: Temporarily remove topic delete endpoint
([`e3035a7`](https://github.com/python-gitlab/python-gitlab/commit/e3035a799a484f8d6c460f57e57d4b59217cd6de))
It is not yet available upstream.
- **ci**: Add workflow to lock old issues
([`a7d64fe`](https://github.com/python-gitlab/python-gitlab/commit/a7d64fe5696984aae0c9d6d6b1b51877cc4634cf))
- **ci**: Enable renovate for pre-commit
([`1ac4329`](https://github.com/python-gitlab/python-gitlab/commit/1ac432900d0f87bb83c77aa62757f8f819296e3e))
- **ci**: Wait for all coverage jobs before posting comment
([`c7fdad4`](https://github.com/python-gitlab/python-gitlab/commit/c7fdad42f68927d79e0d1963ade3324370b9d0e2))
- **deps**: Update dependency argcomplete to v2
([`c6d7e9a`](https://github.com/python-gitlab/python-gitlab/commit/c6d7e9aaddda2f39262b695bb98ea4d90575fcce))
- **deps**: Update dependency black to v21
([`5bca87c`](https://github.com/python-gitlab/python-gitlab/commit/5bca87c1e3499eab9b9a694c1f5d0d474ffaca39))
- **deps**: Update dependency black to v21.12b0
([`ab841b8`](https://github.com/python-gitlab/python-gitlab/commit/ab841b8c63183ca20b866818ab2f930a5643ba5f))
- **deps**: Update dependency flake8 to v4
([`79785f0`](https://github.com/python-gitlab/python-gitlab/commit/79785f0bee2ef6cc9872f816a78c13583dfb77ab))
- **deps**: Update dependency isort to v5.10.0
([`ae62468`](https://github.com/python-gitlab/python-gitlab/commit/ae6246807004b84d3b2acd609a70ce220a0ecc21))
- **deps**: Update dependency isort to v5.10.1
([`2012975`](https://github.com/python-gitlab/python-gitlab/commit/2012975ea96a1d3924d6be24aaf92a025e6ab45b))
- **deps**: Update dependency mypy to v0.920
([`a519b2f`](https://github.com/python-gitlab/python-gitlab/commit/a519b2ffe9c8a4bb42d6add5117caecc4bf6ec66))
- **deps**: Update dependency mypy to v0.930
([`ccf8190`](https://github.com/python-gitlab/python-gitlab/commit/ccf819049bf2a9e3be0a0af2a727ab53fc016488))
- **deps**: Update dependency requests to v2.27.0
([`f8c3d00`](https://github.com/python-gitlab/python-gitlab/commit/f8c3d009db3aca004bbd64894a795ee01378cd26))
- **deps**: Update dependency sphinx to v4
([`73745f7`](https://github.com/python-gitlab/python-gitlab/commit/73745f73e5180dd21f450ac4d8cbcca19930e549))
- **deps**: Update dependency sphinx to v4.3.0
([`57283fc`](https://github.com/python-gitlab/python-gitlab/commit/57283fca5890f567626235baaf91ca62ae44ff34))
- **deps**: Update dependency sphinx to v4.3.1
([`93a3893`](https://github.com/python-gitlab/python-gitlab/commit/93a3893977d4e3a3e1916a94293e66373b1458fb))
- **deps**: Update dependency sphinx to v4.3.2
([`2210e56`](https://github.com/python-gitlab/python-gitlab/commit/2210e56da57a9e82e6fd2977453b2de4af14bb6f))
- **deps**: Update dependency types-pyyaml to v5.4.10
([`bdb6cb9`](https://github.com/python-gitlab/python-gitlab/commit/bdb6cb932774890752569ebbc86509e011728ae6))
- **deps**: Update dependency types-pyyaml to v6
([`0b53c0a`](https://github.com/python-gitlab/python-gitlab/commit/0b53c0a260ab2ec2c5ddb12ca08bfd21a24f7a69))
- **deps**: Update dependency types-pyyaml to v6.0.1
([`a544cd5`](https://github.com/python-gitlab/python-gitlab/commit/a544cd576c127ba1986536c9ea32daf2a42649d4))
- **deps**: Update dependency types-requests to v2.25.12
([`205ad5f`](https://github.com/python-gitlab/python-gitlab/commit/205ad5fe0934478eb28c014303caa178f5b8c7ec))
- **deps**: Update dependency types-requests to v2.25.9
([`e3912ca`](https://github.com/python-gitlab/python-gitlab/commit/e3912ca69c2213c01cd72728fd669724926fd57a))
- **deps**: Update dependency types-requests to v2.26.0
([`7528d84`](https://github.com/python-gitlab/python-gitlab/commit/7528d84762f03b668e9d63a18a712d7224943c12))
- **deps**: Update dependency types-requests to v2.26.2
([`ac7e329`](https://github.com/python-gitlab/python-gitlab/commit/ac7e32989a1e7b217b448f57bf2943ff56531983))
- **deps**: Update dependency types-setuptools to v57.4.3
([`ec2c68b`](https://github.com/python-gitlab/python-gitlab/commit/ec2c68b0b41ac42a2bca61262a917a969cbcbd09))
- **deps**: Update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v6
([`fb9110b`](https://github.com/python-gitlab/python-gitlab/commit/fb9110b1849cea8fa5eddf56f1dbfc1c75f10ad9))
- **deps**: Update pre-commit hook psf/black to v21
([`b86e819`](https://github.com/python-gitlab/python-gitlab/commit/b86e819e6395a84755aaf42334b17567a1bed5fd))
- **deps**: Update pre-commit hook pycqa/flake8 to v4
([`98a5592`](https://github.com/python-gitlab/python-gitlab/commit/98a5592ae7246bf927beb3300211007c0fadba2f))
- **deps**: Update pre-commit hook pycqa/isort to v5.10.1
([`8ac4f4a`](https://github.com/python-gitlab/python-gitlab/commit/8ac4f4a2ba901de1ad809e4fc2fe787e37703a50))
- **deps**: Update python docker tag to v3.10
([`b3d6d91`](https://github.com/python-gitlab/python-gitlab/commit/b3d6d91fed4e5b8424e1af9cadb2af5b6cd8162f))
- **deps**: Update typing dependencies
([`1f95613`](https://github.com/python-gitlab/python-gitlab/commit/1f9561314a880048227b6f3ecb2ed59e60200d19))
- **deps**: Update typing dependencies
([`8d4c953`](https://github.com/python-gitlab/python-gitlab/commit/8d4c95358c9e61c1cfb89562252498093f56d269))
- **deps**: Update typing dependencies
([`4170dbe`](https://github.com/python-gitlab/python-gitlab/commit/4170dbe00112378a523b0fdf3208e8fa4bc5ef00))
- **deps**: Update typing dependencies
([`4eb8ec8`](https://github.com/python-gitlab/python-gitlab/commit/4eb8ec874083adcf86a1781c7866f9dd014f6d27))
- **deps**: Upgrade gitlab-ce to 14.3.2-ce.0
([`5a1678f`](https://github.com/python-gitlab/python-gitlab/commit/5a1678f43184bd459132102cc13cf8426fe0449d))
- **deps**: Upgrade mypy pre-commit hook
([`e19e4d7`](https://github.com/python-gitlab/python-gitlab/commit/e19e4d7cdf9cd04359cd3e95036675c81f4e1dc5))
- **docs**: Link to main, not master
([`af0cb4d`](https://github.com/python-gitlab/python-gitlab/commit/af0cb4d18b8bfbc0624ea2771d73544dc1b24b54))
- **docs**: Load autodoc-typehints module
([`bd366ab`](https://github.com/python-gitlab/python-gitlab/commit/bd366ab9e4b552fb29f7a41564cc180a659bba2f))
- **docs**: Use builtin autodoc hints
([`5e9c943`](https://github.com/python-gitlab/python-gitlab/commit/5e9c94313f6714a159993cefb488aca3326e3e66))
- **objects**: Remove non-existing trigger ownership method
([`8dc7f40`](https://github.com/python-gitlab/python-gitlab/commit/8dc7f40044ce8c478769f25a87c5ceb1aa76b595))
- **tests**: Apply review suggestions
([`381c748`](https://github.com/python-gitlab/python-gitlab/commit/381c748415396e0fe54bb1f41a3303bab89aa065))
Documentation
- Add links to the GitLab API docs
([`e3b5d27`](https://github.com/python-gitlab/python-gitlab/commit/e3b5d27bde3e104e520d976795cbcb1ae792fb05))
Add links to the GitLab API docs for merge_requests.py as it contains code which spans two different
API documentation pages.
- Consolidate changelogs and remove v3 API docs
([`90da8ba`](https://github.com/python-gitlab/python-gitlab/commit/90da8ba0342ebd42b8ec3d5b0d4c5fbb5e701117))
- Correct documentation for updating discussion note
([`ee66f4a`](https://github.com/python-gitlab/python-gitlab/commit/ee66f4a777490a47ad915a3014729a9720bf909b))
Closes 1777
- Correct documented return type
([`acabf63`](https://github.com/python-gitlab/python-gitlab/commit/acabf63c821745bd7e43b7cd3d799547b65e9ed0))
repository_archive() returns 'bytes' not 'str'
https://docs.gitlab.com/ee/api/repositories.html#get-file-archive
Fixes: 1584
- Fix a few typos
([`7ea4ddc`](https://github.com/python-gitlab/python-gitlab/commit/7ea4ddc4248e314998fd27eea17c6667f5214d1d))
There are small typos in: - docs/gl_objects/deploy_tokens.rst - gitlab/base.py - gitlab/mixins.py -
gitlab/v4/objects/features.py - gitlab/v4/objects/groups.py - gitlab/v4/objects/packages.py -
gitlab/v4/objects/projects.py - gitlab/v4/objects/sidekiq.py - gitlab/v4/objects/todos.py
Fixes: - Should read `treatment` rather than `reatment`. - Should read `transferred` rather than
`transfered`. - Should read `registered` rather than `registred`. - Should read `occurred` rather
than `occured`. - Should read `overridden` rather than `overriden`. - Should read `marked` rather
than `maked`. - Should read `instantiate` rather than `instanciate`. - Should read `function`
rather than `fonction`.
- Fix API delete key example
([`b31bb05`](https://github.com/python-gitlab/python-gitlab/commit/b31bb05c868793e4f0cb4573dad6bf9ca01ed5d9))
- Only use type annotations for documentation
([`b7dde0d`](https://github.com/python-gitlab/python-gitlab/commit/b7dde0d7aac8dbaa4f47f9bfb03fdcf1f0b01c41))
- Rename documentation files to match names of code files
([`ee3f865`](https://github.com/python-gitlab/python-gitlab/commit/ee3f8659d48a727da5cd9fb633a060a9231392ff))
Rename the merge request related documentation files to match the code files. This will make it
easier to find the documentation quickly.
Rename: `docs/gl_objects/mrs.rst -> `docs/gl_objects/merge_requests.rst`
`docs/gl_objects/mr_approvals.rst -> `docs/gl_objects/merge_request_approvals.rst`
- Switch to Furo and refresh introduction pages
([`ee6b024`](https://github.com/python-gitlab/python-gitlab/commit/ee6b024347bf8a178be1a0998216f2a24c940cee))
- Update docs to use gitlab.const for constants
([`b3b0b5f`](https://github.com/python-gitlab/python-gitlab/commit/b3b0b5f1da5b9da9bf44eac33856ed6eadf37dd6))
Update the docs to use gitlab.const to access constants.
- Use annotations for return types
([`79e785e`](https://github.com/python-gitlab/python-gitlab/commit/79e785e765f4219fe6001ef7044235b82c5e7754))
- **api**: Clarify job token usage with auth()
([`3f423ef`](https://github.com/python-gitlab/python-gitlab/commit/3f423efab385b3eb1afe59ad12c2da7eaaa11d76))
See issue 1620
- **api**: Document the update method for project variables
([`7992911`](https://github.com/python-gitlab/python-gitlab/commit/7992911896c62f23f25742d171001f30af514a9a))
- **pipelines**: Document take_ownership method
([`69461f6`](https://github.com/python-gitlab/python-gitlab/commit/69461f6982e2a85dcbf95a0b884abd3f4050c1c7))
- **project**: Remove redundant encoding parameter
([`fed613f`](https://github.com/python-gitlab/python-gitlab/commit/fed613f41a298e79a975b7f99203e07e0f45e62c))
Features
- Add delete on package_file object
([`124667b`](https://github.com/python-gitlab/python-gitlab/commit/124667bf16b1843ae52e65a3cc9b8d9235ff467e))
- Add support for `projects.groups.list()`
([`68ff595`](https://github.com/python-gitlab/python-gitlab/commit/68ff595967a5745b369a93d9d18fef48b65ebedb))
Add support for `projects.groups.list()` endpoint.
Closes 1717
- Add support for `squash_option` in Projects
([`a246ce8`](https://github.com/python-gitlab/python-gitlab/commit/a246ce8a942b33c5b23ac075b94237da09013fa2))
There is an optional `squash_option` parameter which can be used when creating Projects and
UserProjects.
Closes 1744
- Allow global retry_transient_errors setup
([`3b1d3a4`](https://github.com/python-gitlab/python-gitlab/commit/3b1d3a41da7e7228f3a465d06902db8af564153e))
`retry_transient_errors` can now be set through the Gitlab instance and global configuration
Documentation for API usage has been updated and missing tests have been added.
- Default to gitlab.com if no URL given
([`8236281`](https://github.com/python-gitlab/python-gitlab/commit/823628153ec813c4490e749e502a47716425c0f1))
BREAKING CHANGE: python-gitlab will now default to gitlab.com if no URL is given
- Remove support for Python 3.6, require 3.7 or higher
([`414009d`](https://github.com/python-gitlab/python-gitlab/commit/414009daebe19a8ae6c36f050dffc690dff40e91))
Python 3.6 is End-of-Life (EOL) as of 2021-12 as stated in https://www.python.org/dev/peps/pep-0494/
By dropping support for Python 3.6 and requiring Python 3.7 or higher it allows python-gitlab to
take advantage of new features in Python 3.7, which are documented at:
https://docs.python.org/3/whatsnew/3.7.html
Some of these new features that may be useful to python-gitlab are: * PEP 563, postponed evaluation
of type annotations. * dataclasses: PEP 557 – Data Classes * importlib.resources * PEP 562,
customization of access to module attributes. * PEP 560, core support for typing module and
generic types. * PEP 565, improved DeprecationWarning handling
BREAKING CHANGE: As of python-gitlab 3.0.0, Python 3.6 is no longer supported. Python 3.7 or higher
is required.
- **api**: Add merge request approval state
([`f41b093`](https://github.com/python-gitlab/python-gitlab/commit/f41b0937aec5f4a5efba44155cc2db77c7124e5e))
Add support for merge request approval state
- **api**: Add merge trains
([`fd73a73`](https://github.com/python-gitlab/python-gitlab/commit/fd73a738b429be0a2642d5b777d5e56a4c928787))
Add support for merge trains
- **api**: Add project label promotion
([`6d7c88a`](https://github.com/python-gitlab/python-gitlab/commit/6d7c88a1fe401d271a34df80943634652195b140))
Adds a mixin that allows the /promote endpoint to be called.
Signed-off-by: Raimund Hook <raimund.hookexfo.com>
- **api**: Add project milestone promotion
([`f068520`](https://github.com/python-gitlab/python-gitlab/commit/f0685209f88d1199873c1f27d27f478706908fd3))
Adds promotion to Project Milestones
Signed-off-by: Raimund Hook <raimund.hookexfo.com>
- **api**: Add support for epic notes
([`7f4edb5`](https://github.com/python-gitlab/python-gitlab/commit/7f4edb53e9413f401c859701d8c3bac4a40706af))
Added support for notes on group epics
Signed-off-by: Raimund Hook <raimund.hookexfo.com>
- **api**: Add support for Topics API
([`e7559bf`](https://github.com/python-gitlab/python-gitlab/commit/e7559bfa2ee265d7d664d7a18770b0a3e80cf999))
- **api**: Support file format for repository archive
([`83dcabf`](https://github.com/python-gitlab/python-gitlab/commit/83dcabf3b04af63318c981317778f74857279909))
- **build**: Officially support and test python 3.10
([`c042ddc`](https://github.com/python-gitlab/python-gitlab/commit/c042ddc79ea872fc8eb8fe4e32f4107a14ffed2d))
- **cli**: Allow options from args and environment variables
([`ca58008`](https://github.com/python-gitlab/python-gitlab/commit/ca58008607385338aaedd14a58adc347fa1a41a0))
BREAKING-CHANGE: The gitlab CLI will now accept CLI arguments
and environment variables for its global options in addition to configuration file options. This may
change behavior for some workflows such as running inside GitLab CI and with certain environment
variables configured.
- **cli**: Do not require config file to run CLI
([`92a893b`](https://github.com/python-gitlab/python-gitlab/commit/92a893b8e230718436582dcad96175685425b1df))
BREAKING CHANGE: A config file is no longer needed to run the CLI. python-gitlab will default to
https://gitlab.com with no authentication if there is no config file provided. python-gitlab will
now also only look for configuration in the provided PYTHON_GITLAB_CFG path, instead of merging it
with user- and system-wide config files. If the environment variable is defined and the file
cannot be opened, python-gitlab will now explicitly fail.
- **docker**: Remove custom entrypoint from image
([`80754a1`](https://github.com/python-gitlab/python-gitlab/commit/80754a17f66ef4cd8469ff0857e0fc592c89796d))
This is no longer needed as all of the configuration is handled by the CLI and can be passed as
arguments.
- **objects**: List starred projects of a user
([`47a5606`](https://github.com/python-gitlab/python-gitlab/commit/47a56061421fc8048ee5cceaf47ac031c92aa1da))
- **objects**: Support Create and Revoke personal access token API
([`e19314d`](https://github.com/python-gitlab/python-gitlab/commit/e19314dcc481b045ba7a12dd76abedc08dbdf032))
- **objects**: Support delete package files API
([`4518046`](https://github.com/python-gitlab/python-gitlab/commit/45180466a408cd51c3ea4fead577eb0e1f3fe7f8))
Refactoring
- Deprecate accessing constants from top-level namespace
([`c0aa0e1`](https://github.com/python-gitlab/python-gitlab/commit/c0aa0e1c9f7d7914e3062fe6503da870508b27cf))
We are planning on adding enumerated constants into gitlab/const.py, but if we do that than they
will end up being added to the top-level gitlab namespace. We really want to get users to start
using `gitlab.const.` to access the constant values in the future.
Add the currently defined constants to a list that should not change. Use a module level __getattr__
function so that we can deprecate access to the top-level constants.
Add a unit test which verifies we generate a warning when accessing the top-level constants.
- Use f-strings for string formatting
([`7925c90`](https://github.com/python-gitlab/python-gitlab/commit/7925c902d15f20abaecdb07af213f79dad91355b))
- Use new-style formatting for named placeholders
([`c0d8810`](https://github.com/python-gitlab/python-gitlab/commit/c0d881064f7c90f6a510db483990776ceb17b9bd))
- **objects**: Remove deprecated branch protect methods
([`9656a16`](https://github.com/python-gitlab/python-gitlab/commit/9656a16f9f34a1aeb8ea0015564bad68ffb39c26))
BREAKING CHANGE: remove deprecated branch protect methods in favor of the more complete protected
branches API.
- **objects**: Remove deprecated constants defined in objects
([`3f320af`](https://github.com/python-gitlab/python-gitlab/commit/3f320af347df05bba9c4d0d3bdb714f7b0f7b9bf))
BREAKING CHANGE: remove deprecated constants defined in gitlab.v4.objects, and use only gitlab.const
module
- **objects**: Remove deprecated members.all() method
([`4d7b848`](https://github.com/python-gitlab/python-gitlab/commit/4d7b848e2a826c58e91970a1d65ed7d7c3e07166))
BREAKING CHANGE: remove deprecated members.all() method in favor of members_all.list()
- **objects**: Remove deprecated pipelines() method
([`c4f5ec6`](https://github.com/python-gitlab/python-gitlab/commit/c4f5ec6c615e9f83d533a7be0ec19314233e1ea0))
BREAKING CHANGE: remove deprecated pipelines() methods in favor of pipelines.list()
- **objects**: Remove deprecated project.issuesstatistics
([`ca7777e`](https://github.com/python-gitlab/python-gitlab/commit/ca7777e0dbb82b5d0ff466835a94c99e381abb7c))
BREAKING CHANGE: remove deprecated project.issuesstatistics in favor of project.issues_statistics
- **objects**: Remove deprecated tag release API
([`2b8a94a`](https://github.com/python-gitlab/python-gitlab/commit/2b8a94a77ba903ae97228e7ffa3cc2bf6ceb19ba))
BREAKING CHANGE: remove deprecated tag release API. This was removed in GitLab 14.0
Testing
- Drop httmock dependency in test_gitlab.py
([`c764bee`](https://github.com/python-gitlab/python-gitlab/commit/c764bee191438fc4aa2e52d14717c136760d2f3f))
- Reproduce missing pagination headers in tests
([`501f9a1`](https://github.com/python-gitlab/python-gitlab/commit/501f9a1588db90e6d2c235723ba62c09a669b5d2))
- **api**: Fix current user mail count in newer gitlab
([`af33aff`](https://github.com/python-gitlab/python-gitlab/commit/af33affa4888fa83c31557ae99d7bbd877e9a605))
- **build**: Add smoke tests for sdist & wheel package
([`b8a47ba`](https://github.com/python-gitlab/python-gitlab/commit/b8a47bae3342400a411fb9bf4bef3c15ba91c98e))
- **cli**: Improve basic CLI coverage
([`6b892e3`](https://github.com/python-gitlab/python-gitlab/commit/6b892e3dcb18d0f43da6020b08fd4ba891da3670))