<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/config/environments, branch docs/fix-commit-api-render</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>Remove rails 4 support in CI, Gemfiles, bin/ and config/</title>
<updated>2018-12-14T18:36:22+00:00</updated>
<author>
<name>Jasper Maes</name>
<email>jaspermaes.jm@gmail.com</email>
</author>
<published>2018-12-07T18:15:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=44fef4fe4cb9d4f30f129ff5a548395bc924c8fe'/>
<id>44fef4fe4cb9d4f30f129ff5a548395bc924c8fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Explicitly set locale fallbacks</title>
<updated>2018-11-21T11:17:26+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2018-11-21T11:17:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e423096b77f37acb446ac36d2cf79eaf632b2628'/>
<id>e423096b77f37acb446ac36d2cf79eaf632b2628</id>
<content type='text'>
With a recent change in i18n, default language is not
included in fallbacks by default. This causes that
MissingTranslationData exception is raised both in
development and production mode.

This patch sets explicitly fallbacks language to english
which assures that english is used for missing translations.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With a recent change in i18n, default language is not
included in fallbacks by default. This causes that
MissingTranslationData exception is raised both in
development and production mode.

This patch sets explicitly fallbacks language to english
which assures that english is used for missing translations.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow concurrency when using Puma</title>
<updated>2018-11-05T17:46:15+00:00</updated>
<author>
<name>Andrew Newdigate</name>
<email>andrew@gitlab.com</email>
</author>
<published>2018-11-05T17:46:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b6cde1856ff036732fd1d655c3a6fa113c2457a4'/>
<id>b6cde1856ff036732fd1d655c3a6fa113c2457a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix rails 5 deprecation warnings</title>
<updated>2018-09-11T16:14:37+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2018-09-07T07:21:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1b42c847bc4d727f0c9c78f326ce2f34d22494da'/>
<id>1b42c847bc4d727f0c9c78f326ce2f34d22494da</id>
<content type='text'>
Fixes rails 5 deprecation warnings in `config/` files
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes rails 5 deprecation warnings in `config/` files
</pre>
</div>
</content>
</entry>
<entry>
<title>Move spec/mailers/previews to app/mailers/previews</title>
<updated>2018-07-06T12:17:54+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2018-07-06T12:17:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c83381938aafe6d5e7da8890150ba285a2533665'/>
<id>c83381938aafe6d5e7da8890150ba285a2533665</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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://git.baserock.org/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>[Rails5] Update files by `rails app:update`</title>
<updated>2018-03-21T22:37:57+00:00</updated>
<author>
<name>blackst0ne</name>
<email>blackst0ne.ru@gmail.com</email>
</author>
<published>2018-03-21T22:37:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=36bedfb7f37931a33d9af586296404c02c3ab80e'/>
<id>36bedfb7f37931a33d9af586296404c02c3ab80e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>implement basic request inspector for use in Capybara tests</title>
<updated>2017-10-23T14:00:41+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2017-10-23T09:19:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b612bcfc64618906b5b11a245fb0aa2452d6c5dd'/>
<id>b612bcfc64618906b5b11a245fb0aa2452d6c5dd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "Precompiled assets with digest strings are ignored in CI"</title>
<updated>2017-10-03T14:47:56+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2017-10-03T14:47:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7b262c435619798cdfebe3760709fc9029032343'/>
<id>7b262c435619798cdfebe3760709fc9029032343</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix logger disabling on the CI: instantiate an ActiveSupport::TaggedLogging</title>
<updated>2017-07-20T09:16:12+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-07-20T08:39:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ba74f38946e0889e02e07ea1e6ba98f191ec8c4d'/>
<id>ba74f38946e0889e02e07ea1e6ba98f191ec8c4d</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>
</feed>
