<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/config, branch fix-diff-comment-alignment</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>Redirect favicon.(png|ico) to actual favicon asset or upload</title>
<updated>2018-06-18T10:27:00+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@selenight.nl</email>
</author>
<published>2018-06-18T09:31:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2a402a3e503b3c564b4e9dcbf9d7ede1d2291937'/>
<id>2a402a3e503b3c564b4e9dcbf9d7ede1d2291937</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[Rails5] Fix optimistic lock value</title>
<updated>2018-06-15T11:53:39+00:00</updated>
<author>
<name>blackst0ne</name>
<email>blackst0ne.ru@gmail.com</email>
</author>
<published>2018-06-15T11:53:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=145832d6c6637094d40e78b80f1c72c1029515fd'/>
<id>145832d6c6637094d40e78b80f1c72c1029515fd</id>
<content type='text'>
Update the monkey-patch to make it work in Rails 5.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update the monkey-patch to make it work in Rails 5.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rails5-database' into 'master'</title>
<updated>2018-06-14T13:12:37+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2018-06-14T13:12:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=17335a42aea4c9ddccbe92527752ae0e6b9b7835'/>
<id>17335a42aea4c9ddccbe92527752ae0e6b9b7835</id>
<content type='text'>
Fix table_exists? to be Rails5 compatible

Closes #45107

See merge request gitlab-org/gitlab-ce!19418</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix table_exists? to be Rails5 compatible

Closes #45107

See merge request gitlab-org/gitlab-ce!19418</pre>
</div>
</content>
</entry>
<entry>
<title>Use data_source_exists? instead of table_exists?</title>
<updated>2018-06-14T06:39:43+00:00</updated>
<author>
<name>Jarka Kadlecová</name>
<email>jarka@gitlab.com</email>
</author>
<published>2018-06-05T09:29:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fa36101a7fc8679d98198942f15dd6285673594d'/>
<id>fa36101a7fc8679d98198942f15dd6285673594d</id>
<content type='text'>
Use data_source_exists? where possible instead of table_exists? in order to be Rails5 compatible
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use data_source_exists? where possible instead of table_exists? in order to be Rails5 compatible
</pre>
</div>
</content>
</entry>
<entry>
<title>[Rails5] Pass class references instead of strings to middleware builder</title>
<updated>2018-06-13T03:12:38+00:00</updated>
<author>
<name>blackst0ne</name>
<email>blackst0ne.ru@gmail.com</email>
</author>
<published>2018-06-13T03:12:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1499b02f73a6d8800a8132ea7b19a7e97fff1b4e'/>
<id>1499b02f73a6d8800a8132ea7b19a7e97fff1b4e</id>
<content type='text'>
It fixes Rails 5.0 deprecation flooding like:

```
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "::Gitlab::Middleware::ReadOnly" =&gt; Gitlab::Middleware::ReadOnly

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "ActionDispatch::Static" =&gt; ActionDispatch::Static

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "Gitlab::Testing::RequestBlockerMiddleware" =&gt; Gitlab::Testing::RequestBlockerMiddleware

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "ActionDispatch::Static" =&gt; ActionDispatch::Static

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "Gitlab::Testing::RequestInspectorMiddleware" =&gt; Gitlab::Testing::RequestInspectorMiddleware

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It fixes Rails 5.0 deprecation flooding like:

```
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "::Gitlab::Middleware::ReadOnly" =&gt; Gitlab::Middleware::ReadOnly

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "ActionDispatch::Static" =&gt; ActionDispatch::Static

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "Gitlab::Testing::RequestBlockerMiddleware" =&gt; Gitlab::Testing::RequestBlockerMiddleware

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "ActionDispatch::Static" =&gt; ActionDispatch::Static

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
DEPRECATION WARNING: Passing strings or symbols to the middleware builder is deprecated, please change
them to actual class references.  For example:

  "Gitlab::Testing::RequestInspectorMiddleware" =&gt; Gitlab::Testing::RequestInspectorMiddleware

 (called from &lt;top (required)&gt; at /builds/gitlab-org/gitlab-ce/config/environment.rb:11)
```
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'sh-update-unicorn-rb-example' into 'master'</title>
<updated>2018-06-12T19:21:47+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2018-06-12T19:21:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f032f8dba6fc95ad89444ed93727dc41f58f02e4'/>
<id>f032f8dba6fc95ad89444ed93727dc41f58f02e4</id>
<content type='text'>
Clean up stale Prometheus metrics in before_exec unicorn hook

See merge request gitlab-org/gitlab-ce!19683</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Clean up stale Prometheus metrics in before_exec unicorn hook

See merge request gitlab-org/gitlab-ce!19683</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "[Rails5] `ActionView::MissingTemplate` in spec/features/projects/wiki/user_views_wiki_page_spec.rb"</title>
<updated>2018-06-12T11:30:13+00:00</updated>
<author>
<name>blackst0ne</name>
<email>blackst0ne.ru@gmail.com</email>
</author>
<published>2018-06-12T11:30:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1292b99b742fd83438b011d3082662d354b3330e'/>
<id>1292b99b742fd83438b011d3082662d354b3330e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up stale Prometheus metrics in before_exec unicorn hook</title>
<updated>2018-06-12T04:50:32+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2018-06-12T04:45:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e9d4b08dc2cde4477e77f5ad4b2e9efad47fbf71'/>
<id>e9d4b08dc2cde4477e77f5ad4b2e9efad47fbf71</id>
<content type='text'>
Issuing a SIGUSR2 to a unicorn involves a dance where new workers are
spun up before the old ones are shut down. To ensure Prometheus
.db files aren't deleted after the new workers are shut down, we
need to clean these files up before the unicorn process is run.

Relates to https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/2582
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Issuing a SIGUSR2 to a unicorn involves a dance where new workers are
spun up before the old ones are shut down. To ensure Prometheus
.db files aren't deleted after the new workers are shut down, we
need to clean these files up before the unicorn process is run.

Relates to https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/2582
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'leipert-add-memory-info' into 'master'</title>
<updated>2018-06-11T13:59:55+00:00</updated>
<author>
<name>Tim Zallmann</name>
<email>tzallmann@gitlab.com</email>
</author>
<published>2018-06-11T13:59:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=35748c0899573c03297a4833250243af606f5efb'/>
<id>35748c0899573c03297a4833250243af606f5efb</id>
<content type='text'>
Set `max_old_space_size` option of node to 3.5GB during compile:assets

See merge request gitlab-org/gitlab-ce!19624</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set `max_old_space_size` option of node to 3.5GB during compile:assets

See merge request gitlab-org/gitlab-ce!19624</pre>
</div>
</content>
</entry>
<entry>
<title>set max_old_space_size to 3.5 GB for compile-assets job</title>
<updated>2018-06-11T07:46:02+00:00</updated>
<author>
<name>Lukas Eipert</name>
<email>leipert@gitlab.com</email>
</author>
<published>2018-06-11T06:27:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=762c623997b2077258b59c70dcfae8a456d39fd2'/>
<id>762c623997b2077258b59c70dcfae8a456d39fd2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
