<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-shell.git, branch shards</title>
<subtitle>gitlab.com: gitlab-org/gitlab-shell.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/'/>
<entry>
<title>Refactor repository paths handling to allow multiple git mount points</title>
<updated>2016-06-29T17:58:20+00:00</updated>
<author>
<name>Alejandro Rodríguez</name>
<email>alejorro70@gmail.com</email>
</author>
<published>2016-06-29T17:58:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=18b4d39ac7172cb02cec63e7bf1cc21807a9b3f0'/>
<id>18b4d39ac7172cb02cec63e7bf1cc21807a9b3f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'custom-hook-output' into 'master'</title>
<updated>2016-06-26T06:41:18+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2016-06-26T06:41:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=5a6d71d143a6ea5f9747b25304aafa902ed381d0'/>
<id>5a6d71d143a6ea5f9747b25304aafa902ed381d0</id>
<content type='text'>

Prevent blocking custom hook output streams

Based on https://gitlab.com/gitlab-org/gitlab-shell/merge_requests/49

Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/1458

See merge request !67</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Prevent blocking custom hook output streams

Based on https://gitlab.com/gitlab-org/gitlab-shell/merge_requests/49

Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/1458

See merge request !67</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify custom hook output handling</title>
<updated>2016-06-24T09:49:38+00:00</updated>
<author>
<name>Jacob Vosmaer</name>
<email>jacob@gitlab.com</email>
</author>
<published>2016-06-24T09:49:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=b6625587061dc37d8527711da008282d96f814fa'/>
<id>b6625587061dc37d8527711da008282d96f814fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'gitlab-redis' into 'master'</title>
<updated>2016-06-23T16:51:42+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2016-06-23T16:51:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=cab0051371fc6c583e0b64806b5a8e5ce0c8239a'/>
<id>cab0051371fc6c583e0b64806b5a8e5ce0c8239a</id>
<content type='text'>

Put Redis loading code in one place

Before this change you could not run the gitlab_net specs in isolation.

See merge request !64</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Put Redis loading code in one place

Before this change you could not run the gitlab_net specs in isolation.

See merge request !64</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'no-argf' into 'master'</title>
<updated>2016-06-23T15:10:01+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2016-06-23T15:10:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=c5f2cffb1b1efe0bb017839308f6da6291d9d40a'/>
<id>c5f2cffb1b1efe0bb017839308f6da6291d9d40a</id>
<content type='text'>

ARGF does more than we want

ARGF is a virtual IO stream that treats the elements of ARGV as paths
to files to be opened. In practice, git-receive-pack will probably
never pass arguments to pre-receive and post-receive because it is not
supposed to (according to 'man 5 githooks'). In case it does, however
our hooks should not have the surprise behavior of treating those
arguments as files to be opened.

See merge request !66</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

ARGF does more than we want

ARGF is a virtual IO stream that treats the elements of ARGV as paths
to files to be opened. In practice, git-receive-pack will probably
never pass arguments to pre-receive and post-receive because it is not
supposed to (according to 'man 5 githooks'). In case it does, however
our hooks should not have the surprise behavior of treating those
arguments as files to be opened.

See merge request !66</pre>
</div>
</content>
</entry>
<entry>
<title>ARGF does more than we want</title>
<updated>2016-06-23T14:59:57+00:00</updated>
<author>
<name>Jacob Vosmaer</name>
<email>jacob@gitlab.com</email>
</author>
<published>2016-06-23T14:59:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=d5860f45ad21848bbbceeb3823fca2b2820d6cde'/>
<id>d5860f45ad21848bbbceeb3823fca2b2820d6cde</id>
<content type='text'>
ARGF is a virtual IO stream that treats the elements of ARGV as paths
to files to be opened. In practice, git-receive-pack will probably
never pass arguments to pre-receive and post-receive because it is not
supposed to (according to 'man 5 githooks'). In case it does, however
our hooks should not have the surprise behavior of treating those
arguments as files to be opened.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ARGF is a virtual IO stream that treats the elements of ARGV as paths
to files to be opened. In practice, git-receive-pack will probably
never pass arguments to pre-receive and post-receive because it is not
supposed to (according to 'man 5 githooks'). In case it does, however
our hooks should not have the surprise behavior of treating those
arguments as files to be opened.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'simplify-access-status' into 'master'</title>
<updated>2016-06-23T09:35:51+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>valery@gitlab.com</email>
</author>
<published>2016-06-23T09:35:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=f2325a45c1ce4e6685f61a6e5d1ef0f351e34a18'/>
<id>f2325a45c1ce4e6685f61a6e5d1ef0f351e34a18</id>
<content type='text'>

Simplify the GitAccessStatus class

Make the optional 'message' argument required. Remove unused 'to_json'
method.

See merge request !65</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Simplify the GitAccessStatus class

Make the optional 'message' argument required. Remove unused 'to_json'
method.

See merge request !65</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify the GitAccessStatus class</title>
<updated>2016-06-23T09:12:56+00:00</updated>
<author>
<name>Jacob Vosmaer</name>
<email>jacob@gitlab.com</email>
</author>
<published>2016-06-23T09:12:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=2467697d81e4ab9e9d770d55d8cb33cb5779db22'/>
<id>2467697d81e4ab9e9d770d55d8cb33cb5779db22</id>
<content type='text'>
Make the optional 'message' argument required. Remove unused 'to_json'
method.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make the optional 'message' argument required. Remove unused 'to_json'
method.
</pre>
</div>
</content>
</entry>
<entry>
<title>Put Redis loading code in one place</title>
<updated>2016-06-23T09:08:00+00:00</updated>
<author>
<name>Jacob Vosmaer</name>
<email>jacob@gitlab.com</email>
</author>
<published>2016-06-23T09:04:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=339b79b07e6262e856332057dc73eca7a293dcc5'/>
<id>339b79b07e6262e856332057dc73eca7a293dcc5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'enqueued_at_for_jobs' into 'master'</title>
<updated>2016-06-23T09:00:01+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2016-06-23T09:00:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-shell.git/commit/?id=f9e59b36016c3d696b4e798c0642874e2f8f76ec'/>
<id>f9e59b36016c3d696b4e798c0642874e2f8f76ec</id>
<content type='text'>

Update PostReceive worker to provide enqueued_at time

See merge request !63</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Update PostReceive worker to provide enqueued_at time

See merge request !63</pre>
</div>
</content>
</entry>
</feed>
