<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/docs/api-usage.rst, branch renovate/gitlab</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>fix(client): regression - do not automatically get_next if page=# and</title>
<updated>2023-01-25T17:18:48+00:00</updated>
<author>
<name>Helen Koike</name>
<email>helen.koike@collabora.com</email>
</author>
<published>2023-01-23T11:55:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=585e3a86c4cafa9ee73ed38676a78f3c34dbe6b2'/>
<id>585e3a86c4cafa9ee73ed38676a78f3c34dbe6b2</id>
<content type='text'>
iterator=True/as_list=False are used

This fix a regression introduced on commit
https://github.com/python-gitlab/python-gitlab/commit/1339d645ce58a2e1198b898b9549ba5917b1ff12

If page is used, then get_next should be false.

This was found on the mesa ci project, after upgrading the python-gitlab
version, the script that monitors the ci was getting killed by consuming
too much memory.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
iterator=True/as_list=False are used

This fix a regression introduced on commit
https://github.com/python-gitlab/python-gitlab/commit/1339d645ce58a2e1198b898b9549ba5917b1ff12

If page is used, then get_next should be false.

This was found on the mesa ci project, after upgrading the python-gitlab
version, the script that monitors the ci was getting killed by consuming
too much memory.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(faq): describe and group common errors</title>
<updated>2022-12-09T08:28:52+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-12-04T16:45:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=4c9a072b053f12f8098e4ea6fc47e3f6ab4f8b07'/>
<id>4c9a072b053f12f8098e4ea6fc47e3f6ab4f8b07</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: add minimal docs about the `enable_debug()` method</title>
<updated>2022-10-27T07:03:24+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-10-27T07:03:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=b4e9ab7ee395e575f17450c2dc0d519f7192e58e'/>
<id>b4e9ab7ee395e575f17450c2dc0d519f7192e58e</id>
<content type='text'>
Add some minimal documentation about the `enable_debug()` method.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add some minimal documentation about the `enable_debug()` method.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api): describe the list() and all() runners' functions</title>
<updated>2022-10-09T20:01:52+00:00</updated>
<author>
<name>Liora Milbaum</name>
<email>liora@lmb.co.il</email>
</author>
<published>2022-10-08T20:41:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=b6cc3f255532521eb259b42780354e03ce51458e'/>
<id>b6cc3f255532521eb259b42780354e03ce51458e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: add `get_all` param (and `--get-all`) to allow passing `all` to API</title>
<updated>2022-07-21T22:03:11+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2021-05-15T16:20:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=7c71d5db1199164b3fa9958e3c3bc6ec96efc78d'/>
<id>7c71d5db1199164b3fa9958e3c3bc6ec96efc78d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: add `asdict()` and `to_json()` methods to Gitlab Objects</title>
<updated>2022-07-20T15:38:43+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-07-20T15:38:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=08ac071abcbc28af04c0fa655576e25edbdaa4e2'/>
<id>08ac071abcbc28af04c0fa655576e25edbdaa4e2</id>
<content type='text'>
Add an `asdict()` method that returns a dictionary representation copy
of the Gitlab Object. This is a copy and changes made to it will have
no impact on the Gitlab Object.

The `asdict()` method name was chosen as both the `dataclasses` and
`attrs` libraries have an `asdict()` function which has the similar
purpose of creating a dictionary represenation of an object.

Also add a `to_json()` method that returns a JSON string
representation of the object.

Closes: #1116
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add an `asdict()` method that returns a dictionary representation copy
of the Gitlab Object. This is a copy and changes made to it will have
no impact on the Gitlab Object.

The `asdict()` method name was chosen as both the `dataclasses` and
`attrs` libraries have an `asdict()` function which has the similar
purpose of creating a dictionary represenation of an object.

Also add a `to_json()` method that returns a JSON string
representation of the object.

Closes: #1116
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: describe ROPC flow in place of password authentication</title>
<updated>2022-07-05T05:40:14+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-07-05T05:16:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=91c17b704f51e9a06b241d549f9a07a19c286118'/>
<id>91c17b704f51e9a06b241d549f9a07a19c286118</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api): add separate section for advanced usage</title>
<updated>2022-06-26T01:22:17+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-06-25T20:19:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=22ae1016f39256b8e2ca02daae8b3c7130aeb8e6'/>
<id>22ae1016f39256b8e2ca02daae8b3c7130aeb8e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api): document usage of head() methods</title>
<updated>2022-06-25T16:30:03+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-06-25T13:54:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=f555bfb363779cc6c8f8036f6d6cfa302e15d4fe'/>
<id>f555bfb363779cc6c8f8036f6d6cfa302e15d4fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api): stop linking to python-requests.org</title>
<updated>2022-06-25T14:10:14+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-06-25T13:57:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=49c7e83f768ee7a3fec19085a0fa0a67eadb12df'/>
<id>49c7e83f768ee7a3fec19085a0fa0a67eadb12df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
