Bug Fixes
- **base**: Do not fail repr() on lazy objects
([`1efb123`](https://github.com/python-gitlab/python-gitlab/commit/1efb123f63eab57600228b75a1744f8787c16671))
- **cli**: Fix project export download for CLI
([`5d14867`](https://github.com/python-gitlab/python-gitlab/commit/5d1486785793b02038ac6f527219801744ee888b))
Since ac1c619cae6481833f5df91862624bf0380fef67 we delete parent arg keys from the args dict so this
has been trying to access the wrong attribute.
- **cli**: Project-merge-request-approval-rule
([`15a242c`](https://github.com/python-gitlab/python-gitlab/commit/15a242c3303759b77b380c5b3ff9d1e0bf2d800c))
Using the CLI the command: gitlab project-merge-request-approval-rule list --mr-iid 1 --project-id
foo/bar
Would raise an exception. This was due to the fact that `_id_attr` and `_repr_attr` were set for
keys which are not returned in the response.
Add a unit test which shows the `repr` function now works. Before it did not.
This is an EE feature so we can't functional test it.
Closes: 2065
Chores
- Add link to Commitizen in Github workflow
([`d08d07d`](https://github.com/python-gitlab/python-gitlab/commit/d08d07deefae345397fc30280c4f790c7e61cbe2))
Add a link to the Commitizen website in the Github workflow. Hopefully this will help people when
their job fails.
- Bump mypy pre-commit hook
([`0bbcad7`](https://github.com/python-gitlab/python-gitlab/commit/0bbcad7612f60f7c7b816c06a244ad8db9da68d9))
- Correct ModuleNotFoundError() arguments
([`0b7933c`](https://github.com/python-gitlab/python-gitlab/commit/0b7933c5632c2f81c89f9a97e814badf65d1eb38))
Previously in commit 233b79ed442aac66faf9eb4b0087ea126d6dffc5 I had used the `name` argument for
`ModuleNotFoundError()`. This basically is the equivalent of not passing any message to
`ModuleNotFoundError()`. So when the exception was raised it wasn't very helpful.
Correct that and add a unit-test that shows we get the message we expect.
- Enable 'consider-using-sys-exit' pylint check
([`0afcc3e`](https://github.com/python-gitlab/python-gitlab/commit/0afcc3eca4798801ff3635b05b871e025078ef31))
Enable the 'consider-using-sys-exit' pylint check and fix errors raised.
- Enable pylint check "raise-missing-from"
([`1a2781e`](https://github.com/python-gitlab/python-gitlab/commit/1a2781e477471626e2b00129bef5169be9c7cc06))
Enable the pylint check "raise-missing-from" and fix errors detected.
- Enable pylint check: "attribute-defined-outside-init"
([`d6870a9`](https://github.com/python-gitlab/python-gitlab/commit/d6870a981259ee44c64210a756b63dc19a6f3957))
Enable the pylint check: "attribute-defined-outside-init" and fix errors detected.
- Enable pylint check: "no-else-return"
([`d0b0811`](https://github.com/python-gitlab/python-gitlab/commit/d0b0811211f69f08436dcf7617c46617fe5c0b8b))
Enable the pylint check "no-else-return" and fix the errors detected.
- Enable pylint check: "no-self-use"
([`80aadaf`](https://github.com/python-gitlab/python-gitlab/commit/80aadaf4262016a8181b5150ca7e17c8139c15fa))
Enable the pylint check "no-self-use" and fix the errors detected.
- Enable pylint check: "redefined-outer-name",
([`1324ce1`](https://github.com/python-gitlab/python-gitlab/commit/1324ce1a439befb4620953a4df1f70b74bf70cbd))
Enable the pylint check "redefined-outer-name" and fix the errors detected.
- Enable pylint checks
([`1e89164`](https://github.com/python-gitlab/python-gitlab/commit/1e8916438f7c4f67bd7745103b870d84f6ba2d01))
Enable the pylint checks: * unnecessary-pass * unspecified-encoding
Update code to resolve errors found
- Enable pylint checks which require no changes
([`50fdbc4`](https://github.com/python-gitlab/python-gitlab/commit/50fdbc474c524188952e0ef7c02b0bd92df82357))
Enabled the pylint checks that don't require any code changes. Previously these checks were
disabled.
- Fix issue found with pylint==2.14.3
([`eeab035`](https://github.com/python-gitlab/python-gitlab/commit/eeab035ab715e088af73ada00e0a3b0c03527187))
A new error was reported when running pylint==2.14.3: gitlab/client.py:488:0: W1404: Implicit string
concatenation found in call (implicit-str-concat)
Fixed this issue.
- Have `EncodedId` creation always return `EncodedId`
([`a1a246f`](https://github.com/python-gitlab/python-gitlab/commit/a1a246fbfcf530732249a263ee42757a862181aa))
There is no reason to return an `int` as we can always return a `str` version of the `int`
Change `EncodedId` to always return an `EncodedId`. This removes the need to have `mypy` ignore the
error raised.
- Move `RequiredOptional` to the `gitlab.types` module
([`7d26530`](https://github.com/python-gitlab/python-gitlab/commit/7d26530640eb406479f1604cb64748d278081864))
By having `RequiredOptional` in the `gitlab.base` module it makes it difficult with circular
imports. Move it to the `gitlab.types` module which has no dependencies on any other gitlab
module.
- Move `utils._validate_attrs` inside `types.RequiredOptional`
([`9d629bb`](https://github.com/python-gitlab/python-gitlab/commit/9d629bb97af1e14ce8eb4679092de2393e1e3a05))
Move the `validate_attrs` function to be inside the `RequiredOptional` class. It makes sense for it
to be part of the class as it is working on data related to the class.
- Patch sphinx for explicit re-exports
([`06871ee`](https://github.com/python-gitlab/python-gitlab/commit/06871ee05b79621f0a6fea47243783df105f64d6))
- Remove use of '%' string formatter in `gitlab/utils.py`
([`0c5a121`](https://github.com/python-gitlab/python-gitlab/commit/0c5a1213ba3bb3ec4ed5874db4588d21969e9e80))
Replace usage with f-string
- Rename `__call__()` to `run()` in GitlabCLI
([`6189437`](https://github.com/python-gitlab/python-gitlab/commit/6189437d2c8d18f6c7d72aa7743abd6d36fb4efa))
Less confusing to have it be a normal method.
- Rename `whaction` and `action` to `resource_action` in CLI
([`fb3f28a`](https://github.com/python-gitlab/python-gitlab/commit/fb3f28a053f0dcf0a110bb8b6fd11696b4ba3dd9))
Rename the variables `whaction` and `action` to `resource_action` to improve code-readability.
- Rename `what` to `gitlab_resource`
([`c86e471`](https://github.com/python-gitlab/python-gitlab/commit/c86e471dead930468172f4b7439ea6fa207f12e8))
Naming a variable `what` makes it difficult to understand what it is used for.
Rename it to `gitlab_resource` as that is what is being stored.
The Gitlab documentation talks about them being resources:
https://docs.gitlab.com/ee/api/api_resources.html
This will improve code readability.
- Require f-strings
([`96e994d`](https://github.com/python-gitlab/python-gitlab/commit/96e994d9c5c1abd11b059fe9f0eec7dac53d2f3a))
We previously converted all string formatting to use f-strings. Enable pylint check to enforce this.
- Update type-hints return signature for GetWithoutIdMixin methods
([`aa972d4`](https://github.com/python-gitlab/python-gitlab/commit/aa972d49c57f2ebc983d2de1cfb8d18924af6734))
Commit f0152dc3cc9a42aa4dc3c0014b4c29381e9b39d6 removed situation where `get()` in a
`GetWithoutIdMixin` based class could return `None`
Update the type-hints to no longer return `Optional` AKA `None`
- Use multiple processors when running PyLint
([`7f2240f`](https://github.com/python-gitlab/python-gitlab/commit/7f2240f1b9231e8b856706952ec84234177a495b))
Use multiple processors when running PyLint. On my system it took about 10.3 seconds to run PyLint
before this change. After this change it takes about 5.8 seconds to run PyLint.
- **ci**: Increase timeout for docker container to come online
([`bda020b`](https://github.com/python-gitlab/python-gitlab/commit/bda020bf5f86d20253f39698c3bb32f8d156de60))
Have been seeing timeout issues more and more. Increase timeout from 200 seconds to 300 seconds (5
minutes).
- **ci**: Pin 3.11 to beta.1
([`7119f2d`](https://github.com/python-gitlab/python-gitlab/commit/7119f2d228115fe83ab23612e189c9986bb9fd1b))
- **cli**: Ignore coverage on exceptions triggering cli.die
([`98ccc3c`](https://github.com/python-gitlab/python-gitlab/commit/98ccc3c2622a3cdb24797fd8790e921f5f2c1e6a))
- **cli**: Rename "object" to "GitLab resource"
([`62e64a6`](https://github.com/python-gitlab/python-gitlab/commit/62e64a66dab4b3704d80d19a5dbc68b025b18e3c))
Make the parser name more user friendly by renaming from generic "object" to "GitLab resource"
- **deps**: Ignore python-semantic-release updates
([`f185b17`](https://github.com/python-gitlab/python-gitlab/commit/f185b17ff5aabedd32d3facd2a46ebf9069c9692))
- **deps**: Update actions/setup-python action to v4
([`77c1f03`](https://github.com/python-gitlab/python-gitlab/commit/77c1f0352adc8488041318e5dfd2fa98a5b5af62))
- **deps**: Update dependency commitizen to v2.27.1
([`456f9f1`](https://github.com/python-gitlab/python-gitlab/commit/456f9f14453f2090fdaf88734fe51112bf4e7fde))
- **deps**: Update dependency mypy to v0.960
([`8c016c7`](https://github.com/python-gitlab/python-gitlab/commit/8c016c7a53c543d07d16153039053bb370a6945b))
- **deps**: Update dependency mypy to v0.961
([`f117b2f`](https://github.com/python-gitlab/python-gitlab/commit/f117b2f92226a507a8adbb42023143dac0cc07fc))
- **deps**: Update dependency pylint to v2.14.3
([`9a16bb1`](https://github.com/python-gitlab/python-gitlab/commit/9a16bb158f3cb34a4c4cb7451127fbc7c96642e2))
- **deps**: Update dependency requests to v2.28.0
([`d361f4b`](https://github.com/python-gitlab/python-gitlab/commit/d361f4bd4ec066452a75cf04f64334234478bb02))
- **deps**: Update pre-commit hook commitizen-tools/commitizen to v2.27.1
([`22c5db4`](https://github.com/python-gitlab/python-gitlab/commit/22c5db4bcccf592f5cf7ea34c336208c21769896))
- **deps**: Update pre-commit hook pycqa/pylint to v2.14.3
([`d1fe838`](https://github.com/python-gitlab/python-gitlab/commit/d1fe838b65ccd1a68fb6301bbfd06cd19425a75c))
- **deps**: Update typing dependencies
([`acc5c39`](https://github.com/python-gitlab/python-gitlab/commit/acc5c3971f13029288dff2909692a0171f4a66f7))
- **deps**: Update typing dependencies
([`aebf9c8`](https://github.com/python-gitlab/python-gitlab/commit/aebf9c83a4cbf7cf4243cb9b44375ca31f9cc878))
- **deps**: Update typing dependencies
([`f3f79c1`](https://github.com/python-gitlab/python-gitlab/commit/f3f79c1d3afa923405b83dcea905fec213201452))
- **docs**: Ignore nitpicky warnings
([`1c3efb5`](https://github.com/python-gitlab/python-gitlab/commit/1c3efb50bb720a87b95307f4d6642e3b7f28f6f0))
- **gitlab**: Fix implicit re-exports for mpypy
([`981b844`](https://github.com/python-gitlab/python-gitlab/commit/981b8448dbadc63d70867dc069e33d4c4d1cfe95))
- **mixins**: Remove None check as http_get always returns value
([`f0152dc`](https://github.com/python-gitlab/python-gitlab/commit/f0152dc3cc9a42aa4dc3c0014b4c29381e9b39d6))
- **workflows**: Explicitly use python-version
([`eb14475`](https://github.com/python-gitlab/python-gitlab/commit/eb1447588dfbbdfe724fca9009ea5451061b5ff0))
Documentation
- Documentation updates to reflect addition of mutually exclusive attributes
([`24b720e`](https://github.com/python-gitlab/python-gitlab/commit/24b720e49636044f4be7e4d6e6ce3da341f2aeb8))
- Drop deprecated setuptools build_sphinx
([`048d66a`](https://github.com/python-gitlab/python-gitlab/commit/048d66af51cef385b22d223ed2a5cd30e2256417))
- Use `as_list=False` or `all=True` in Getting started
([`de8c6e8`](https://github.com/python-gitlab/python-gitlab/commit/de8c6e80af218d93ca167f8b5ff30319a2781d91))
In the "Getting started with the API" section of the documentation, use either `as_list=False` or
`all=True` in the example usages of the `list()` method.
Also add a warning about the fact that `list()` by default does not return all items.
- **api**: Add separate section for advanced usage
([`22ae101`](https://github.com/python-gitlab/python-gitlab/commit/22ae1016f39256b8e2ca02daae8b3c7130aeb8e6))
- **api**: Document usage of head() methods
([`f555bfb`](https://github.com/python-gitlab/python-gitlab/commit/f555bfb363779cc6c8f8036f6d6cfa302e15d4fe))
- **api**: Fix incorrect docs for merge_request_approvals
([2094](https://github.com/python-gitlab/python-gitlab/pull/2094),
[`5583eaa`](https://github.com/python-gitlab/python-gitlab/commit/5583eaa108949386c66290fecef4d064f44b9e83))
* docs(api): fix incorrect docs for merge_request_approvals
The `set_approvers()` method is on the `ProjectApprovalManager` class. It is not part of the
`ProjectApproval` class.
The docs were previously showing to call `set_approvers` using a `ProjectApproval` instance, which
would fail. Correct the documentation.
This was pointed out by a question on the Gitter channel.
Co-authored-by: Nejc Habjan <nejc.habjansiemens.com>
- **api**: Stop linking to python-requests.org
([`49c7e83`](https://github.com/python-gitlab/python-gitlab/commit/49c7e83f768ee7a3fec19085a0fa0a67eadb12df))
- **api-usage**: Add import os in example
([`2194a44`](https://github.com/python-gitlab/python-gitlab/commit/2194a44be541e9d2c15d3118ba584a4a173927a2))
- **ext**: Fix rendering for RequiredOptional dataclass
([`4d431e5`](https://github.com/python-gitlab/python-gitlab/commit/4d431e5a6426d0fd60945c2d1ff00a00a0a95b6c))
- **projects**: Document 404 gotcha with unactivated integrations
([`522ecff`](https://github.com/python-gitlab/python-gitlab/commit/522ecffdb6f07e6c017139df4eb5d3fc42a585b7))
- **projects**: Provide more detailed import examples
([`8f8611a`](https://github.com/python-gitlab/python-gitlab/commit/8f8611a1263b8c19fd19ce4a904a310b0173b6bf))
- **usage**: Refer to upsteam docs instead of custom attributes
([`ae7d3b0`](https://github.com/python-gitlab/python-gitlab/commit/ae7d3b09352b2a1bd287f95d4587b04136c7a4ed))
- **variables**: Instruct users to follow GitLab rules for values
([`194b6be`](https://github.com/python-gitlab/python-gitlab/commit/194b6be7ccec019fefc04754f98b9ec920c29568))
Features
- Add support for Protected Environments
([`1dc9d0f`](https://github.com/python-gitlab/python-gitlab/commit/1dc9d0f91757eed9f28f0c7172654b9b2a730216))
- https://docs.gitlab.com/ee/api/protected_environments.html -
https://github.com/python-gitlab/python-gitlab/issues/1130
no write operation are implemented yet as I have no use case right now and am not sure how it should
be done
- Support mutually exclusive attributes and consolidate validation to fix board lists
([2037](https://github.com/python-gitlab/python-gitlab/pull/2037),
[`3fa330c`](https://github.com/python-gitlab/python-gitlab/commit/3fa330cc341bbedb163ba757c7f6578d735c6efb))
add exclusive tuple to RequiredOptional data class to support for mutually exclusive attributes
consolidate _check_missing_create_attrs and _check_missing_update_attrs from mixins.py into
_validate_attrs in utils.py
change _create_attrs in board list manager classes from required=('label_ld',) to
exclusive=('label_id','asignee_id','milestone_id')
closes https://github.com/python-gitlab/python-gitlab/issues/1897
- **api**: Convert gitlab.const to Enums
([`c3c6086`](https://github.com/python-gitlab/python-gitlab/commit/c3c6086c548c03090ccf3f59410ca3e6b7999791))
This allows accessing the elements by value, i.e.:
import gitlab.const gitlab.const.AccessLevel(20)
- **api**: Implement HEAD method
([`90635a7`](https://github.com/python-gitlab/python-gitlab/commit/90635a7db3c9748745471d2282260418e31c7797))
- **api**: Support head() method for get and list endpoints
([`ce9216c`](https://github.com/python-gitlab/python-gitlab/commit/ce9216ccc542d834be7f29647c7ee98c2ca5bb01))
- **client**: Introduce `iterator=True` and deprecate `as_list=False` in `list()`
([`cdc6605`](https://github.com/python-gitlab/python-gitlab/commit/cdc6605767316ea59e1e1b849683be7b3b99e0ae))
`as_list=False` is confusing as it doesn't explain what is being returned. Replace it with
`iterator=True` which more clearly explains to the user that an iterator/generator will be
returned.
This maintains backward compatibility with `as_list` but does issue a DeprecationWarning if
`as_list` is set.
- **docker**: Provide a Debian-based slim image
([`384031c`](https://github.com/python-gitlab/python-gitlab/commit/384031c530e813f55da52f2b2c5635ea935f9d91))
- **downloads**: Allow streaming downloads access to response iterator
([1956](https://github.com/python-gitlab/python-gitlab/pull/1956),
[`b644721`](https://github.com/python-gitlab/python-gitlab/commit/b6447211754e126f64e12fc735ad74fe557b7fb4))
* feat(downloads): allow streaming downloads access to response iterator
Allow access to the underlying response iterator when downloading in streaming mode by specifying
`iterator=True`.
Update type annotations to support this change.
* docs(api-docs): add iterator example to artifact download
Document the usage of the `iterator=True` option when downloading artifacts
* test(packages): add tests for streaming downloads
- **users**: Add approve and reject methods to User
([`f57139d`](https://github.com/python-gitlab/python-gitlab/commit/f57139d8f1dafa6eb19d0d954b3634c19de6413c))
As requested in 1604.
Co-authored-by: John Villalovos <johnsodarock.com>
- **users**: Add ban and unban methods
([`0d44b11`](https://github.com/python-gitlab/python-gitlab/commit/0d44b118f85f92e7beb1a05a12bdc6e070dce367))
Refactoring
- Avoid possible breaking change in iterator
([2107](https://github.com/python-gitlab/python-gitlab/pull/2107),
[`212ddfc`](https://github.com/python-gitlab/python-gitlab/commit/212ddfc9e9c5de50d2507cc637c01ceb31aaba41))
Commit b6447211754e126f64e12fc735ad74fe557b7fb4 inadvertently introduced a possible breaking change
as it added a new argument `iterator` and added it in between existing (potentially positional)
arguments.
This moves the `iterator` argument to the end of the argument list and requires it to be a
keyword-only argument.
- Do not recommend plain gitlab.const constants
([`d652133`](https://github.com/python-gitlab/python-gitlab/commit/d65213385a6f497c2595d3af3a41756919b9c9a1))
- Remove no-op id argument in GetWithoutIdMixin
([`0f2a602`](https://github.com/python-gitlab/python-gitlab/commit/0f2a602d3a9d6579f5fdfdf945a236ae44e93a12))
- **mixins**: Extract custom type transforms into utils
([`09b3b22`](https://github.com/python-gitlab/python-gitlab/commit/09b3b2225361722f2439952d2dbee6a48a9f9fd9))
Testing
- Add more tests for RequiredOptional
([`ce40fde`](https://github.com/python-gitlab/python-gitlab/commit/ce40fde9eeaabb4a30c5a87d9097b1d4eced1c1b))
- Add tests and clean up usage for new enums
([`323ab3c`](https://github.com/python-gitlab/python-gitlab/commit/323ab3c5489b0d35f268bc6c22ade782cade6ba4))
- Increase client coverage
([`00aec96`](https://github.com/python-gitlab/python-gitlab/commit/00aec96ed0b60720362c6642b416567ff39aef09))
- Move back to using latest Python 3.11 version
([`8c34781`](https://github.com/python-gitlab/python-gitlab/commit/8c347813e7aaf26a33fe5ae4ae73448beebfbc6c))
- **api**: Add tests for HEAD method
([`b0f02fa`](https://github.com/python-gitlab/python-gitlab/commit/b0f02facef2ea30f24dbfb3c52974f34823e9bba))
- **cli**: Improve coverage for custom actions
([`7327f78`](https://github.com/python-gitlab/python-gitlab/commit/7327f78073caa2fb8aaa6bf0e57b38dd7782fa57))
- **gitlab**: Increase unit test coverage
([`df072e1`](https://github.com/python-gitlab/python-gitlab/commit/df072e130aa145a368bbdd10be98208a25100f89))
- **pylint**: Enable pylint "unused-argument" check
([`23feae9`](https://github.com/python-gitlab/python-gitlab/commit/23feae9b0906d34043a784a01d31d1ff19ebc9a4))
Enable the pylint "unused-argument" check and resolve issues it found.
* Quite a few functions were accepting `**kwargs` but not then passing them on through to the next
level. Now pass `**kwargs` to next level. * Other functions had no reason to accept `**kwargs`, so
remove it * And a few other fixes.