<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/gitlab/v4, branch feat/appearance</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>feat: add appearance API</title>
<updated>2020-01-22T20:19:21+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2020-01-21T17:46:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=4c4ac5ca1e5cabc4ea4b12734a7b091bc4c224b5'/>
<id>4c4ac5ca1e5cabc4ea4b12734a7b091bc4c224b5</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 #980 from python-gitlab/refactor/cleanup-upgrade</title>
<updated>2019-12-18T14:36:42+00:00</updated>
<author>
<name>Roger Meier</name>
<email>r.meier@siemens.com</email>
</author>
<published>2019-12-18T14:36:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=5fa0e162f561451f7fa487dc4a4ff265c1d37f79'/>
<id>5fa0e162f561451f7fa487dc4a4ff265c1d37f79</id>
<content type='text'>
Refactor/cleanup upgrade</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Refactor/cleanup upgrade</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: remove six dependency</title>
<updated>2019-12-18T12:50:19+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2019-12-18T12:14:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=9fb46454c6dab1a86ab4492df2368ed74badf7d6'/>
<id>9fb46454c6dab1a86ab4492df2368ed74badf7d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(projects): adjust snippets to match the API</title>
<updated>2019-12-18T11:57:02+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig@siemens.com</email>
</author>
<published>2019-12-18T11:13:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=e104e213b16ca702f33962d770784f045f36cf10'/>
<id>e104e213b16ca702f33962d770784f045f36cf10</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: allow cfg timeout to be overrided via kwargs</title>
<updated>2019-12-16T18:45:38+00:00</updated>
<author>
<name>Andrew Tergis</name>
<email>andrew.tergis@littlebits.com</email>
</author>
<published>2019-12-10T17:23:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=e9a8289a381ebde7c57aa2364258d84b4771d276'/>
<id>e9a8289a381ebde7c57aa2364258d84b4771d276</id>
<content type='text'>
On startup, the `timeout` parameter is loaded from config and stored on
the base gitlab object instance. This instance parameter is used as the
timeout for all API requests (it's passed into the `session` object when
making HTTP calls).

This change allows any API method to specify a `timeout` argument to
`**kwargs` that will override the global timeout value. This was
somewhat needed / helpful for the `import_github` method.

I have also updated the docs accordingly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On startup, the `timeout` parameter is loaded from config and stored on
the base gitlab object instance. This instance parameter is used as the
timeout for all API requests (it's passed into the `session` object when
making HTTP calls).

This change allows any API method to specify a `timeout` argument to
`**kwargs` that will override the global timeout value. This was
somewhat needed / helpful for the `import_github` method.

I have also updated the docs accordingly.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: add support for /import/github</title>
<updated>2019-12-16T18:41:59+00:00</updated>
<author>
<name>Andrew Tergis</name>
<email>andrew.tergis@littlebits.com</email>
</author>
<published>2019-12-03T21:14:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=aa4d41b70b2a66c3de5a7dd19b0f7c151f906630'/>
<id>aa4d41b70b2a66c3de5a7dd19b0f7c151f906630</id>
<content type='text'>
Addresses python-gitlab/python-gitlab#952

This adds a method to the `ProjectManager` called `import_github`, which
maps to the `/import/github` API endpoint. Calling `import_github` will
trigger an import operation from &lt;repo_id&gt; into &lt;target_namespace&gt;,
using &lt;personal_access_token&gt; to authenticate against github. In
practice a gitlab server may take many 10's of seconds to respond to
this API call, so we also take the liberty of increasing the default
timeout (only for this method invocation).

Unfortunately since `import` is a protected keyword in python, I was unable
to follow the endpoint structure with the manager namespace. I'm open to
suggestions on a more sensible interface.

I'm successfully using this addition to batch-import hundreds of github
repositories into gitlab.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Addresses python-gitlab/python-gitlab#952

This adds a method to the `ProjectManager` called `import_github`, which
maps to the `/import/github` API endpoint. Calling `import_github` will
trigger an import operation from &lt;repo_id&gt; into &lt;target_namespace&gt;,
using &lt;personal_access_token&gt; to authenticate against github. In
practice a gitlab server may take many 10's of seconds to respond to
this API call, so we also take the liberty of increasing the default
timeout (only for this method invocation).

Unfortunately since `import` is a protected keyword in python, I was unable
to follow the endpoint structure with the manager namespace. I'm open to
suggestions on a more sensible interface.

I'm successfully using this addition to batch-import hundreds of github
repositories into gitlab.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #971 from jooola/ci_vars_type</title>
<updated>2019-12-16T09:36:47+00:00</updated>
<author>
<name>Max Wittig</name>
<email>max.wittig95@gmail.com</email>
</author>
<published>2019-12-16T09:36:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=938fc0ae1eff7625d18cdf11fc019d83da02ba0c'/>
<id>938fc0ae1eff7625d18cdf11fc019d83da02ba0c</id>
<content type='text'>
feat: add more options for project/group ci variables manipulation</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
feat: add more options for project/group ci variables manipulation</pre>
</div>
</content>
</entry>
<entry>
<title>feat: access project's issues statistics</title>
<updated>2019-12-13T04:43:44+00:00</updated>
<author>
<name>Mitar</name>
<email>mitar.git@tnode.com</email>
</author>
<published>2019-12-10T07:51:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=482e57ba716c21cd7b315e5803ecb3953c479b33'/>
<id>482e57ba716c21cd7b315e5803ecb3953c479b33</id>
<content type='text'>
Fixes #966
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #966
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: adding project stats</title>
<updated>2019-12-13T04:43:31+00:00</updated>
<author>
<name>Mitar</name>
<email>mitar.git@tnode.com</email>
</author>
<published>2019-12-10T07:40:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=db0b00a905c14d52eaca831fcc9243f33d2f092d'/>
<id>db0b00a905c14d52eaca831fcc9243f33d2f092d</id>
<content type='text'>
Fixes #967
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #967
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: add variable_type/protected to projects ci variables</title>
<updated>2019-12-12T16:26:24+00:00</updated>
<author>
<name>jo</name>
<email>ljonas@riseup.net</email>
</author>
<published>2019-12-12T16:26:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=4724c50e9ec0310432c70f07079b1e03ab3cc666'/>
<id>4724c50e9ec0310432c70f07079b1e03ab3cc666</id>
<content type='text'>
This adds the ci variables types and protected flag for create/update 
requests.

See 
https://docs.gitlab.com/ee/api/project_level_variables.html#create-variable
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the ci variables types and protected flag for create/update 
requests.

See 
https://docs.gitlab.com/ee/api/project_level_variables.html#create-variable
</pre>
</div>
</content>
</entry>
</feed>
