Bug Fixes
- Argument type was not a tuple as expected
([`062f8f6`](https://github.com/python-gitlab/python-gitlab/commit/062f8f6a917abc037714129691a845c16b070ff6))
While adding type-hints mypy flagged this as an issue. The third argument to register_custom_action
is supposed to be a tuple. It was being passed as a string rather than a tuple of strings.
- Better real life token lookup example
([`9ef8311`](https://github.com/python-gitlab/python-gitlab/commit/9ef83118efde3d0f35d73812ce8398be2c18ebff))
- Checking if RESTManager._from_parent_attrs is set
([`8224b40`](https://github.com/python-gitlab/python-gitlab/commit/8224b4066e84720d7efed3b7891c47af73cc57ca))
Prior to commit 3727cbd21fc40b312573ca8da56e0f6cf9577d08 RESTManager._from_parent_attrs did not
exist unless it was explicitly set. But commit 3727cbd21fc40b312573ca8da56e0f6cf9577d08 set it to
a default value of {}.
So the checks using hasattr() were no longer valid.
Update the checks to check if RESTManager._from_parent_attrs has a value.
- Correct ProjectFile.decode() documentation
([`b180baf`](https://github.com/python-gitlab/python-gitlab/commit/b180bafdf282cd97e8f7b6767599bc42d5470bfa))
ProjectFile.decode() returns 'bytes' and not 'str'.
Update the method's doc-string and add a type-hint.
ProjectFile.decode() returns the result of a call to base64.b64decode()
The docs for that function state it returns 'bytes':
https://docs.python.org/3/library/base64.html#base64.b64decode
Fixes: 1403
- Correct some type-hints in gitlab/mixins.py
([`8bd3124`](https://github.com/python-gitlab/python-gitlab/commit/8bd312404cf647674baea792547705ef1948043d))
Commit baea7215bbbe07c06b2ca0f97a1d3d482668d887 introduced type-hints for gitlab/mixins.py.
After starting to add type-hints to gitlab/v4/objects/users.py discovered a few errors.
Main error was using '=' instead of ':'. For example: _parent = Optional[...] should be _parent:
Optional[...]
Resolved those issues.
- Extend wait timeout for test_delete_user()
([`19fde8e`](https://github.com/python-gitlab/python-gitlab/commit/19fde8ed0e794d33471056e2c07539cde70a8699))
Have been seeing intermittent failures of the test_delete_user() functional test. Have made the
following changes to hopefully resolve the issue and if it still fails to know better why the
failure occurred.
* Extend the wait timeout for test_delete_user() from 30 to 60 tries of 0.5 seconds each.
* Modify wait_for_sidekiq() to return True if sidekiq process terminated. Return False if the
timeout expired.
* Modify wait_for_sidekiq() to loop through all processes instead of assuming there is only one
process. If all processes are not busy then return.
* Modify wait_for_sidekiq() to sleep at least once before checking for processes being busy.
* Check for True being returned in test_delete_user() call to wait_for_sidekiq()
- Handle tags like debian/2%2.6-21 as identifiers
([`b4dac5c`](https://github.com/python-gitlab/python-gitlab/commit/b4dac5ce33843cf52badeb9faf0f7f52f20a9a6a))
Git refnames are relatively free-form and can contain all sort for special characters, not just `/`
and ``, see http://git-scm.com/docs/git-check-ref-format
In particular, Debian's DEP-14 standard for storing packaging in git repositories mandates the use
of the `%` character in tags in some cases like `debian/2%2.6-21`.
Unfortunately python-gitlab currently only escapes `/` to `%2F` and in some cases `` to `%23`. This
means that when using the commit API to retrieve information about the `debian/2%2.6-21` tag only
the slash is escaped before being inserted in the URL path and the `%` is left untouched,
resulting in something like `/api/v4/projects/123/repository/commits/debian%2F2%2.6-21`. When
urllib3 seees that it detects the invalid `%` escape and then urlencodes the whole string,
resulting in `/api/v4/projects/123/repository/commits/debian%252F2%252.6-21`, where the original
`/` got escaped twice and produced `%252F`.
To avoid the issue, fully urlencode identifiers and parameters to avoid the urllib3 auto-escaping in
all cases.
Signed-off-by: Emanuele Aina <emanuele.ainacollabora.com>
- Handling config value in _get_values_from_helper
([`9dfb4cd`](https://github.com/python-gitlab/python-gitlab/commit/9dfb4cd97e6eb5bbfc29935cbb190b70b739cf9f))
- Honor parameter value passed
([`c2f8f0e`](https://github.com/python-gitlab/python-gitlab/commit/c2f8f0e7db9529e1f1f32d790a67d1e20d2fe052))
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.
- Let the homedir be expanded in path of helper
([`fc7387a`](https://github.com/python-gitlab/python-gitlab/commit/fc7387a0a6039bc58b2a741ac9b73d7068375be7))
- Linting issues and test
([`b04dd2c`](https://github.com/python-gitlab/python-gitlab/commit/b04dd2c08b69619bb58832f40a4c4391e350a735))
- Make secret helper more user friendly
([`fc2798f`](https://github.com/python-gitlab/python-gitlab/commit/fc2798fc31a08997c049f609c19dd4ab8d75964e))
- Only add query_parameters to GitlabList once
([`ca2c3c9`](https://github.com/python-gitlab/python-gitlab/commit/ca2c3c9dee5dc61ea12af5b39d51b1606da32f9c))
Fixes 1386
- Only append kwargs as query parameters
([`b9ecc9a`](https://github.com/python-gitlab/python-gitlab/commit/b9ecc9a8c5d958bd7247946c4e8d29c18163c578))
Some arguments to `http_request` were being read from kwargs, but kwargs is where this function
creates query parameters from, by default. In the absence of a `query_parameters` param, the
function would construct URLs with query parameters such as `retry_transient_errors=True` despite
those parameters having no meaning to the API to which the request was sent.
This change names those arguments that are specific to `http_request` so that they do not end up as
query parameters read from kwargs.
- Remove duplicate class definitions in v4/objects/users.py
([`7c4e625`](https://github.com/python-gitlab/python-gitlab/commit/7c4e62597365e8227b8b63ab8ba0c94cafc7abc8))
The classes UserStatus and UserStatusManager were each declared twice. Remove the duplicate
declarations.
- Test_update_group() dependency on ordering
([`e78a8d6`](https://github.com/python-gitlab/python-gitlab/commit/e78a8d6353427bad0055f116e94f471997ee4979))
Since there are two groups we can't depend on the one we changed to always be the first one
returned.
Instead fetch the group we want and then test our assertion against that group.
- Tox pep8 target, so that it can run
([`f518e87`](https://github.com/python-gitlab/python-gitlab/commit/f518e87b5492f2f3c201d4d723c07c746a385b6e))
Previously running the pep8 target would fail as flake8 was not installed.
Now install flake8 for the pep8 target.
NOTE: Running the pep8 target fails as there are many warnings/errors.
But it does allow us to run it and possibly work on reducing these warnings/errors in the future.
In addition, add two checks to the ignore list as black takes care of formatting. The two checks
added to the ignore list are: * E501: line too long * W503: line break before binary operator
- Undefined name errors
([`48ec9e0`](https://github.com/python-gitlab/python-gitlab/commit/48ec9e0f6a2d2da0a24ef8292c70dc441836a913))
Discovered that there were some undefined names.
- Update doc for token helper
([`3ac6fa1`](https://github.com/python-gitlab/python-gitlab/commit/3ac6fa12b37dd33610ef2206ef4ddc3b20d9fd3f))
- Update user's bool data and avatar
([`3ba27ff`](https://github.com/python-gitlab/python-gitlab/commit/3ba27ffb6ae995c27608f84eef0abe636e2e63da))
If we want to update email, avatar and do not send email confirmation change (`skip_reconfirmation`
= True), `MultipartEncoder` will try to encode everything except None and bytes. So it tries to
encode bools. Casting bool's values to their stringified int representation fix it.
- Wrong variable name
([`15ec41c`](https://github.com/python-gitlab/python-gitlab/commit/15ec41caf74e264d757d2c64b92427f027194b82))
Discovered this when I ran flake8 on the file. Unfortunately I was the one who introduced this wrong
variable name :(
- **objects**: Add single get endpoint for instance audit events
([`c3f0a6f`](https://github.com/python-gitlab/python-gitlab/commit/c3f0a6f158fbc7d90544274b9bf09d5ac9ac0060))
- **types**: Prevent __dir__ from producing duplicates
([`5bf7525`](https://github.com/python-gitlab/python-gitlab/commit/5bf7525d2d37968235514d1b93a403d037800652))
Chores
- Add _create_attrs & _update_attrs to RESTManager
([`147f05d`](https://github.com/python-gitlab/python-gitlab/commit/147f05d43d302d9a04bc87d957c79ce9e54cdaed))
Add the attributes: _create_attrs and _update_attrs to the RESTManager class. This is so that we
stop using getattr() if we don't need to.
This also helps with type-hints being available for these attributes.
- Add additional type-hints for gitlab/base.py
([`ad72ef3`](https://github.com/python-gitlab/python-gitlab/commit/ad72ef35707529058c7c680f334c285746b2f690))
Add type-hints for the variables which are set via self.__dict__
mypy doesn't see them when they are assigned via self.__dict__. So declare them in the class
definition.
- Add and fix some type-hints in gitlab/client.py
([`8837207`](https://github.com/python-gitlab/python-gitlab/commit/88372074a703910ba533237e6901e5af4c26c2bd))
Was able to figure out better type-hints for gitlab/client.py
- Add test
([`f8cf1e1`](https://github.com/python-gitlab/python-gitlab/commit/f8cf1e110401dcc6b9b176beb8675513fc1c7d17))
- Add type hints to gitlab/base.py
([`3727cbd`](https://github.com/python-gitlab/python-gitlab/commit/3727cbd21fc40b312573ca8da56e0f6cf9577d08))
- Add type hints to gitlab/base.py:RESTManager
([`9c55593`](https://github.com/python-gitlab/python-gitlab/commit/9c55593ae6a7308176710665f8bec094d4cadc2e))
Add some additional type hints to gitlab/base.py
- Add type hints to gitlab/utils.py
([`acd9294`](https://github.com/python-gitlab/python-gitlab/commit/acd9294fac52a636a016a7a3c14416b10573da28))
- Add type-hints for gitlab/mixins.py
([`baea721`](https://github.com/python-gitlab/python-gitlab/commit/baea7215bbbe07c06b2ca0f97a1d3d482668d887))
* Added type-hints for gitlab/mixins.py * Changed use of filter with a lambda expression to
list-comprehension. mypy was not able to understand the previous code. Also list-comprehension is
better :)
- Add type-hints to gitlab/cli.py
([`10b7b83`](https://github.com/python-gitlab/python-gitlab/commit/10b7b836d31fbe36a7096454287004b46a7799dd))
- Add type-hints to gitlab/client.py
([`c9e5b4f`](https://github.com/python-gitlab/python-gitlab/commit/c9e5b4f6285ec94d467c7c10c45f4e2d5f656430))
Adding some initial type-hints to gitlab/client.py
- Add type-hints to gitlab/config.py
([`213e563`](https://github.com/python-gitlab/python-gitlab/commit/213e5631b1efce11f8a1419cd77df5d9da7ec0ac))
- Add type-hints to gitlab/const.py
([`a10a777`](https://github.com/python-gitlab/python-gitlab/commit/a10a7777caabd6502d04f3947a317b5b0ac869f2))
- Bump version to 2.7.0
([`34c4052`](https://github.com/python-gitlab/python-gitlab/commit/34c4052327018279c9a75d6b849da74eccc8819b))
- Del 'import *' in gitlab/v4/objects/project_access_tokens.py
([`9efbe12`](https://github.com/python-gitlab/python-gitlab/commit/9efbe1297d8d32419b8f04c3758ca7c83a95f199))
Remove usage of 'import *' in gitlab/v4/objects/project_access_tokens.py.
- Disallow incomplete type defs
([`907634f`](https://github.com/python-gitlab/python-gitlab/commit/907634fe4d0d30706656b8bc56260b5532613e62))
Don't allow a partially annotated function definition. Either none of the function is annotated or
all of it must be.
Update code to ensure no-more partially annotated functions.
Update gitlab/cli.py with better type-hints. Changed Tuple[Any, ...] to Tuple[str, ...]
- Explicitly import gitlab.v4.objects/cli
([`233b79e`](https://github.com/python-gitlab/python-gitlab/commit/233b79ed442aac66faf9eb4b0087ea126d6dffc5))
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."
- Fix E711 error reported by flake8
([`630901b`](https://github.com/python-gitlab/python-gitlab/commit/630901b30911af01da5543ca609bd27bc5a1a44c))
E711: Comparison to none should be 'if cond is none:'
https://www.flake8rules.com/rules/E711.html
- Fix E712 errors reported by flake8
([`83670a4`](https://github.com/python-gitlab/python-gitlab/commit/83670a49a3affd2465f8fcbcc3c26141592c1ccd))
E712: Comparison to true should be 'if cond is true:' or 'if cond:'
https://www.flake8rules.com/rules/E712.html
- Fix E741/E742 errors reported by flake8
([`380f227`](https://github.com/python-gitlab/python-gitlab/commit/380f227a1ecffd5e22ae7aefed95af3b5d830994))
Fixes to resolve errors for: https://www.flake8rules.com/rules/E741.html Do not use variables named
'I', 'O', or 'l' (E741)
https://www.flake8rules.com/rules/E742.html Do not define classes named 'I', 'O', or 'l' (E742)
- Fix F401 errors reported by flake8
([`ff21eb6`](https://github.com/python-gitlab/python-gitlab/commit/ff21eb664871904137e6df18308b6e90290ad490))
F401: Module imported but unused
https://www.flake8rules.com/rules/F401.html
- Fix F841 errors reported by flake8
([`40f4ab2`](https://github.com/python-gitlab/python-gitlab/commit/40f4ab20ba0903abd3d5c6844fc626eb264b9a6a))
Local variable name is assigned to but never used
https://www.flake8rules.com/rules/F841.html
- Fix package file test naming
([`8c80268`](https://github.com/python-gitlab/python-gitlab/commit/8c802680ae7d3bff13220a55efeed9ca79104b10))
- Fix typo in mr events
([`c5e6fb3`](https://github.com/python-gitlab/python-gitlab/commit/c5e6fb3bc74c509f35f973e291a7551b2b64dba5))
- Have _create_attrs & _update_attrs be a namedtuple
([`aee1f49`](https://github.com/python-gitlab/python-gitlab/commit/aee1f496c1f414c1e30909767d53ae624fe875e7))
Convert _create_attrs and _update_attrs to use a NamedTuple (RequiredOptional) to help with code
readability. Update all code to use the NamedTuple.
- Import audit events in objects
([`35a190c`](https://github.com/python-gitlab/python-gitlab/commit/35a190cfa0902d6a298aba0a3135c5a99edfe0fa))
- Improve type-hints for gitlab/base.py
([`cbd43d0`](https://github.com/python-gitlab/python-gitlab/commit/cbd43d0b4c95e46fc3f1cffddc6281eced45db4a))
Determined the base class for obj_cls and adding type-hints for it.
- Make _types always present in RESTManager
([`924f83e`](https://github.com/python-gitlab/python-gitlab/commit/924f83eb4b5e160bd231efc38e2eea0231fa311f))
We now create _types = {} in RESTManager class.
By making _types always present in RESTManager it makes the code simpler. We no longer have to do:
types = getattr(self, "_types", {})
And the type checker now understands the type.
- Make lint happy
([`7a7c9fd`](https://github.com/python-gitlab/python-gitlab/commit/7a7c9fd932def75a2f2c517482784e445d83881a))
- Make lint happy
([`b5f43c8`](https://github.com/python-gitlab/python-gitlab/commit/b5f43c83b25271f7aff917a9ce8826d39ff94034))
- Make lint happy
([`732e49c`](https://github.com/python-gitlab/python-gitlab/commit/732e49c6547c181de8cc56e93b30dc399e87091d))
- Make ListMixin._list_filters always present
([`8933113`](https://github.com/python-gitlab/python-gitlab/commit/89331131b3337308bacb0c4013e80a4809f3952c))
Always create ListMixin._list_filters attribute with a default value of tuple().
This way we don't need to use hasattr() and we will know the type of the attribute.
- Make RESTObject._short_print_attrs always present
([`6d55120`](https://github.com/python-gitlab/python-gitlab/commit/6d551208f4bc68d091a16323ae0d267fbb6003b6))
Always create RESTObject._short_print_attrs with a default value of None.
This way we don't need to use hasattr() and we will know the type of the attribute.
- Put assert statements inside 'if TYPE_CHECKING:'
([`b562458`](https://github.com/python-gitlab/python-gitlab/commit/b562458f063c6be970f58c733fe01ec786798549))
To be safe that we don't assert while running, put the assert statements, which are used by mypy to
check that types are correct, inside an 'if TYPE_CHECKING:' block.
Also, instead of asserting that the item is a dict, instead assert that it is not a
requests.Response object. Theoretically the JSON could return as a list or dict, though at this
time we are assuming a dict.
- Remove import of gitlab.utils from __init__.py
([`39b9183`](https://github.com/python-gitlab/python-gitlab/commit/39b918374b771f1d417196ca74fa04fe3968c412))
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.
- Remove Python 2 code
([`b5d4e40`](https://github.com/python-gitlab/python-gitlab/commit/b5d4e408830caeef86d4c241ac03a6e8781ef189))
httplib is a Python 2 library. It was renamed to http.client in Python 3.
https://docs.python.org/2.7/library/httplib.html
- Remove unused ALLOWED_KEYSET_ENDPOINTS variable
([`3d5d5d8`](https://github.com/python-gitlab/python-gitlab/commit/3d5d5d8b13fc8405e9ef3e14be1fd8bd32235221))
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.
- Remove unused function _construct_url()
([`009d369`](https://github.com/python-gitlab/python-gitlab/commit/009d369f08e46d1e059b98634ff8fe901357002d))
The function _construct_url() was used by the v3 API. All usage of the function was removed in
commit fe89b949922c028830dd49095432ba627d330186
- Remove unused function sanitize_parameters()
([`443b934`](https://github.com/python-gitlab/python-gitlab/commit/443b93482e29fecc12fdbd2329427b37b05ba425))
The function sanitize_parameters() was used when the v3 API was in use. Since v3 API support has
been removed there are no more users of this function.
- Remove usage of 'from ... import *'
([`c83eaf4`](https://github.com/python-gitlab/python-gitlab/commit/c83eaf4f395300471311a67be34d8d306c2b3861))
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.
- Remove usage of 'from ... import *' in client.py
([`bf0c8c5`](https://github.com/python-gitlab/python-gitlab/commit/bf0c8c5d123a7ad0587cb97c3aafd97ab2a9dabf))
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.
- Remove usage of getattr()
([`2afd18a`](https://github.com/python-gitlab/python-gitlab/commit/2afd18aa28742a3267742859a88be6912a803874))
Remove usage of getattr(self, "_update_uses_post", False)
Instead add it to class and set default value to False.
Add a tests that shows it is set to True for the ProjectMergeRequestApprovalManager and
ProjectApprovalManager classes.
- **api**: Move repository endpoints into separate module
([`1ed154c`](https://github.com/python-gitlab/python-gitlab/commit/1ed154c276fb2429d3b45058b9314d6391dbff02))
- **ci**: Deduplicate PR jobs
([`63918c3`](https://github.com/python-gitlab/python-gitlab/commit/63918c364e281f9716885a0f9e5401efcd537406))
- **config**: Allow simple commands without external script
([`91ffb8e`](https://github.com/python-gitlab/python-gitlab/commit/91ffb8e97e213d2f14340b952630875995ecedb2))
- **deps**: Update dependency docker-compose to v1.28.3
([`2358d48`](https://github.com/python-gitlab/python-gitlab/commit/2358d48acbe1c378377fb852b41ec497217d2555))
- **deps**: Update dependency docker-compose to v1.28.4
([`8938484`](https://github.com/python-gitlab/python-gitlab/commit/89384846445be668ca6c861f295297d048cae914))
- **deps**: Update dependency docker-compose to v1.28.5
([`f4ab558`](https://github.com/python-gitlab/python-gitlab/commit/f4ab558f2cd85fe716e24f3aa4ede5db5b06e7c4))
- **deps**: Update dependency docker-compose to v1.28.6
([`46b05d5`](https://github.com/python-gitlab/python-gitlab/commit/46b05d525d0ade6f2aadb6db23fadc85ad48cd3d))
- **deps**: Update dependency docker-compose to v1.29.1
([`a89ec43`](https://github.com/python-gitlab/python-gitlab/commit/a89ec43ee7a60aacd1ac16f0f1f51c4abeaaefef))
- **deps**: Update dependency sphinx to v3.4.3
([`37c992c`](https://github.com/python-gitlab/python-gitlab/commit/37c992c09bfd25f3ddcb026f830f3a79c39cb70d))
- **deps**: Update dependency sphinx to v3.5.0
([`188c5b6`](https://github.com/python-gitlab/python-gitlab/commit/188c5b692fc195361c70f768cc96c57b3686d4b7))
- **deps**: Update dependency sphinx to v3.5.1
([`f916f09`](https://github.com/python-gitlab/python-gitlab/commit/f916f09d3a9cac07246035066d4c184103037026))
- **deps**: Update dependency sphinx to v3.5.2
([`9dee5c4`](https://github.com/python-gitlab/python-gitlab/commit/9dee5c420633bc27e1027344279c47862f7b16da))
- **deps**: Update dependency sphinx to v3.5.4
([`a886d28`](https://github.com/python-gitlab/python-gitlab/commit/a886d28a893ac592b930ce54111d9ae4e90f458e))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.10.0-ce.0
([`5221e33`](https://github.com/python-gitlab/python-gitlab/commit/5221e33768fe1e49456d5df09e3f50b46933c8a4))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.10.1-ce.0
([`1995361`](https://github.com/python-gitlab/python-gitlab/commit/1995361d9a767ad5af5338f4555fa5a3914c7374))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.10.3-ce.0
([`eabe091`](https://github.com/python-gitlab/python-gitlab/commit/eabe091945d3fe50472059431e599117165a815a))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.11.0-ce.0
([`711896f`](https://github.com/python-gitlab/python-gitlab/commit/711896f20ff81826c58f1f86dfb29ad860e1d52a))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.11.1-ce.0
([`3088714`](https://github.com/python-gitlab/python-gitlab/commit/308871496041232f555cf4cb055bf7f4aaa22b23))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.8.2-ce.0
([`7c12038`](https://github.com/python-gitlab/python-gitlab/commit/7c120384762e23562a958ae5b09aac324151983a))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.8.3-ce.0
([`e6c20f1`](https://github.com/python-gitlab/python-gitlab/commit/e6c20f18f3bd1dabdf181a070b9fdbfe4a442622))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.8.4-ce.0
([`832cb88`](https://github.com/python-gitlab/python-gitlab/commit/832cb88992cd7af4903f8b780e9475c03c0e6e56))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.9.0-ce.0
([`3aef19c`](https://github.com/python-gitlab/python-gitlab/commit/3aef19c51713bdc7ca0a84752da3ca22329fd4c4))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.9.1-ce.0
([`f6fd995`](https://github.com/python-gitlab/python-gitlab/commit/f6fd99530d70f2a7626602fd9132b628bb968eab))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.9.2-ce.0
([`933ba52`](https://github.com/python-gitlab/python-gitlab/commit/933ba52475e5dae4cf7c569d8283e60eebd5b7b6))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.9.3-ce.0
([`2ddf45f`](https://github.com/python-gitlab/python-gitlab/commit/2ddf45fed0b28e52d31153d9b1e95d0cae05e9f5))
- **deps**: Update gitlab/gitlab-ce docker tag to v13.9.4-ce.0
([`939f769`](https://github.com/python-gitlab/python-gitlab/commit/939f769e7410738da2e1c5d502caa765f362efdd))
- **deps**: Update precommit hook alessandrojcm/commitlint-pre-commit-hook to v4
([`505a8b8`](https://github.com/python-gitlab/python-gitlab/commit/505a8b8d7f16e609f0cde70be88a419235130f2f))
- **deps**: Update wagoid/commitlint-github-action action to v3
([`b3274cf`](https://github.com/python-gitlab/python-gitlab/commit/b3274cf93dfb8ae85e4a636a1ffbfa7c48f1c8f6))
- **objects**: Make Project refreshable
([`958a6aa`](https://github.com/python-gitlab/python-gitlab/commit/958a6aa83ead3fb6be6ec61bdd894ad78346e7bd))
Helps getting the real state of the project from the server.
- **objects**: Remove noisy deprecation warning for audit events
([`2953642`](https://github.com/python-gitlab/python-gitlab/commit/29536423e3e8866eda7118527a49b120fefb4065))
It's mostly an internal thing anyway and can be removed in 3.0.0
- **tests**: Remove unused URL segment
([`66f0b6c`](https://github.com/python-gitlab/python-gitlab/commit/66f0b6c23396b849f8653850b099e664daa05eb4))
Documentation
- Add docs and examples for custom user agent
([`a69a214`](https://github.com/python-gitlab/python-gitlab/commit/a69a214ef7f460cef7a7f44351c4861503f9902e))
- Add information about the gitter community
([`6ff67e7`](https://github.com/python-gitlab/python-gitlab/commit/6ff67e7327b851fa67be6ad3d82f88ff7cce0dc9))
Add a section in the README.rst about the gitter community. The badge already exists and is useful
but very easy to miss.
- Change travis-ci badge to githubactions
([`2ba5ba2`](https://github.com/python-gitlab/python-gitlab/commit/2ba5ba244808049aad1ee3b42d1da258a9db9f61))
- **api**: Add examples for resource state events
([`4d00c12`](https://github.com/python-gitlab/python-gitlab/commit/4d00c12723d565dc0a83670f62e3f5102650d822))
- **api**: Add release links API docs
([`36d65f0`](https://github.com/python-gitlab/python-gitlab/commit/36d65f03db253d710938c2d827c1124c94a40506))
Features
- Add an initial mypy test to tox.ini
([`fdec039`](https://github.com/python-gitlab/python-gitlab/commit/fdec03976a17e0708459ba2fab22f54173295f71))
Add an initial mypy test to test gitlab/base.py and gitlab/__init__.py
- Add personal access token API
([`2bb16fa`](https://github.com/python-gitlab/python-gitlab/commit/2bb16fac18a6a91847201c174f3bf1208338f6aa))
See: https://docs.gitlab.com/ee/api/personal_access_tokens.html
- Add project audit endpoint
([`6660dbe`](https://github.com/python-gitlab/python-gitlab/commit/6660dbefeeffc2b39ddfed4928a59ed6da32ddf4))
- Add ProjectPackageFile
([`b9d469b`](https://github.com/python-gitlab/python-gitlab/commit/b9d469bc4e847ae0301be28a0c70019a7f6ab8b6))
Add ProjectPackageFile and the ability to list project package package_files.
Fixes 1372
- Import from bitbucket server
([`ff3013a`](https://github.com/python-gitlab/python-gitlab/commit/ff3013a2afeba12811cb3d860de4d0ea06f90545))
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
- Option to add a helper to lookup token
([`8ecf559`](https://github.com/python-gitlab/python-gitlab/commit/8ecf55926f8e345960560e5c5dd6716199cfb0ec))
- **api,cli**: Make user agent configurable
([`4bb201b`](https://github.com/python-gitlab/python-gitlab/commit/4bb201b92ef0dcc14a7a9c83e5600ba5b118fc33))
- **issues**: Add missing get verb to IssueManager
([`f78ebe0`](https://github.com/python-gitlab/python-gitlab/commit/f78ebe065f73b29555c2dcf17b462bb1037a153e))
- **objects**: Add Release Links API support
([`28d7518`](https://github.com/python-gitlab/python-gitlab/commit/28d751811ffda45ff0b1c35e0599b655f3a5a68b))
- **objects**: Add support for group audit events API
([`2a0fbdf`](https://github.com/python-gitlab/python-gitlab/commit/2a0fbdf9fe98da6c436230be47b0ddb198c7eca9))
- **objects**: Add support for resource state events API
([`d4799c4`](https://github.com/python-gitlab/python-gitlab/commit/d4799c40bd12ed85d4bb834464fdb36c4dadcab6))
- **projects**: Add project access token api
([`1becef0`](https://github.com/python-gitlab/python-gitlab/commit/1becef0253804f119c8a4d0b8b1c53deb2f4d889))
- **users**: Add follow/unfollow API
([`e456869`](https://github.com/python-gitlab/python-gitlab/commit/e456869d98a1b7d07e6f878a0d6a9719c1b10fd4))
Refactoring
- Move Gitlab and GitlabList to gitlab/client.py
([`53a7645`](https://github.com/python-gitlab/python-gitlab/commit/53a764530cc3c6411034a3798f794545881d341e))
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
- **api**: Explicitly export classes for star imports
([`f05c287`](https://github.com/python-gitlab/python-gitlab/commit/f05c287512a9253c7f7d308d3437240ac8257452))
- **objects**: Move instance audit events where they belong
([`48ba88f`](https://github.com/python-gitlab/python-gitlab/commit/48ba88ffb983207da398ea2170c867f87a8898e9))
- **v4**: Split objects and managers per API resource
([`a5a48ad`](https://github.com/python-gitlab/python-gitlab/commit/a5a48ad08577be70c6ca511d3b4803624e5c2043))
Testing
- Don't add duplicate fixture
([`5d94846`](https://github.com/python-gitlab/python-gitlab/commit/5d9484617e56b89ac5e17f8fc94c0b1eb46d4b89))
Co-authored-by: Nejc Habjan <hab.nejcgmail.com>
- **api**: Add functional test for release links API
([`ab2a1c8`](https://github.com/python-gitlab/python-gitlab/commit/ab2a1c816d83e9e308c0c9c7abf1503438b0b3be))
- **api,cli**: Add tests for custom user agent
([`c5a37e7`](https://github.com/python-gitlab/python-gitlab/commit/c5a37e7e37a62372c250dfc8c0799e847eecbc30))
- **object**: Add test for __dir__ duplicates
([`a8e591f`](https://github.com/python-gitlab/python-gitlab/commit/a8e591f742f777f8747213b783271004e5acc74d))
- **objects**: Add tests for resource state events
([`10225cf`](https://github.com/python-gitlab/python-gitlab/commit/10225cf26095efe82713136ddde3330e7afc6d10))
- **objects**: Add unit test for instance audit events
([`84e3247`](https://github.com/python-gitlab/python-gitlab/commit/84e3247d0cd3ddb1f3aa0ac91fb977c3e1e197b5))