<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/controllers/projects/issues_controller.rb, branch chatops-deploy-command</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 "x of y tasks completed" on issuable</title>
<updated>2016-10-28T16:01:36+00:00</updated>
<author>
<name>Guilherme Salazar</name>
<email>gmesalazar@gmail.com</email>
</author>
<published>2016-09-26T21:36:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=32913b74b836c7b689e681a030de00da0552954a'/>
<id>32913b74b836c7b689e681a030de00da0552954a</id>
<content type='text'>
fix issues pointed out in !6527

add task completion status feature to CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix issues pointed out in !6527

add task completion status feature to CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Use present? instead of presence on Projects::IssuesController#index</title>
<updated>2016-10-19T16:58:26+00:00</updated>
<author>
<name>Douglas Barbosa Alexandre</name>
<email>dbalexandre@gmail.com</email>
</author>
<published>2016-10-13T20:14:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6792644ae77476af88343d4a5b9e370326d331ea'/>
<id>6792644ae77476af88343d4a5b9e370326d331ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove project_labels from Projects::ApplicationController</title>
<updated>2016-10-19T16:58:24+00:00</updated>
<author>
<name>Douglas Barbosa Alexandre</name>
<email>dbalexandre@gmail.com</email>
</author>
<published>2016-09-20T14:03:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=baf47a0bd0e0563cbc99b3ae4b1336b8b3b4380a'/>
<id>baf47a0bd0e0563cbc99b3ae4b1336b8b3b4380a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>List group labels on project labels page</title>
<updated>2016-10-19T16:58:24+00:00</updated>
<author>
<name>Douglas Barbosa Alexandre</name>
<email>dbalexandre@gmail.com</email>
</author>
<published>2016-09-20T03:09:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bdb7bf4b5188ffd68e54cbf671ba9ce1a4ffb1d1'/>
<id>bdb7bf4b5188ffd68e54cbf671ba9ce1a4ffb1d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow user to create a board list based on a group label</title>
<updated>2016-10-19T16:58:24+00:00</updated>
<author>
<name>Douglas Barbosa Alexandre</name>
<email>dbalexandre@gmail.com</email>
</author>
<published>2016-09-19T20:34:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bf9d928b45516e716b0f7f099361ca03aa1454f8'/>
<id>bf9d928b45516e716b0f7f099361ca03aa1454f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow users to apply group labels on Issues/MRs</title>
<updated>2016-10-19T16:58:24+00:00</updated>
<author>
<name>Douglas Barbosa Alexandre</name>
<email>dbalexandre@gmail.com</email>
</author>
<published>2016-09-19T20:21:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=398ab263fd08a5d9d7b19c5b3d06f33814a474eb'/>
<id>398ab263fd08a5d9d7b19c5b3d06f33814a474eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve issue load time performance by avoiding ORDER BY in find_by call</title>
<updated>2016-10-06T19:13:03+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2016-10-06T19:09:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=aada01030cd23719a54a4e499b72c12f95ce0d24'/>
<id>aada01030cd23719a54a4e499b72c12f95ce0d24</id>
<content type='text'>
The Sortable concern has a default scope that adds ORDER BY to all
queries. EXPLAIN ANALYZE shows that this additional ORDER BY statement
causes the SQL optimizer to use the wrong index, which leads to a load
time of 2.9 s vs 0.073 ms just for the SELECT call. The minimal
change here is to re-implement find_by using where and reorder to
remove the ORDER BY clause in IssuesController#index.

Closes #23075
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Sortable concern has a default scope that adds ORDER BY to all
queries. EXPLAIN ANALYZE shows that this additional ORDER BY statement
causes the SQL optimizer to use the wrong index, which leads to a load
time of 2.9 s vs 0.073 ms just for the SELECT call. The minimal
change here is to re-implement find_by using where and reorder to
remove the ORDER BY clause in IssuesController#index.

Closes #23075
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix IssuesController#show degradation including project on loaded notes</title>
<updated>2016-09-27T15:37:35+00:00</updated>
<author>
<name>Paco Guzman</name>
<email>pacoguzmanp@gmail.com</email>
</author>
<published>2016-09-27T13:00:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=256dfa13921fbf5607607d70fb805c3997290cc8'/>
<id>256dfa13921fbf5607607d70fb805c3997290cc8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert part of "Merge branch 'update_issues_mr_counter' into 'master'</title>
<updated>2016-09-22T13:43:43+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2016-09-22T13:23:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d4e91b22fcef64cef412eb81086ef1c90ca55f22'/>
<id>d4e91b22fcef64cef412eb81086ef1c90ca55f22</id>
<content type='text'>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix issues mr counter</title>
<updated>2016-09-20T13:39:15+00:00</updated>
<author>
<name>barthc</name>
<email>mackintosh02@gmail.com</email>
</author>
<published>2016-06-27T20:22:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=418e95bd5f623c4cbeac8f5c2fdf2a50e8893339'/>
<id>418e95bd5f623c4cbeac8f5c2fdf2a50e8893339</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
