<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/gitlab/__init__.py, branch chore/automatic-deploy</title>
<subtitle>github.com: gpocentek/python-gitlab.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/'/>
<entry>
<title>fix: handle empty 'Retry-After' header from GitLab</title>
<updated>2019-01-09T02:54:09+00:00</updated>
<author>
<name>Srikanth Chelluri</name>
<email>srikanth.chelluri@appian.com</email>
</author>
<published>2019-01-09T01:58:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=7a3724f3fca93b4f55aed5132cf46d3718c4f594'/>
<id>7a3724f3fca93b4f55aed5132cf46d3718c4f594</id>
<content type='text'>
When requests are throttled (HTTP response code 429), python-gitlab
assumed that 'Retry-After' existed in the response headers. This is
not always the case and so the request fails due to a KeyError. The
change in this commit adds a rudimentary exponential backoff to the
'http_request' method, which defaults to 10 retries but can be set
to -1 to retry without bound.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When requests are throttled (HTTP response code 429), python-gitlab
assumed that 'Retry-After' existed in the response headers. This is
not always the case and so the request fails due to a KeyError. The
change in this commit adds a rudimentary exponential backoff to the
'http_request' method, which defaults to 10 retries but can be set
to -1 to retry without bound.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare the 1.7.0 release</title>
<updated>2018-12-09T08:37:38+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-12-09T08:37:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=456f3c48e48dcff59e063c2572b6028f1abfba82'/>
<id>456f3c48e48dcff59e063c2572b6028f1abfba82</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve error message handling in exceptions</title>
<updated>2018-11-24T16:37:10+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-11-24T16:37:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=1fb1296c9191e57e109c4e5eb9504bce191a6ff1'/>
<id>1fb1296c9191e57e109c4e5eb9504bce191a6ff1</id>
<content type='text'>
* Depending on the request Gitlab has a 'message' or 'error' attribute
in the json data, handle both
* Add some consistency by converting messages to unicode or str for
exceptions (depending on the python version)

Closes #616
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Depending on the request Gitlab has a 'message' or 'error' attribute
in the json data, handle both
* Add some consistency by converting messages to unicode or str for
exceptions (depending on the python version)

Closes #616
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the https redirection test</title>
<updated>2018-09-05T16:13:45+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-09-05T16:13:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=6f80380ed1de49dcc035d06408263d4961e7d18b'/>
<id>6f80380ed1de49dcc035d06408263d4961e7d18b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>1.6.0 release</title>
<updated>2018-08-25T14:45:52+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-08-25T14:45:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=d8c2488a7b32e8f4a36109c4a4d6d4aad7ab8942'/>
<id>d8c2488a7b32e8f4a36109c4a4d6d4aad7ab8942</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Raise an exception on https redirects for PUT/POST</title>
<updated>2018-08-24T15:09:55+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-08-24T15:09:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=a221d7b35bc20da758e7467fe789e16613c54275'/>
<id>a221d7b35bc20da758e7467fe789e16613c54275</id>
<content type='text'>
POST and PUT requests are modified by clients when redirections happen.
A common problem with python-gitlab is a misconfiguration of the server
URL: the http to https redirection breaks some requests.

With this change python-gitlab should detect problematic redirections,
and raise a proper exception instead of failing with a cryptic error.

Closes #565
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
POST and PUT requests are modified by clients when redirections happen.
A common problem with python-gitlab is a misconfiguration of the server
URL: the http to https redirection breaks some requests.

With this change python-gitlab should detect problematic redirections,
and raise a proper exception instead of failing with a cryptic error.

Closes #565
</pre>
</div>
</content>
</entry>
<entry>
<title>Support group and global MR listing</title>
<updated>2018-07-15T16:03:33+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-07-15T16:03:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=0379efaa641d22ccdb530214c56ec72891f73c4a'/>
<id>0379efaa641d22ccdb530214c56ec72891f73c4a</id>
<content type='text'>
Closes #553
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #553
</pre>
</div>
</content>
</entry>
<entry>
<title>1.5.1 release</title>
<updated>2018-06-23T08:01:36+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-06-23T08:01:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=5e6330f82b121a4d7772f4083dd94bdf9a6d915d'/>
<id>5e6330f82b121a4d7772f4083dd94bdf9a6d915d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare the 1.5.0 release</title>
<updated>2018-06-22T10:42:38+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-06-22T10:42:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=eaa44509316ad7e80f9e73ddde310987132d7508'/>
<id>eaa44509316ad7e80f9e73ddde310987132d7508</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the same description for **kwargs everywhere</title>
<updated>2018-06-17T14:43:14+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-06-17T14:43:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=b1c63927aaa7c753fa622af5ac3637102ba9aea3'/>
<id>b1c63927aaa7c753fa622af5ac3637102ba9aea3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
