<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/models, branch test-old-codeclimate</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>Add issue sidebar and toggle_subscription endpoint in board issues data</title>
<updated>2017-11-20T14:38:53+00:00</updated>
<author>
<name>Oswaldo Ferreira</name>
<email>oswaldo@gitlab.com</email>
</author>
<published>2017-11-13T23:36:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d2699aea57eaef6adee25bb453a6096b80dda28f'/>
<id>d2699aea57eaef6adee25bb453a6096b80dda28f</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 '38393-Milestone-duration-error-message-is-not-accurate-enough' into 'master'</title>
<updated>2017-11-20T11:34:07+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-11-20T11:34:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=419cffdb136d26f650169ef6086916883bee4a09'/>
<id>419cffdb136d26f650169ef6086916883bee4a09</id>
<content type='text'>
Changed validation error message on wrong milestone dates

Closes #38393

See merge request gitlab-org/gitlab-ce!15471</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changed validation error message on wrong milestone dates

Closes #38393

See merge request gitlab-org/gitlab-ce!15471</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix-conflict-highlighting' into 'master'</title>
<updated>2017-11-20T10:17:43+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-11-20T10:17:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=202ab62874bb3d828ab48017550660d461e8cf6b'/>
<id>202ab62874bb3d828ab48017550660d461e8cf6b</id>
<content type='text'>
Fix conflict highlighting

See merge request gitlab-org/gitlab-ce!15463</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix conflict highlighting

See merge request gitlab-org/gitlab-ce!15463</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '18040-rubocop-line-break-after-guard-clause' into 'master'</title>
<updated>2017-11-20T09:22:14+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-11-20T09:22:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4f09d099e9fa29659917f87c2dc25f2b9aa05b5e'/>
<id>4f09d099e9fa29659917f87c2dc25f2b9aa05b5e</id>
<content type='text'>
Adds Rubocop rule for line break after guard clause

Closes #18040

See merge request gitlab-org/gitlab-ce!15188</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds Rubocop rule for line break after guard clause

Closes #18040

See merge request gitlab-org/gitlab-ce!15188</pre>
</div>
</content>
</entry>
<entry>
<title>Changed validation error message on wrong milestone dates</title>
<updated>2017-11-18T18:30:32+00:00</updated>
<author>
<name>Xurxo Méndez Pérez</name>
<email>sonxurxo@smartgalapps.com</email>
</author>
<published>2017-11-18T18:22:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b3a5abe4aedd1d4f4a22e01f1f5a5b6e146d6eec'/>
<id>b3a5abe4aedd1d4f4a22e01f1f5a5b6e146d6eec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix conflict highlighting</title>
<updated>2017-11-17T17:57:48+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2017-11-17T17:57:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=64a9e53bd16092e869f88e42a3e69f3f4ba0a23e'/>
<id>64a9e53bd16092e869f88e42a3e69f3f4ba0a23e</id>
<content type='text'>
Conflicts used to take a `Repository` and pass that to
`Gitlab::Highlight.highlight`, which would call `#gitattribute` on the
repository. Now they use a `Gitlab::Git::Repository`, which didn't have that
method defined - but defining it on `Gitlab::Git::Repository` does make it
available on `Repository` through `method_missing`, so we can do that and both
cases will work.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts used to take a `Repository` and pass that to
`Gitlab::Highlight.highlight`, which would call `#gitattribute` on the
repository. Now they use a `Gitlab::Git::Repository`, which didn't have that
method defined - but defining it on `Gitlab::Git::Repository` does make it
available on `Repository` through `method_missing`, so we can do that and both
cases will work.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'mk-add-user-rate-limits' into 'master'</title>
<updated>2017-11-17T16:11:22+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-11-17T16:11:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=371180a47d292957b73c6c9e1e662b6c99a62ee9'/>
<id>371180a47d292957b73c6c9e1e662b6c99a62ee9</id>
<content type='text'>
Add request rate limits

Closes #30053

See merge request gitlab-org/gitlab-ce!14708</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add request rate limits

Closes #30053

See merge request gitlab-org/gitlab-ce!14708</pre>
</div>
</content>
</entry>
<entry>
<title>Changing OAuth lookup to be case insensitive</title>
<updated>2017-11-17T14:24:25+00:00</updated>
<author>
<name>Francisco Javier López</name>
<email>fjlopez@gitlab.com</email>
</author>
<published>2017-11-17T14:24:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c7cf68bd6ff744e044944acad586e06badc481d4'/>
<id>c7cf68bd6ff744e044944acad586e06badc481d4</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 'bvl-delete-empty-fork-networks' into 'master'</title>
<updated>2017-11-17T14:21:36+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-11-17T14:21:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5c0ba938aa55009d891da25abc66b0fb3bd7d43b'/>
<id>5c0ba938aa55009d891da25abc66b0fb3bd7d43b</id>
<content type='text'>
Delete empty fork networks

See merge request gitlab-org/gitlab-ce!15373</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Delete empty fork networks

See merge request gitlab-org/gitlab-ce!15373</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'ci-pipeline-status-query' into 'master'</title>
<updated>2017-11-17T12:56:12+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2017-11-17T12:56:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6d36c3b5de7772415b1176b8247c34053b826a74'/>
<id>6d36c3b5de7772415b1176b8247c34053b826a74</id>
<content type='text'>
Optimise getting the pipeline status of commits

See merge request gitlab-org/gitlab-ce!15332</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Optimise getting the pipeline status of commits

See merge request gitlab-org/gitlab-ce!15332</pre>
</div>
</content>
</entry>
</feed>
