<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib, branch pre-commit-prettier</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 '38318-search-merge-requests-with-api' into 'master'</title>
<updated>2017-12-20T13:59:39+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-12-20T13:59:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7429a1f18c2148f00b4675687a0ad89b4db6eec6'/>
<id>7429a1f18c2148f00b4675687a0ad89b4db6eec6</id>
<content type='text'>
Resolve "Search merge-requests with API"

Closes #38318

See merge request gitlab-org/gitlab-ce!16029</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Search merge-requests with API"

Closes #38318

See merge request gitlab-org/gitlab-ce!16029</pre>
</div>
</content>
</entry>
<entry>
<title>Add optional `search` param for Merge Requests API</title>
<updated>2017-12-20T07:23:57+00:00</updated>
<author>
<name>Mark Fletcher</name>
<email>mark@gitlab.com</email>
</author>
<published>2017-12-19T22:00:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=055543b915c13df57e13629cd49ca9d63b6e3e76'/>
<id>055543b915c13df57e13629cd49ca9d63b6e3e76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Employ declared_params in finder methods for MR and Issue API lists</title>
<updated>2017-12-20T07:23:57+00:00</updated>
<author>
<name>Mark Fletcher</name>
<email>mark@gitlab.com</email>
</author>
<published>2017-12-19T21:57:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c9732b3c6dc07b4ffd0df9c2ae88e1f67cd56243'/>
<id>c9732b3c6dc07b4ffd0df9c2ae88e1f67cd56243</id>
<content type='text'>
- Ensure that unwanted params are no passed to actual finder classes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Ensure that unwanted params are no passed to actual finder classes
</pre>
</div>
</content>
</entry>
<entry>
<title>Only include the user's ID in the time_spent command's update hash</title>
<updated>2017-12-19T21:45:08+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2017-12-14T19:32:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3e4b45fc216875ff25647675d92448a53a740d9b'/>
<id>3e4b45fc216875ff25647675d92448a53a740d9b</id>
<content type='text'>
Previously, this would include the entire User record in the update
hash, which was rendered in the response using `to_json`, erroneously
exposing every attribute of that record, including their (now removed)
private token.

Now we only include the user ID, and perform the lookup on-demand.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, this would include the entire User record in the update
hash, which was rendered in the response using `to_json`, erroneously
exposing every attribute of that record, including their (now removed)
private token.

Now we only include the user ID, and perform the lookup on-demand.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'zj-gitaly-pipelines-n-1' into 'master'</title>
<updated>2017-12-19T16:23:00+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2017-12-19T16:23:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ac22576d80b6d043c4991ad39172976566465693'/>
<id>ac22576d80b6d043c4991ad39172976566465693</id>
<content type='text'>
Improve performance of Pipelines#index.json

See merge request gitlab-org/gitlab-ce!14846</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Improve performance of Pipelines#index.json

See merge request gitlab-org/gitlab-ce!14846</pre>
</div>
</content>
</entry>
<entry>
<title>Load commit in batches for pipelines#index</title>
<updated>2017-12-19T09:05:40+00:00</updated>
<author>
<name>Zeger-Jan van de Weg</name>
<email>git@zjvandeweg.nl</email>
</author>
<published>2017-12-05T13:15:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c6edae38870a4228e3b964d647b9ef588df11f27'/>
<id>c6edae38870a4228e3b964d647b9ef588df11f27</id>
<content type='text'>
Uses `list_commits_by_oid` on the CommitService, to request the needed
commits for pipelines. These commits are needed to display the user that
created the commit and the commit title.

This includes fixes for tests failing that depended on the commit
being `nil`. However, now these are batch loaded, this doesn't happen
anymore and the commits are an instance of BatchLoader.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Uses `list_commits_by_oid` on the CommitService, to request the needed
commits for pipelines. These commits are needed to display the user that
created the commit and the commit title.

This includes fixes for tests failing that depended on the commit
being `nil`. However, now these are batch loaded, this doesn't happen
anymore and the commits are an instance of BatchLoader.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'sh-add-schedule-pipeline-run-now' into 'master'</title>
<updated>2017-12-18T13:08:51+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2017-12-18T13:08:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=924e00496c7d16887447b9384b66b555e5a9f911'/>
<id>924e00496c7d16887447b9384b66b555e5a9f911</id>
<content type='text'>
Add button to run scheduled pipeline immediately

Closes #38741

See merge request gitlab-org/gitlab-ce!15700</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add button to run scheduled pipeline immediately

Closes #38741

See merge request gitlab-org/gitlab-ce!15700</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'no-ivar-in-modules' into 'master'</title>
<updated>2017-12-15T19:56:15+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2017-12-15T19:56:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b540b987648ae6e24bbbc01a7773b2e3209a47b0'/>
<id>b540b987648ae6e24bbbc01a7773b2e3209a47b0</id>
<content type='text'>
Add cop to make sure we don't use ivar in a module

See merge request gitlab-org/gitlab-ce!12800</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add cop to make sure we don't use ivar in a module

See merge request gitlab-org/gitlab-ce!12800</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'dm-ldap-email-readonly' into 'master'</title>
<updated>2017-12-15T12:46:22+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-12-15T12:46:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d39d968ba4100be3e77e9d02af6ce10ff18ca508'/>
<id>d39d968ba4100be3e77e9d02af6ce10ff18ca508</id>
<content type='text'>
Make sure user email is read only when synced with LDAP

Closes #41033

See merge request gitlab-org/gitlab-ce!15915</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make sure user email is read only when synced with LDAP

Closes #41033

See merge request gitlab-org/gitlab-ce!15915</pre>
</div>
</content>
</entry>
<entry>
<title>Make sure user email is read only when synced with LDAP</title>
<updated>2017-12-15T11:48:48+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@selenight.nl</email>
</author>
<published>2017-12-13T17:02:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=481b8a71f8ee63758d26a57a6367c091d4b76b09'/>
<id>481b8a71f8ee63758d26a57a6367c091d4b76b09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
