<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/tests, branch fix/cli-manager-custom-methods</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(cli): allow custom methods in managers</title>
<updated>2022-01-21T23:50:40+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-01-21T23:11:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=109d730d5f67fbc45114e59d5aae4edc66229ff1'/>
<id>109d730d5f67fbc45114e59d5aae4edc66229ff1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: convert usage of `match_querystring` to `match`</title>
<updated>2022-01-16T19:51:09+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-16T19:51:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=d16e41bda2c355077cbdc419fe2e1d994fdea403'/>
<id>d16e41bda2c355077cbdc419fe2e1d994fdea403</id>
<content type='text'>
In the `responses` library the usage of `match_querystring` is
deprecated. Convert to using `match`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the `responses` library the usage of `match_querystring` is
deprecated. Convert to using `match`
</pre>
</div>
</content>
</entry>
<entry>
<title>test: remove usage of httpmock library</title>
<updated>2022-01-15T23:43:54+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-15T23:43:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=5254f193dc29d8854952aada19a72e5b4fc7ced0'/>
<id>5254f193dc29d8854952aada19a72e5b4fc7ced0</id>
<content type='text'>
Convert all usage of the `httpmock` library to using the `responses`
library.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert all usage of the `httpmock` library to using the `responses`
library.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1838 from python-gitlab/jlvillal/version_mv</title>
<updated>2022-01-15T16:42:43+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2022-01-15T16:42:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=8af403cb2b1c48acd6e9ebd392554926835c3893'/>
<id>8af403cb2b1c48acd6e9ebd392554926835c3893</id>
<content type='text'>
chore: rename `gitlab/__version__.py` to `gitlab/_version.py`</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
chore: rename `gitlab/__version__.py` to `gitlab/_version.py`</pre>
</div>
</content>
</entry>
<entry>
<title>chore: rename `gitlab/__version__.py` -&gt; `gitlab/_version.py`</title>
<updated>2022-01-15T16:31:00+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-15T16:31:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=b981ce7fed88c5d86a3fffc4ee3f99be0b958c1d'/>
<id>b981ce7fed88c5d86a3fffc4ee3f99be0b958c1d</id>
<content type='text'>
It is confusing to have a `gitlab/__version__.py` because we also
create a variable `gitlab.__version__` which can conflict with
`gitlab/__version__.py`.

For example in `gitlab/const.py` we have to know that
`gitlab.__version__` is a module and not the variable due to the
ordering of imports. But in most other usage `gitlab.__version__` is a
version string.

To reduce confusion make the name of the version file
`gitlab/_version.py`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is confusing to have a `gitlab/__version__.py` because we also
create a variable `gitlab.__version__` which can conflict with
`gitlab/__version__.py`.

For example in `gitlab/const.py` we have to know that
`gitlab.__version__` is a module and not the variable due to the
ordering of imports. But in most other usage `gitlab.__version__` is a
version string.

To reduce confusion make the name of the version file
`gitlab/_version.py`.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: use 'responses' in test_mixins_methods.py</title>
<updated>2022-01-15T06:37:58+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-15T06:37:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=208da04a01a4b5de8dc34e62c87db4cfa4c0d9b6'/>
<id>208da04a01a4b5de8dc34e62c87db4cfa4c0d9b6</id>
<content type='text'>
Convert from httmock to responses in test_mixins_methods.py

This leaves only one file left to convert
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert from httmock to responses in test_mixins_methods.py

This leaves only one file left to convert
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(tests): use method `projects.transfer()`</title>
<updated>2022-01-14T03:37:34+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-14T03:37:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=e5af2a720cb5f97e5a7a5f639095fad76a48f218'/>
<id>e5af2a720cb5f97e5a7a5f639095fad76a48f218</id>
<content type='text'>
When doing the functional tests use the new function
`projects.transfer` instead of the deprecated function
`projects.transfer_project()`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When doing the functional tests use the new function
`projects.transfer` instead of the deprecated function
`projects.transfer_project()`
</pre>
</div>
</content>
</entry>
<entry>
<title>test(groups): enable group transfer tests</title>
<updated>2022-01-14T01:17:20+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-01-14T00:49:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=57bb67ae280cff8ac6e946cd3f3797574a574f4a'/>
<id>57bb67ae280cff8ac6e946cd3f3797574a574f4a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(api): add `project.transfer()` and deprecate `transfer_project()`</title>
<updated>2022-01-14T00:04:55+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-01-13T23:05:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=259668ad8cb54348e4a41143a45f899a222d2d35'/>
<id>259668ad8cb54348e4a41143a45f899a222d2d35</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 #1819 from python-gitlab/jlvillal/encoded_id</title>
<updated>2022-01-13T19:48:24+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-01-13T19:48:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=bc488401143d486b6d7604b64689a61721b98ac3'/>
<id>bc488401143d486b6d7604b64689a61721b98ac3</id>
<content type='text'>
fix: use url-encoded ID in all paths</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix: use url-encoded ID in all paths</pre>
</div>
</content>
</entry>
</feed>
