<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/gitlab, branch jlvillal/remove_replace</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: remove custom URL encoding</title>
<updated>2022-01-08T21:58:04+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-08T21:58:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=8c17afafcc7d9d2a8fecb53b853c2b4f004c4121'/>
<id>8c17afafcc7d9d2a8fecb53b853c2b4f004c4121</id>
<content type='text'>
We were using `str.replace()` calls to take care of URL encoding
issues.

Switch them to use our `utils.clean_str_id` which itself uses
`urllib.parse.quote()`

Closes: #1356
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We were using `str.replace()` calls to take care of URL encoding
issues.

Switch them to use our `utils.clean_str_id` which itself uses
`urllib.parse.quote()`

Closes: #1356
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1809 from python-gitlab/jlvillal/list_api</title>
<updated>2022-01-08T20:29:30+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2022-01-08T20:29:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=d45b59e800a14460a1ecdad2d750e42aa99bb96e'/>
<id>d45b59e800a14460a1ecdad2d750e42aa99bb96e</id>
<content type='text'>
fix: change to `http_list` for some ProjectCommit methods</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix: change to `http_list` for some ProjectCommit methods</pre>
</div>
</content>
</entry>
<entry>
<title>fix: change to `http_list` for some ProjectCommit methods</title>
<updated>2022-01-08T20:20:16+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-08T20:20:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=497e860d834d0757d1c6532e107416c6863f52f2'/>
<id>497e860d834d0757d1c6532e107416c6863f52f2</id>
<content type='text'>
Fix the type-hints and use `http_list()` for the ProjectCommits methods:
   - diff()
   - merge_requests()
   - refs()

This will enable using the pagination support we have for lists.

Closes: #1805
Closes: #1231
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the type-hints and use `http_list()` for the ProjectCommits methods:
   - diff()
   - merge_requests()
   - refs()

This will enable using the pagination support we have for lists.

Closes: #1805
Closes: #1231
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: fix missing comma</title>
<updated>2022-01-08T04:03:43+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2022-01-08T04:03:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=7c59fac12fe69a1080cc227512e620ac5ae40b13'/>
<id>7c59fac12fe69a1080cc227512e620ac5ae40b13</id>
<content type='text'>
There was a missing comma which meant the strings were concatenated
instead of being two separate strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There was a missing comma which meant the strings were concatenated
instead of being two separate strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: release v3.0.0</title>
<updated>2022-01-05T08:28:28+00:00</updated>
<author>
<name>github-actions</name>
<email>action@github.com</email>
</author>
<published>2022-01-05T08:28:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=9894b3580a7eb5c2e377c482820ff3210f913abe'/>
<id>9894b3580a7eb5c2e377c482820ff3210f913abe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(cli): allow options from args and environment variables</title>
<updated>2022-01-02T22:35:39+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>hab.nejc@gmail.com</email>
</author>
<published>2021-02-11T23:47:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=ca58008607385338aaedd14a58adc347fa1a41a0'/>
<id>ca58008607385338aaedd14a58adc347fa1a41a0</id>
<content type='text'>
BREAKING-CHANGE: The gitlab CLI will now accept CLI arguments
and environment variables for its global options in addition
to configuration file options. This may change behavior for
some workflows such as running inside GitLab CI and with
certain environment variables configured.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAKING-CHANGE: The gitlab CLI will now accept CLI arguments
and environment variables for its global options in addition
to configuration file options. This may change behavior for
some workflows such as running inside GitLab CI and with
certain environment variables configured.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: handle situation where GitLab does not return values</title>
<updated>2021-12-30T20:34:50+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2021-12-30T20:34:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=cb824a49af9b0d155b89fe66a4cfebefe52beb7a'/>
<id>cb824a49af9b0d155b89fe66a4cfebefe52beb7a</id>
<content type='text'>
If a query returns more than 10,000 records than the following values
are NOT returned:
  x.total_pages
  x.total

Modify the code to allow no value to be set for these values. If there
is not a value returned the functions will now return None.

Update unit test so no longer `xfail`

https://docs.gitlab.com/ee/user/gitlab_com/index.html#pagination-response-headers

Closes #1686
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If a query returns more than 10,000 records than the following values
are NOT returned:
  x.total_pages
  x.total

Modify the code to allow no value to be set for these values. If there
is not a value returned the functions will now return None.

Update unit test so no longer `xfail`

https://docs.gitlab.com/ee/user/gitlab_com/index.html#pagination-response-headers

Closes #1686
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: add and document optional parameters for get MR</title>
<updated>2021-12-23T18:38:07+00:00</updated>
<author>
<name>John L. Villalovos</name>
<email>john@sodarock.com</email>
</author>
<published>2021-12-23T18:38:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=bfa3dbe516cfa8824b720ba4c52dd05054a855d7'/>
<id>bfa3dbe516cfa8824b720ba4c52dd05054a855d7</id>
<content type='text'>
Add and document (some of the) optional parameters that can be done
for a `project.merge_requests.get()`

Closes #1775
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add and document (some of the) optional parameters that can be done
for a `project.merge_requests.get()`

Closes #1775
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(api): support file format for repository archive</title>
<updated>2021-12-21T17:04:22+00:00</updated>
<author>
<name>Max Ludwig</name>
<email>mail@danjou.de</email>
</author>
<published>2021-07-31T20:26:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=83dcabf3b04af63318c981317778f74857279909'/>
<id>83dcabf3b04af63318c981317778f74857279909</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 #1766 from python-gitlab/jlvillal/leave_dot</title>
<updated>2021-12-21T13:57:57+00:00</updated>
<author>
<name>Nejc Habjan</name>
<email>nejc.habjan@siemens.com</email>
</author>
<published>2021-12-21T13:57:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=eef8059d63f4c882fca6390ae18e3002e86c90d9'/>
<id>eef8059d63f4c882fca6390ae18e3002e86c90d9</id>
<content type='text'>
fix: stop encoding '.' to '%2E'</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix: stop encoding '.' to '%2E'</pre>
</div>
</content>
</entry>
</feed>
