<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/spec/workers, branch github-import-docs</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Merge branch 'rails5-cattr' into 'master'</title>
<updated>2018-05-31T08:04:32+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-05-31T08:04:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ea5d35f6722a5027f919eba061a38b1b5be4a85a'/>
<id>ea5d35f6722a5027f919eba061a38b1b5be4a85a</id>
<content type='text'>
Fix cattr_accessor definition

Closes #46282

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

Closes #46282

See merge request gitlab-org/gitlab-ce!19192</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '38759-fetch-available-parameters-directly-from-gke-when-creating-a-cluster' into 'master'</title>
<updated>2018-05-29T11:27:03+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2018-05-29T11:27:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=792512718086826fb17729566387d16e68950a85'/>
<id>792512718086826fb17729566387d16e68950a85</id>
<content type='text'>
Resolve "Fetch available parameters directly from GKE when creating a cluster"

Closes #38759

See merge request gitlab-org/gitlab-ce!17806</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Fetch available parameters directly from GKE when creating a cluster"

Closes #38759

See merge request gitlab-org/gitlab-ce!17806</pre>
</div>
</content>
</entry>
<entry>
<title>Fix cattr_accessor definition</title>
<updated>2018-05-28T18:59:32+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2018-05-28T18:59:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e31717f490c5b75f65121b14c34a327737ba9ac5'/>
<id>e31717f490c5b75f65121b14c34a327737ba9ac5</id>
<content type='text'>
Use cattr_accessor directly inside the defined class, otherwise
in Rails 5 this accessor returns nil.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use cattr_accessor directly inside the defined class, otherwise
in Rails 5 this accessor returns nil.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '45190-create-notes-diff-files' into 'master'</title>
<updated>2018-05-28T09:47:06+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-05-28T09:47:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0a43b25c20010b3eb4c9ab8cef8712df99702fac'/>
<id>0a43b25c20010b3eb4c9ab8cef8712df99702fac</id>
<content type='text'>
Persist and use truncated note diffs instead requesting Gitaly in a N+1 manner on MR page

Closes #45190

See merge request gitlab-org/gitlab-ce!18991</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Persist and use truncated note diffs instead requesting Gitaly in a N+1 manner on MR page

Closes #45190

See merge request gitlab-org/gitlab-ce!18991</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into 38759-fetch-available-parameters-directly-from-gke-when-creating-a-cluster</title>
<updated>2018-05-25T21:56:17+00:00</updated>
<author>
<name>Dennis Tang</name>
<email>dtang@gitlab.com</email>
</author>
<published>2018-05-25T21:56:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=95a63a881673533e3fd44243297d1a81e19396b6'/>
<id>95a63a881673533e3fd44243297d1a81e19396b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Persist truncated note diffs on a new table</title>
<updated>2018-05-24T18:34:43+00:00</updated>
<author>
<name>Oswaldo Ferreira</name>
<email>oswaldo@gitlab.com</email>
</author>
<published>2018-05-16T15:46:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bb8f2520b4254c9dabe377df48e29c5f17894a1d'/>
<id>bb8f2520b4254c9dabe377df48e29c5f17894a1d</id>
<content type='text'>
We request Gitaly in a N+1 manner to build discussion diffs. Once the diffs are from different revisions, it's hard to make a single request to the service in order to build the whole response.
With this change we solve this problem and simplify a lot fetching this piece of info.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We request Gitaly in a N+1 manner to build discussion diffs. Once the diffs are from different revisions, it's hard to make a single request to the service in order to build the whole response.
With this change we solve this problem and simplify a lot fetching this piece of info.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid using expect_any_instance_of</title>
<updated>2018-05-23T12:39:39+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2018-05-23T10:06:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ec31fa260b9f438fe7e369c6f61d55c4f10441cc'/>
<id>ec31fa260b9f438fe7e369c6f61d55c4f10441cc</id>
<content type='text'>
We can't use it for prepended module, so use
`and_wrap_original` to wrap around the instance.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can't use it for prepended module, so use
`and_wrap_original` to wrap around the instance.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into 38759-fetch-available-parameters-directly-from-gke-when-creating-a-cluster</title>
<updated>2018-05-11T16:42:20+00:00</updated>
<author>
<name>Dennis Tang</name>
<email>dtang@gitlab.com</email>
</author>
<published>2018-05-11T16:42:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2205ed4f07265a43d2561ab2657557e317e7b9c0'/>
<id>2205ed4f07265a43d2561ab2657557e317e7b9c0</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 '42099-port-push-mirroring-to-ce-ce-port-v-2' into 'master'</title>
<updated>2018-05-07T15:15:57+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-05-07T15:15:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d0cbef7e8f4faf76b9a528a4629517f29b8c265b'/>
<id>d0cbef7e8f4faf76b9a528a4629517f29b8c265b</id>
<content type='text'>
CE backport of Backports Push Mirrors to CE

Closes #42099

See merge request gitlab-org/gitlab-ce!18715</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CE backport of Backports Push Mirrors to CE

Closes #42099

See merge request gitlab-org/gitlab-ce!18715</pre>
</div>
</content>
</entry>
<entry>
<title>Fix rubocop violation</title>
<updated>2018-05-07T13:00:32+00:00</updated>
<author>
<name>Toon Claes</name>
<email>toon@gitlab.com</email>
</author>
<published>2018-05-07T13:00:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e076bd9b17ed0b5f603b53c3b9f27603d7bb3feb'/>
<id>e076bd9b17ed0b5f603b53c3b9f27603d7bb3feb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
