<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/controllers/dashboard, branch patch-23</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 'snippets-finder-visibility' into 'security'</title>
<updated>2017-05-10T09:09:17+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-04-28T22:06:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=050d92f8177513b74d6c18d75d35a62f5fa6addd'/>
<id>050d92f8177513b74d6c18d75d35a62f5fa6addd</id>
<content type='text'>
Refactor snippets finder &amp; dont return internal snippets for external users

See merge request !2094
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Refactor snippets finder &amp; dont return internal snippets for external users

See merge request !2094
</pre>
</div>
</content>
</entry>
<entry>
<title>Colorize labels in issue search field</title>
<updated>2017-05-05T22:47:32+00:00</updated>
<author>
<name>Winnie Hellmann</name>
<email>winnie@gitlab.com</email>
</author>
<published>2017-05-05T22:47:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b51f2a60800829ee7585f10451a41bc4db0359a9'/>
<id>b51f2a60800829ee7585f10451a41bc4db0359a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge branch 'tc-no-todo-service-select' into 'master'"</title>
<updated>2017-04-29T12:29:59+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2017-04-29T12:29:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=303504df4788fead8ab200dd5490658489ba5385'/>
<id>303504df4788fead8ab200dd5490658489ba5385</id>
<content type='text'>
This reverts merge request !10845</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts merge request !10845</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid plucking Todo ids and use sub-queries instead</title>
<updated>2017-04-27T07:57:09+00:00</updated>
<author>
<name>Toon Claes</name>
<email>toon@gitlab.com</email>
</author>
<published>2017-04-21T09:36:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a204d14c672e08a825479511473ba3999ed08434'/>
<id>a204d14c672e08a825479511473ba3999ed08434</id>
<content type='text'>
TodoService should not call `.select(&amp;:id)` on todos, because this is
bad performance. So instead use sub-queries, which will result in a
single SQL query to the database.

https://docs.gitlab.com/ee/development/sql.html#plucking-ids
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
TodoService should not call `.select(&amp;:id)` on todos, because this is
bad performance. So instead use sub-queries, which will result in a
single SQL query to the database.

https://docs.gitlab.com/ee/development/sql.html#plucking-ids
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '28810-projectfinder-should-handle-more-options' into 'master'</title>
<updated>2017-04-06T10:22:04+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-04-06T10:22:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=32db15b24b8c69e39451f4afb951c993f9fbf31e'/>
<id>32db15b24b8c69e39451f4afb951c993f9fbf31e</id>
<content type='text'>

ProjectsFinder should handle more options

Closes #28810

See merge request !9682</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

ProjectsFinder should handle more options

Closes #28810

See merge request !9682</pre>
</div>
</content>
</entry>
<entry>
<title>ProjectsFinder should handle more options</title>
<updated>2017-04-06T05:11:37+00:00</updated>
<author>
<name>Jacopo</name>
<email>beschi.jacopo@gmail.com</email>
</author>
<published>2017-03-03T10:35:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b996a82ff44e3bcad5e5fb70cabbfa808d06cf62'/>
<id>b996a82ff44e3bcad5e5fb70cabbfa808d06cf62</id>
<content type='text'>
Extended ProjectFinder in order to handle the following options:
 - current_user - which user use
 - project_ids_relation: int[] - project ids to use
 - params:
   -  trending: boolean
   -  non_public: boolean
   -  starred: boolean
   -  sort: string
   -  visibility_level: int
   -  tags: string[]
   -  personal: boolean
   -  search: string
   -  non_archived: boolean

GroupProjectsFinder now inherits from ProjectsFinder.
Changed the code in order to use the new available options.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Extended ProjectFinder in order to handle the following options:
 - current_user - which user use
 - project_ids_relation: int[] - project ids to use
 - params:
   -  trending: boolean
   -  non_public: boolean
   -  starred: boolean
   -  sort: string
   -  visibility_level: int
   -  tags: string[]
   -  personal: boolean
   -  search: string
   -  non_archived: boolean

GroupProjectsFinder now inherits from ProjectsFinder.
Changed the code in order to use the new available options.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'open-redirect-host-fix' into 'security'</title>
<updated>2017-04-06T04:06:58+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2017-04-05T22:52:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b80653bb6aa8518e0a61e85cae4430928078c092'/>
<id>b80653bb6aa8518e0a61e85cae4430928078c092</id>
<content type='text'>

Fix for three open redirect vulns using redirect_to url_for(params.merge)))

See merge request !2082</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Fix for three open redirect vulns using redirect_to url_for(params.merge)))

See merge request !2082</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge branch '29534-todos-performance' into 'master'"</title>
<updated>2017-03-21T15:25:00+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-03-21T15:25:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1974691bfe372f805a635319a8f7dbd6e0537485'/>
<id>1974691bfe372f805a635319a8f7dbd6e0537485</id>
<content type='text'>
This reverts merge request !10076</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts merge request !10076</pre>
</div>
</content>
</entry>
<entry>
<title>Todos performance: Include associations in Finder</title>
<updated>2017-03-20T11:45:43+00:00</updated>
<author>
<name>Jarka Kadlecova</name>
<email>jarka@gitlab.com</email>
</author>
<published>2017-03-20T08:20:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bf41a2e7525cc952686623b508023c169dbdfe2d'/>
<id>bf41a2e7525cc952686623b508023c169dbdfe2d</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 '27376-cache-default-branch-pipeline-on-project' into 'master'</title>
<updated>2017-03-16T12:09:52+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2017-03-16T12:09:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=abb5f765c1e1affe0e132c86811e356e4a7008c9'/>
<id>abb5f765c1e1affe0e132c86811e356e4a7008c9</id>
<content type='text'>

Speed up several project lists

See merge request !9903</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Speed up several project lists

See merge request !9903</pre>
</div>
</content>
</entry>
</feed>
