<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/gitlab/v4/objects, branch v2.7.1</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(files): do not url-encode file paths twice</title>
<updated>2021-04-26T20:23:58+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2021-04-26T20:23:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=8e25cecce3c0a19884a8d231ee1a672b80e94398'/>
<id>8e25cecce3c0a19884a8d231ee1a672b80e94398</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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://91.123.203.49/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 #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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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: argument type was not a tuple as expected</title>
<updated>2021-04-18T17:47:06+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2021-04-18T17:47:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=062f8f6a917abc037714129691a845c16b070ff6'/>
<id>062f8f6a917abc037714129691a845c16b070ff6</id>
<content type='text'>
While adding type-hints mypy flagged this as an issue. The third
argument to register_custom_action is supposed to be a tuple. It was
being passed as a string rather than a tuple of strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While adding type-hints mypy flagged this as an issue. The third
argument to register_custom_action is supposed to be a tuple. It was
being passed as a string rather than a tuple of strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: fix F841 errors reported by flake8</title>
<updated>2021-04-18T15:26:07+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2021-04-17T21:59:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=40f4ab20ba0903abd3d5c6844fc626eb264b9a6a'/>
<id>40f4ab20ba0903abd3d5c6844fc626eb264b9a6a</id>
<content type='text'>
Local variable name is assigned to but never used

https://www.flake8rules.com/rules/F841.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Local variable name is assigned to but never used

https://www.flake8rules.com/rules/F841.html
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: fix F401 errors reported by flake8</title>
<updated>2021-04-18T15:24:40+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2021-04-17T21:20:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=ff21eb664871904137e6df18308b6e90290ad490'/>
<id>ff21eb664871904137e6df18308b6e90290ad490</id>
<content type='text'>
F401: Module imported but unused

https://www.flake8rules.com/rules/F401.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
F401: Module imported but unused

https://www.flake8rules.com/rules/F401.html
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: fix typo in mr events</title>
<updated>2021-04-18T12:24:14+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2021-03-08T07:40:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=c5e6fb3bc74c509f35f973e291a7551b2b64dba5'/>
<id>c5e6fb3bc74c509f35f973e291a7551b2b64dba5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(objects): add support for resource state events API</title>
<updated>2021-04-18T12:24:14+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2021-03-07T17:06:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=d4799c40bd12ed85d4bb834464fdb36c4dadcab6'/>
<id>d4799c40bd12ed85d4bb834464fdb36c4dadcab6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
