diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-08-25 16:45:52 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-08-25 16:45:52 +0200 |
commit | d8c2488a7b32e8f4a36109c4a4d6d4aad7ab8942 (patch) | |
tree | bd92fca843dcc37426d4ffa2fc9c5e3b165f7c7d | |
parent | facbc8cb858ac400e912a905be3668ee2d33e2cd (diff) | |
download | gitlab-d8c2488a7b32e8f4a36109c4a4d6d4aad7ab8942.tar.gz |
1.6.0 release1.6.0
-rw-r--r-- | AUTHORS | 5 | ||||
-rw-r--r-- | ChangeLog.rst | 20 | ||||
-rw-r--r-- | RELEASE_NOTES.rst | 9 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
4 files changed, 34 insertions, 2 deletions
@@ -18,6 +18,7 @@ Aron Pammer <info@aronpammer.me> Asher256 <Asher256@users.noreply.github.com> Bancarel Valentin <bancarel.valentin@gmail.com> Ben Brown <ben.brown@codethink.co.uk> +btmanm <btmanm@users.noreply.github.com> Carlo Mion <mion00@users.noreply.github.com> Carlos Soriano <csoriano@gnome.org> Christian <cgumpert@users.noreply.github.com> @@ -27,6 +28,7 @@ Cosimo Lupo <cosimo.lupo@daltonmaag.com> Crestez Dan Leonard <lcrestez@ixiacom.com> Cyril Jouve <jv.cyril@gmail.com> Daniel Kimsey <dekimsey@ufl.edu> +David Guest <owmtia@gmail.com> derek-austin <derek.austin35@mailinator.com> Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> Dmytro Litvinov <litvinov.do.it@gmail.com> @@ -61,6 +63,7 @@ Mart Sõmermaa <mart.somermaa@cgi.com> massimone88 <stefano.mandruzzato@gmail.com> Matej Zerovnik <matej@zunaj.si> Matt Odden <locke105@gmail.com> +Matthias Schmitz <matthias@sigxcpu.org> Matus Ferech <matus.ferech@telekom.com> Maura Hausman <mhausman@wayfair.com> Maxime Guyot <maxime.guyot@elits.com> @@ -95,6 +98,8 @@ Stefan Klug <klug.stefan@gmx.de> Stefano Mandruzzato <stefano.mandruzzato@gmail.com> THEBAULT Julien <julien@thebault.co> Tim Neumann <mail@timnn.me> +Tom Downes <tpdownes@users.noreply.github.com> Twan <tmeynen@inuits.eu> +Will Rouesnel <w.rouesnel@gmail.com> Will Starms <vilhelmen@gmail.com> Yosi Zelensky <yosyos04@gmail.com> diff --git a/ChangeLog.rst b/ChangeLog.rst index 5b2c497..beac7ff 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,23 @@ ChangeLog ========= +Version 1.6.0_ - 2018-08-25 +--------------------------- + +* [docs] Don't use hardcoded values for ids +* [docs] Improve the snippets examples +* [cli] Output: handle bytes in API responses +* [cli] Fix the case where we have nothing to print +* Project import: fix the override_params parameter +* Support group and global MR listing +* Implement MR.pipelines() +* MR: add the squash attribute for create/update +* Added support for listing forks of a project +* [docs] Add/update notes about read-only objects +* Raise an exception on https redirects for PUT/POST +* [docs] Add a FAQ +* [cli] Fix the project-export download + Version 1.5.1_ - 2018-06-23 --------------------------- @@ -643,7 +660,8 @@ Version 0.1 - 2013-07-08 * Initial release -.. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.1 +.. _1.6.0: https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0 +.. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.5.0...1.5.1 .. _1.5.0: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.0 .. _1.4.0: https://github.com/python-gitlab/python-gitlab/compare/1.3.0...1.4.0 .. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.2.0...1.3.0 diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index ac8daeb..1e53a88 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -4,6 +4,15 @@ Release notes This page describes important changes between python-gitlab releases. +Changes from 1.5 to 1.6 +======================= + +* When python-gitlab detects HTTP redirections from http to https it will raise + a RedirectionError instead of a cryptic error. + + Make sure to use an ``https://`` protocol in your GitLab URL parameter if the + server requires it. + Changes from 1.4 to 1.5 ======================= diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 5b23ef8..6afccf2 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -31,7 +31,7 @@ from gitlab.exceptions import * # noqa from gitlab import utils # noqa __title__ = 'python-gitlab' -__version__ = '1.5.1' +__version__ = '1.6.0' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |