<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitlab.git/gitlab, branch 0.11.1</title>
<subtitle>github.com: gpocentek/python-gitlab.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/'/>
<entry>
<title>0.11.1 release update</title>
<updated>2016-01-17T16:15:46+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-17T16:15:46+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=5c4f77fc39ff8437dee86dd8a3c067f864d950ca'/>
<id>5c4f77fc39ff8437dee86dd8a3c067f864d950ca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add unit tests for managers</title>
<updated>2016-01-16T20:28:59+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-16T20:28:59+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=6baea2f46e1e1ea1cb222b3ae414bffc4998d4e2'/>
<id>6baea2f46e1e1ea1cb222b3ae414bffc4998d4e2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove debugging print instruction</title>
<updated>2016-01-16T19:16:09+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-16T19:16:09+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=7e54a392d02bdeecfaf384c0b9aa742c6199284f'/>
<id>7e54a392d02bdeecfaf384c0b9aa742c6199284f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix discovery of parents object attrs for managers</title>
<updated>2016-01-16T18:34:37+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-16T18:34:37+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=0e0c81d229f03397d4f342fe96fef2f1405b6124'/>
<id>0e0c81d229f03397d4f342fe96fef2f1405b6124</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support setting commit status</title>
<updated>2016-01-12T19:07:17+00:00</updated>
<author>
<name>Colin D Bennett</name>
<email>colin.bennett@harman.com</email>
</author>
<published>2015-12-30T20:34:24+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=33710088913c96db8eb22289e693682b41054e39'/>
<id>33710088913c96db8eb22289e693682b41054e39</id>
<content type='text'>
Support commit status updates.  Commit status can be set by a POST to
the appropriate commit URL.  The status can be updated by a subsequent
POST to the same URL with the same `name` and `ref`, but different
values for `state`, `description`, etc.

Note: Listing the commit statuses is not yet supported.  This is done
through a different path on the server, under the `repository` path.

Example of use from the CLI:

    # add a build status to a commit
    gitlab project-commit-status create --project-id 2 \
        --commit-id a43290c --state success --name ci/jenkins \
        --target-url http://server/build/123 \
        --description "Jenkins build succeeded"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Support commit status updates.  Commit status can be set by a POST to
the appropriate commit URL.  The status can be updated by a subsequent
POST to the same URL with the same `name` and `ref`, but different
values for `state`, `description`, etc.

Note: Listing the commit statuses is not yet supported.  This is done
through a different path on the server, under the `repository` path.

Example of use from the CLI:

    # add a build status to a commit
    gitlab project-commit-status create --project-id 2 \
        --commit-id a43290c --state success --name ci/jenkins \
        --target-url http://server/build/123 \
        --description "Jenkins build succeeded"
</pre>
</div>
</content>
</entry>
<entry>
<title>Support deletion without getting the object first</title>
<updated>2016-01-10T17:21:46+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-10T17:21:46+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=1d7ebea727c2fa68135ef4290dfe51604d843688'/>
<id>1d7ebea727c2fa68135ef4290dfe51604d843688</id>
<content type='text'>
Use this feature in the CLI to avoid an extra API call to the server.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use this feature in the CLI to avoid an extra API call to the server.
</pre>
</div>
</content>
</entry>
<entry>
<title>cli.py: make internal functions private</title>
<updated>2016-01-10T16:40:08+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-10T16:40:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=e5821e6a39344d545ac230ac6d868a8f0aaeb46b'/>
<id>e5821e6a39344d545ac230ac6d868a8f0aaeb46b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rework gitlab._sanitize</title>
<updated>2016-01-10T16:21:28+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-10T16:21:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=03d804153f20932226fd3b8a6a5daab5727e878a'/>
<id>03d804153f20932226fd3b8a6a5daab5727e878a</id>
<content type='text'>
Make it a recursive function and eliminate _sanitize_dict.

Add unit tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make it a recursive function and eliminate _sanitize_dict.

Add unit tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve the API documentation.</title>
<updated>2016-01-10T15:58:16+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-09T18:22:54+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=4781fd7e4c3d9d5b343f0c1b0597a8a535d6bdbf'/>
<id>4781fd7e4c3d9d5b343f0c1b0597a8a535d6bdbf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version</title>
<updated>2016-01-09T14:27:50+00:00</updated>
<author>
<name>Gauvain Pocentek</name>
<email>gauvain.pocentek@objectif-libre.com</email>
</author>
<published>2016-01-09T14:27:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitlab.git/commit/?id=ca44878787a3e907ea35fd4adbb0a5c3020b44ed'/>
<id>ca44878787a3e907ea35fd4adbb0a5c3020b44ed</id>
<content type='text'>
And update copyright years.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And update copyright years.
</pre>
</div>
</content>
</entry>
</feed>
