<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/docker-py.git/docker/auth, branch https_docs_link</title>
<subtitle>github.com: dotcloud/docker-py.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/'/>
<entry>
<title>Treat 'index.docker.io' repo names as 'docker.io'</title>
<updated>2015-12-10T12:42:54+00:00</updated>
<author>
<name>Aanand Prasad</name>
<email>aanand.prasad@gmail.com</email>
</author>
<published>2015-12-10T12:37:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=25b188440aecdb5482e815708d824c753d210edb'/>
<id>25b188440aecdb5482e815708d824c753d210edb</id>
<content type='text'>
Signed-off-by: Aanand Prasad &lt;aanand.prasad@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Aanand Prasad &lt;aanand.prasad@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor resolve_authconfig tests</title>
<updated>2015-12-10T12:42:54+00:00</updated>
<author>
<name>Aanand Prasad</name>
<email>aanand.prasad@gmail.com</email>
</author>
<published>2015-12-10T12:36:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=9b890c4540dd82cff67ac69568df9bbcc155d07e'/>
<id>9b890c4540dd82cff67ac69568df9bbcc155d07e</id>
<content type='text'>
The structure of the fake config dictionary was not reflective of what
actual parsed config looks like.

Signed-off-by: Aanand Prasad &lt;aanand.prasad@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The structure of the fake config dictionary was not reflective of what
actual parsed config looks like.

Signed-off-by: Aanand Prasad &lt;aanand.prasad@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Update auth.resolve_repository_name</title>
<updated>2015-11-24T02:43:02+00:00</updated>
<author>
<name>Joffrey F</name>
<email>joffrey@docker.com</email>
</author>
<published>2015-11-24T02:28:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=6d0e2d69d52733bbc02bf63cccce11fd9961c32d'/>
<id>6d0e2d69d52733bbc02bf63cccce11fd9961c32d</id>
<content type='text'>
More relaxed version that matches the constraints imposed by the
current version of the docker daemon.
Few unit tests to verify the new cases.
Client.pull was trying to set the tag value when it wasn't supposed
to, fixed now.
utils.parse_repository_tag is simpler and supports @sha... notation

Signed-off-by: Joffrey F &lt;joffrey@docker.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
More relaxed version that matches the constraints imposed by the
current version of the docker daemon.
Few unit tests to verify the new cases.
Client.pull was trying to set the tag value when it wasn't supposed
to, fixed now.
utils.parse_repository_tag is simpler and supports @sha... notation

Signed-off-by: Joffrey F &lt;joffrey@docker.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #627</title>
<updated>2015-10-29T15:12:30+00:00</updated>
<author>
<name>Alejandro Brito Monedero</name>
<email>abrito@alea-soluciones.com</email>
</author>
<published>2015-10-29T15:12:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=a695f0ca5ab2b802f084461a957debc8f233cf94'/>
<id>a695f0ca5ab2b802f084461a957debc8f233cf94</id>
<content type='text'>
Docker-py couldn't pull private images if the account have non ascii chars
in either user or password. It that case an exception ending with no auth
credentials.
Instead docker client (golang) don't suffer this issue.

Also add a test to check the login or password even with non ascii char have
a valid auth dictionary

Signed-off-by: Alejandro Brito Monedero &lt;abrito@alea-soluciones.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Docker-py couldn't pull private images if the account have non ascii chars
in either user or password. It that case an exception ending with no auth
credentials.
Instead docker client (golang) don't suffer this issue.

Also add a test to check the login or password even with non ascii char have
a valid auth dictionary

Signed-off-by: Alejandro Brito Monedero &lt;abrito@alea-soluciones.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix auth.load_config bug calling parse_auth</title>
<updated>2015-10-27T08:03:28+00:00</updated>
<author>
<name>Alejandro Brito Monedero</name>
<email>abrito@alea-soluciones.com</email>
</author>
<published>2015-10-27T08:03:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=22da6ace7a755885489aafbe2003cbb2f0c253cd'/>
<id>22da6ace7a755885489aafbe2003cbb2f0c253cd</id>
<content type='text'>
When load_config found and auths section it didn't call parse_auth only with
the auths section. Instead it called parse_auth with all the configuration.

There is also a test to check this case

Signed-off-by: Alejandro Brito Monedero &lt;alejandro.monedero@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When load_config found and auths section it didn't call parse_auth only with
the auths section. Instead it called parse_auth with all the configuration.

There is also a test to check this case

Signed-off-by: Alejandro Brito Monedero &lt;alejandro.monedero@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #802 from docker/785-docker_config_env</title>
<updated>2015-10-14T01:18:36+00:00</updated>
<author>
<name>Joffrey F</name>
<email>f.joffrey@gmail.com</email>
</author>
<published>2015-10-14T01:18:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=baaa3e3b1a05aa363497e088ae0afecec50dc488'/>
<id>baaa3e3b1a05aa363497e088ae0afecec50dc488</id>
<content type='text'>
Use DOCKER_CONFIG environment variable to look up auth config</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use DOCKER_CONFIG environment variable to look up auth config</pre>
</div>
</content>
</entry>
<entry>
<title>Use DOCKER_CONFIG environment variable to look up auth config</title>
<updated>2015-10-10T00:15:19+00:00</updated>
<author>
<name>Joffrey F</name>
<email>joffrey@docker.com</email>
</author>
<published>2015-10-09T00:17:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=23cf76838a9ba90fee6f5ef3b446908b5763ccb8'/>
<id>23cf76838a9ba90fee6f5ef3b446908b5763ccb8</id>
<content type='text'>
When provided, default paths are ignored.

Signed-off-by: Joffrey F &lt;joffrey@docker.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When provided, default paths are ignored.

Signed-off-by: Joffrey F &lt;joffrey@docker.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Use url-safe base64 when encoding auth header</title>
<updated>2015-10-09T19:23:58+00:00</updated>
<author>
<name>Joffrey F</name>
<email>joffrey@docker.com</email>
</author>
<published>2015-10-09T19:01:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=3c4e5db113d8f460039a52a79b8e191a0dc1469e'/>
<id>3c4e5db113d8f460039a52a79b8e191a0dc1469e</id>
<content type='text'>
+ regression test

Signed-off-by: Joffrey F &lt;joffrey@docker.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
+ regression test

Signed-off-by: Joffrey F &lt;joffrey@docker.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add logging for auth loading/resolution</title>
<updated>2015-08-20T15:57:40+00:00</updated>
<author>
<name>Aanand Prasad</name>
<email>aanand.prasad@gmail.com</email>
</author>
<published>2015-08-20T12:02:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=b5368ad8b9ff18ad8eae51050b55e8817940ff09'/>
<id>b5368ad8b9ff18ad8eae51050b55e8817940ff09</id>
<content type='text'>
Signed-off-by: Aanand Prasad &lt;aanand.prasad@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Aanand Prasad &lt;aanand.prasad@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix-build-auth' of https://github.com/moutten/docker-py into moutten-fix-build-auth</title>
<updated>2015-07-20T20:56:29+00:00</updated>
<author>
<name>Joffrey F</name>
<email>joffrey@docker.com</email>
</author>
<published>2015-07-20T20:56:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=7430eb8e659fe2fe605a00cc3ff72ad053393138'/>
<id>7430eb8e659fe2fe605a00cc3ff72ad053393138</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
