<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/tests/functional/api, branch refactor/python-build-pep621</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>Merge pull request #2194 from python-gitlab/jlvillal/update-gitlab</title>
<updated>2022-07-29T08:09:25+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-07-29T08:09:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=7a53c6950bb7df90e2a3f4e6d0436cb5d06c3b46'/>
<id>7a53c6950bb7df90e2a3f4e6d0436cb5d06c3b46</id>
<content type='text'>
test(functional): bump GitLab docker image to 15.2.0-ee.0</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
test(functional): bump GitLab docker image to 15.2.0-ee.0</pre>
</div>
</content>
</entry>
<entry>
<title>chore(clusters): deprecate clusters support</title>
<updated>2022-07-29T04:01:43+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-07-29T03:59:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=b46b3791707ac76d501d6b7b829d1370925fd614'/>
<id>b46b3791707ac76d501d6b7b829d1370925fd614</id>
<content type='text'>
Cluster support was deprecated in GitLab 14.5 [1]. And disabled by
default in GitLab 15.0 [2]

  * Update docs to mark clusters as deprecated
  * Remove testing of clusters

[1] https://docs.gitlab.com/ee/api/project_clusters.html
[2] https://gitlab.com/groups/gitlab-org/configure/-/epics/8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cluster support was deprecated in GitLab 14.5 [1]. And disabled by
default in GitLab 15.0 [2]

  * Update docs to mark clusters as deprecated
  * Remove testing of clusters

[1] https://docs.gitlab.com/ee/api/project_clusters.html
[2] https://gitlab.com/groups/gitlab-org/configure/-/epics/8
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(topics): 'title' is required when creating a topic</title>
<updated>2022-07-29T04:01:41+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-07-29T04:01:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=271f6880dbb15b56305efc1fc73924ac26fb97ad'/>
<id>271f6880dbb15b56305efc1fc73924ac26fb97ad</id>
<content type='text'>
In GitLab &gt;= 15.0 `title` is required when creating a topic.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In GitLab &gt;= 15.0 `title` is required when creating a topic.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: add test to show issue fixed</title>
<updated>2022-07-28T05:57:00+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-07-28T05:57:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=75bec7d543dd740c50452b21b0b4509377cd40ce'/>
<id>75bec7d543dd740c50452b21b0b4509377cd40ce</id>
<content type='text'>
https://github.com/python-gitlab/python-gitlab/issues/1698 has been
fixed. Add test to show that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/python-gitlab/python-gitlab/issues/1698 has been
fixed. Add test to show that.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: use the [] after key names for array variables in `params`</title>
<updated>2022-07-27T23:08:25+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-07-27T23:08:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=1af44ce8761e6ee8a9467a3e192f6c4d19e5cefe'/>
<id>1af44ce8761e6ee8a9467a3e192f6c4d19e5cefe</id>
<content type='text'>
1. If a value is of type ArrayAttribute then append '[]' to the name
   of the value for query parameters (`params`).

This is step 3 in a series of steps of our goal to add full
support for the GitLab API data types[1]:
  * array
  * hash
  * array of hashes

Step one was: commit 5127b1594c00c7364e9af15e42d2e2f2d909449b
Step two was: commit a57334f1930752c70ea15847a39324fa94042460

Fixes: #1698

[1] https://docs.gitlab.com/ee/api/#encoding-api-parameters-of-array-and-hash-types
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1. If a value is of type ArrayAttribute then append '[]' to the name
   of the value for query parameters (`params`).

This is step 3 in a series of steps of our goal to add full
support for the GitLab API data types[1]:
  * array
  * hash
  * array of hashes

Step one was: commit 5127b1594c00c7364e9af15e42d2e2f2d909449b
Step two was: commit a57334f1930752c70ea15847a39324fa94042460

Fixes: #1698

[1] https://docs.gitlab.com/ee/api/#encoding-api-parameters-of-array-and-hash-types
</pre>
</div>
</content>
</entry>
<entry>
<title>test(ee): add an EE specific test</title>
<updated>2022-07-26T06:09:50+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-07-26T06:09:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=10987b3089d4fe218dd2116dd871e0a070db3f7f'/>
<id>10987b3089d4fe218dd2116dd871e0a070db3f7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(namespaces): add support for namespace existence API</title>
<updated>2022-07-24T21:17:17+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-07-23T22:31:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=4882cb22f55c41d8495840110be2d338b5545a04'/>
<id>4882cb22f55c41d8495840110be2d338b5545a04</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test(api_func_v4): catch deprecation warning for `gl.lint()`</title>
<updated>2022-07-22T03:30:49+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-07-22T03:30:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=95fe9247fcc9cba65c4afef934f816be06027ff5'/>
<id>95fe9247fcc9cba65c4afef934f816be06027ff5</id>
<content type='text'>
Catch the deprecation warning for the call to `gl.lint()`, so it won't
show up in the log.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Catch the deprecation warning for the call to `gl.lint()`, so it won't
show up in the log.
</pre>
</div>
</content>
</entry>
<entry>
<title>test(functional): use both get_all and all in list() tests</title>
<updated>2022-07-21T22:03:11+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-07-21T21:28:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitlab.git/commit/?id=201298d7b5795b7d7338793da8033dc6c71d6572'/>
<id>201298d7b5795b7d7338793da8033dc6c71d6572</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://91.123.203.49/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>
</feed>
