<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/docs/api-usage.rst, branch fix/non-auth</title>
<subtitle>github.com: gpocentek/python-gitlab.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/'/>
<entry>
<title>feat: add support for job token</title>
<updated>2019-09-06T11:41:36+00:00</updated>
<author>
<name>Mathieu Parent</name>
<email>math.parent@gmail.com</email>
</author>
<published>2019-09-05T08:47:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=cef3aa51a6928338c6755c3e6de78605fae8e59e'/>
<id>cef3aa51a6928338c6755c3e6de78605fae8e59e</id>
<content type='text'>
See https://docs.gitlab.com/ee/api/jobs.html#get-job-artifacts for usage
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See https://docs.gitlab.com/ee/api/jobs.html#get-job-artifacts for usage
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api-usage): fix project group example</title>
<updated>2019-06-19T09:16:20+00:00</updated>
<author>
<name>Nikolaos Pothitos</name>
<email>pothitos@di.uoa.gr</email>
</author>
<published>2019-06-19T07:06:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=40a1bf36c2df89daa1634e81c0635c1a63831090'/>
<id>40a1bf36c2df89daa1634e81c0635c1a63831090</id>
<content type='text'>
Fixes #798
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #798
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: remove v3 support</title>
<updated>2019-06-08T07:46:49+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2019-06-08T07:46:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=792766319f7c43004460fc9b975549be55430987'/>
<id>792766319f7c43004460fc9b975549be55430987</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(api): avoid parameter conflicts with python and gitlab</title>
<updated>2019-01-13T16:20:34+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2019-01-13T12:12:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=4bd027aac41c41f7e22af93c7be0058d2faf7fb4'/>
<id>4bd027aac41c41f7e22af93c7be0058d2faf7fb4</id>
<content type='text'>
Provide another way to send data to gitlab with a new `query_parameters`
argument. This parameter can be used to explicitly define the dict of
items to send to the server, so that **kwargs are only used to specify
python-gitlab specific parameters.

Closes #566
Closes #629
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Provide another way to send data to gitlab with a new `query_parameters`
argument. This parameter can be used to explicitly define the dict of
items to send to the server, so that **kwargs are only used to specify
python-gitlab specific parameters.

Closes #566
Closes #629
</pre>
</div>
</content>
</entry>
<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://git.baserock.org/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>[docs] add a warning about https://</title>
<updated>2018-09-05T16:04:20+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-09-05T16:04:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=042b706238810fa3b4fde92d298a709ebdb3a925'/>
<id>042b706238810fa3b4fde92d298a709ebdb3a925</id>
<content type='text'>
http to https redirection cause problems. Make notes of this in the
docs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
http to https redirection cause problems. Make notes of this in the
docs.
</pre>
</div>
</content>
</entry>
<entry>
<title>[docs] fix cut and paste leftover</title>
<updated>2018-09-05T16:01:07+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-09-05T16:01:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=b02c30f8b1829e87e2cc28ae7fdf8bb458a4b1c7'/>
<id>b02c30f8b1829e87e2cc28ae7fdf8bb458a4b1c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[docs] Fix the owned/starred usage documentation</title>
<updated>2018-09-04T14:36:34+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-09-04T14:36:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=ccf0c2ad35d4dd1af4f36e411027286a0be0f49f'/>
<id>ccf0c2ad35d4dd1af4f36e411027286a0be0f49f</id>
<content type='text'>
Closes #579
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #579
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor doc updates</title>
<updated>2018-08-25T13:46:27+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain@pocentek.net</email>
</author>
<published>2018-08-25T13:46:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=e9506d15a971888a9af72b37d3e7dbce55e49126'/>
<id>e9506d15a971888a9af72b37d3e7dbce55e49126</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct session example</title>
<updated>2018-06-13T16:33:06+00:00</updated>
<author>
<name>Stefan Crain</name>
<email>stefancrain@users.noreply.github.com</email>
</author>
<published>2018-06-13T16:33:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=01969c21391c61c915f39ebda8dfb758400a45f2'/>
<id>01969c21391c61c915f39ebda8dfb758400a45f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
