<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib, branch server-flash-click-remove</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Merge branch 'fix/rugged-alternate-paths' into 'master'</title>
<updated>2017-10-12T15:37:14+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-10-12T15:37:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=05f46b820ee607715a9c23beabd98553d64556e0'/>
<id>05f46b820ee607715a9c23beabd98553d64556e0</id>
<content type='text'>
Fix the format of rugged alternate directory list

Closes #39046

See merge request gitlab-org/gitlab-ce!14840</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the format of rugged alternate directory list

Closes #39046

See merge request gitlab-org/gitlab-ce!14840</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'gitaly-fetch-remote' into 'master'</title>
<updated>2017-10-12T14:53:32+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2017-10-12T14:53:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=400557f0baa789aef52462f954c6f0be77fc99fc'/>
<id>400557f0baa789aef52462f954c6f0be77fc99fc</id>
<content type='text'>
Add `Gitlab::Git::Repository#fetch` command

Closes gitaly#586

See merge request gitlab-org/gitlab-ce!14772</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `Gitlab::Git::Repository#fetch` command

Closes gitaly#586

See merge request gitlab-org/gitlab-ce!14772</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'cache-issuable-template-names' into 'master'</title>
<updated>2017-10-12T13:48:31+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-10-12T13:48:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d964eb11a3090c2c3420b44f28da2d24cd652718'/>
<id>d964eb11a3090c2c3420b44f28da2d24cd652718</id>
<content type='text'>
Cache issuable template names

See merge request gitlab-org/gitlab-ce!14823</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cache issuable template names

See merge request gitlab-org/gitlab-ce!14823</pre>
</div>
</content>
</entry>
<entry>
<title>Cache issuable template names</title>
<updated>2017-10-12T12:26:03+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2017-10-11T15:48:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b7303b65b1a761c7ad7ed9eed993ad55fcecb953'/>
<id>b7303b65b1a761c7ad7ed9eed993ad55fcecb953</id>
<content type='text'>
We were looking these up on each request to an issue page, because the form is
pre-filled, as is the template dropdown. That was unnecessary: we could just
treat these as 'special' repository files (like the rendered README) and cache
them in Redis until they change on a push.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We were looking these up on each request to an issue page, because the form is
pre-filled, as is the template dropdown. That was unnecessary: we could just
treat these as 'special' repository files (like the rendered README) and cache
them in Redis until they change on a push.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the format of rugged alternate directory list</title>
<updated>2017-10-12T12:20:04+00:00</updated>
<author>
<name>Ahmad Sherif</name>
<email>me@ahmadsherif.com</email>
</author>
<published>2017-10-12T11:32:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a24abf39bf78226baaad03fe45caf416dbfc9b74'/>
<id>a24abf39bf78226baaad03fe45caf416dbfc9b74</id>
<content type='text'>
Fixes #39046
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #39046
</pre>
</div>
</content>
</entry>
<entry>
<title>Match full file path in FileDetector</title>
<updated>2017-10-12T10:13:37+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2017-10-11T15:47:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=218e1f0963768fced0ed9a33762253c273c72069'/>
<id>218e1f0963768fced0ed9a33762253c273c72069</id>
<content type='text'>
The basename appears to have been a holdover from the past - it doesn't look
necessary now. Some of the regexes were unanchored on one side, so explicitly
ensure that they only match the root.

Apart from that, this means that pushing to foo/README.md will no longer
invalidate the main README cache for a project.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The basename appears to have been a holdover from the past - it doesn't look
necessary now. Some of the regexes were unanchored on one side, so explicitly
ensure that they only match the root.

Apart from that, this means that pushing to foo/README.md will no longer
invalidate the main README cache for a project.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move all API authentication code to APIGuard</title>
<updated>2017-10-12T09:13:37+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@selenight.nl</email>
</author>
<published>2017-09-27T13:56:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=025c6eeaa1e02dce31cb836c39ee4a5f312f202f'/>
<id>025c6eeaa1e02dce31cb836c39ee4a5f312f202f</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 '39028-repo-by-url-fields' into 'master'</title>
<updated>2017-10-12T08:05:49+00:00</updated>
<author>
<name>Tim Zallmann</name>
<email>tzallmann@gitlab.com</email>
</author>
<published>2017-10-12T08:05:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ad5b96952e9eb90dc72d640f01aca01b5d0a2a12'/>
<id>ad5b96952e9eb90dc72d640f01aca01b5d0a2a12</id>
<content type='text'>
Add project fields to import project by url

Closes #39028

See merge request gitlab-org/gitlab-ce!14822</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add project fields to import project by url

Closes #39028

See merge request gitlab-org/gitlab-ce!14822</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix/pass-git-object-dir-attrs-as-relative' into 'master'</title>
<updated>2017-10-11T15:55:49+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-10-11T15:55:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a6d09bc6524a0bfefda04bdb7006818986f01de7'/>
<id>a6d09bc6524a0bfefda04bdb7006818986f01de7</id>
<content type='text'>
Pass git object dir attributes as relative paths to Gitaly

Closes gitaly#629

See merge request gitlab-org/gitlab-ce!14713</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pass git object dir attributes as relative paths to Gitaly

Closes gitaly#629

See merge request gitlab-org/gitlab-ce!14713</pre>
</div>
</content>
</entry>
<entry>
<title>Update template description wording</title>
<updated>2017-10-11T15:47:31+00:00</updated>
<author>
<name>Annabel Dunstone Gray</name>
<email>annabel.dunstone@gmail.com</email>
</author>
<published>2017-10-11T15:47:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=457b135eb2d191183a021ce2c6ac8f05f2e53e48'/>
<id>457b135eb2d191183a021ce2c6ac8f05f2e53e48</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
