<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/gitlab, branch chore/remove-noisy-deprecation-warning</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>chore(objects): remove noisy deprecation warning for audit events</title>
<updated>2021-04-25T12:31:35+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2021-04-25T12:26:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=29536423e3e8866eda7118527a49b120fefb4065'/>
<id>29536423e3e8866eda7118527a49b120fefb4065</id>
<content type='text'>
It's mostly an internal thing anyway and can be removed in 3.0.0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's mostly an internal thing anyway and can be removed in 3.0.0
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1392 from bbatliner/patch-1</title>
<updated>2021-04-23T14:36:58+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2021-04-23T14:36:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=cfc42d246a4fc9a9afa9a676efcac0774e909aab'/>
<id>cfc42d246a4fc9a9afa9a676efcac0774e909aab</id>
<content type='text'>
Improvements to HTTP requests</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Improvements to HTTP requests</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1405 from JohnVillalovos/jlvillal/returns_bytes</title>
<updated>2021-04-23T07:57:21+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2021-04-23T07:57:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=c055de05357e07fad57ebcefb5377997eae83e68'/>
<id>c055de05357e07fad57ebcefb5377997eae83e68</id>
<content type='text'>
fix: correct ProjectFile.decode() documentation</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix: correct ProjectFile.decode() documentation</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1397 from JohnVillalovos/jlvillal/flake8</title>
<updated>2021-04-23T07:20:34+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2021-04-23T07:20:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=976e14d95fc5716ad161cbf39d50e5863cd9b335'/>
<id>976e14d95fc5716ad161cbf39d50e5863cd9b335</id>
<content type='text'>
Fix all issues reported by running: tox -e pep8 and enable pep8 as a linter check</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix all issues reported by running: tox -e pep8 and enable pep8 as a linter check</pre>
</div>
</content>
</entry>
<entry>
<title>fix: correct ProjectFile.decode() documentation</title>
<updated>2021-04-23T01:48:54+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2021-04-23T01:44:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=b180bafdf282cd97e8f7b6767599bc42d5470bfa'/>
<id>b180bafdf282cd97e8f7b6767599bc42d5470bfa</id>
<content type='text'>
ProjectFile.decode() returns 'bytes' and not 'str'.

Update the method's doc-string and add a type-hint.

ProjectFile.decode() returns the result of a call to
base64.b64decode()

The docs for that function state it returns 'bytes':
https://docs.python.org/3/library/base64.html#base64.b64decode

Fixes: #1403
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ProjectFile.decode() returns 'bytes' and not 'str'.

Update the method's doc-string and add a type-hint.

ProjectFile.decode() returns the result of a call to
base64.b64decode()

The docs for that function state it returns 'bytes':
https://docs.python.org/3/library/base64.html#base64.b64decode

Fixes: #1403
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: update user's bool data and avatar</title>
<updated>2021-04-22T15:44:39+00:00</updated>
<author>
<name>Dylann Cordel</name>
<email>cordel.d@free.fr</email>
</author>
<published>2021-04-22T15:44:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=3ba27ffb6ae995c27608f84eef0abe636e2e63da'/>
<id>3ba27ffb6ae995c27608f84eef0abe636e2e63da</id>
<content type='text'>
If we want to update email, avatar and do not send email
confirmation change (`skip_reconfirmation` = True), `MultipartEncoder`
will try to encode everything except None and bytes. So it tries to encode bools.
Casting bool's values to their stringified int representation fix it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If we want to update email, avatar and do not send email
confirmation change (`skip_reconfirmation` = True), `MultipartEncoder`
will try to encode everything except None and bytes. So it tries to encode bools.
Casting bool's values to their stringified int representation fix it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1383 from spyoungtech/dirfix</title>
<updated>2021-04-21T19:04:40+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2021-04-21T19:04:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=60c5fd8878ff54f6e3fcd168545ab3af139f1dcc'/>
<id>60c5fd8878ff54f6e3fcd168545ab3af139f1dcc</id>
<content type='text'>
fix(types): prevent __dir__ in RestObject from producing duplicates</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix(types): prevent __dir__ in RestObject from producing duplicates</pre>
</div>
</content>
</entry>
<entry>
<title>test(object): add test for __dir__ duplicates</title>
<updated>2021-04-21T16:59:23+00:00</updated>
<author>
<name>Spencer Phillip Young</name>
<email>spencer.young@spyoung.com</email>
</author>
<published>2021-04-21T16:43:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=a8e591f742f777f8747213b783271004e5acc74d'/>
<id>a8e591f742f777f8747213b783271004e5acc74d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1400 from JohnVillalovos/jlvillal/sanitize</title>
<updated>2021-04-20T07:09:33+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2021-04-20T07:09:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=dd236a09c6a3e01a11410791210a95dd6cee9b5a'/>
<id>dd236a09c6a3e01a11410791210a95dd6cee9b5a</id>
<content type='text'>
chore: remove unused function sanitize_parameters()</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
chore: remove unused function sanitize_parameters()</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1398 from JohnVillalovos/jlvillal/mypy_mixins</title>
<updated>2021-04-20T06:58:30+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2021-04-20T06:58:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=5b18d20f2f2bb71606892616f6c98ddc9d2ab836'/>
<id>5b18d20f2f2bb71606892616f6c98ddc9d2ab836</id>
<content type='text'>
fix: correct some type-hints in gitlab/mixins.py</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix: correct some type-hints in gitlab/mixins.py</pre>
</div>
</content>
</entry>
</feed>
