diff options
author | github-actions <action@github.com> | 2022-08-04 17:03:56 +0000 |
---|---|---|
committer | github-actions <github-actions@github.com> | 2022-08-04 17:03:56 +0000 |
commit | 50822f808e44be42f176d4c093a0ea9ed1f6add1 (patch) | |
tree | 239082090c687b89efbe4568c72e6d990858fa29 | |
parent | 0040b4337bae815cfe1a06f8371a7a720146f271 (diff) | |
download | gitlab-50822f808e44be42f176d4c093a0ea9ed1f6add1.tar.gz |
chore: release v3.8.0v3.8.0
-rw-r--r-- | CHANGELOG.md | 12 | ||||
-rw-r--r-- | gitlab/_version.py | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e15641..eef74e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ <!--next-version-placeholder--> +## v3.8.0 (2022-08-04) +### Feature +* **client:** Warn user on misconfigured URL in `auth()` ([`0040b43`](https://github.com/python-gitlab/python-gitlab/commit/0040b4337bae815cfe1a06f8371a7a720146f271)) +* Support downloading archive subpaths ([`cadb0e5`](https://github.com/python-gitlab/python-gitlab/commit/cadb0e55347cdac149e49f611c99b9d53a105520)) + +### Fix +* **client:** Ensure encoded query params are never duplicated ([`1398426`](https://github.com/python-gitlab/python-gitlab/commit/1398426cd748fdf492fe6184b03ac2fcb7e4fd6e)) +* Optionally keep user-provided base URL for pagination ([#2149](https://github.com/python-gitlab/python-gitlab/issues/2149)) ([`e2ea8b8`](https://github.com/python-gitlab/python-gitlab/commit/e2ea8b89a7b0aebdb1eb3b99196d7c0034076df8)) + +### Documentation +* Describe self-revoking personal access tokens ([`5ea48fc`](https://github.com/python-gitlab/python-gitlab/commit/5ea48fc3c28f872dd1184957a6f2385da075281c)) + ## v3.7.0 (2022-07-28) ### Feature * Allow sort/ordering for project releases ([`b1dd284`](https://github.com/python-gitlab/python-gitlab/commit/b1dd284066b4b94482b9d41310ac48b75bcddfee)) diff --git a/gitlab/_version.py b/gitlab/_version.py index 7c1a18d..51842d0 100644 --- a/gitlab/_version.py +++ b/gitlab/_version.py @@ -3,4 +3,4 @@ __copyright__ = "Copyright 2013-2019 Gauvain Pocentek, 2019-2021 python-gitlab t __email__ = "gauvainpocentek@gmail.com" __license__ = "LGPL3" __title__ = "python-gitlab" -__version__ = "3.7.0" +__version__ = "3.8.0" |