<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/config/initializers, branch docs-serverless-ssl</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>Speed up obtaining Let's Encrypt certificates</title>
<updated>2019-06-26T11:47:21+00:00</updated>
<author>
<name>Vladimir Shushlin</name>
<email>vshushlin@gitlab.com</email>
</author>
<published>2019-06-26T11:47:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7f85e92ff1e1c4fdd10a2e8b3541d8478c24aa16'/>
<id>7f85e92ff1e1c4fdd10a2e8b3541d8478c24aa16</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Copy inflections from EE</title>
<updated>2019-06-25T15:29:50+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2019-06-25T15:29:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4029e8df76fe38dc849b2acf4bcd80df172e9edc'/>
<id>4029e8df76fe38dc849b2acf4bcd80df172e9edc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor inside_transaction? to Gitlab::Database</title>
<updated>2019-06-25T09:15:35+00:00</updated>
<author>
<name>Andrew Newdigate</name>
<email>andrew@gitlab.com</email>
</author>
<published>2019-06-25T09:15:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=84cb1bdaedbe192c5594d7586117191b865d8347'/>
<id>84cb1bdaedbe192c5594d7586117191b865d8347</id>
<content type='text'>
This is a small change to move AfterCommitQueue.inside_transaction?
to Gitlab::Database.inside_transaction? Since this change is required
by different changes which may not arrive in sequence, it's easier
to extract this change out on it's own.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a small change to move AfterCommitQueue.inside_transaction?
to Gitlab::Database.inside_transaction? Since this change is required
by different changes which may not arrive in sequence, it's easier
to extract this change out on it's own.
</pre>
</div>
</content>
</entry>
<entry>
<title>Renew Let's Encrypt certificates</title>
<updated>2019-06-24T20:35:12+00:00</updated>
<author>
<name>Vladimir Shushlin</name>
<email>vshushlin@gitlab.com</email>
</author>
<published>2019-06-24T20:35:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a7764d0e845db524f2913b6c11c88dfd121ec522'/>
<id>a7764d0e845db524f2913b6c11c88dfd121ec522</id>
<content type='text'>
Add index for pages domain ssl auto renewal
Add PagesDomain.needs_ssl_renewal scope
Add cron worker for ssl renewal
Add worker for ssl renewal
Add pages ssl renewal worker queues settings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add index for pages domain ssl auto renewal
Add PagesDomain.needs_ssl_renewal scope
Add cron worker for ssl renewal
Add worker for ssl renewal
Add pages ssl renewal worker queues settings
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'config-yaml-differences' into 'master'</title>
<updated>2019-06-20T16:44:39+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2019-06-20T16:44:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d98bae878f95e27f235d6c674eab839fe5de005a'/>
<id>d98bae878f95e27f235d6c674eab839fe5de005a</id>
<content type='text'>
Backport changes made by EE to various YAML configuration files

See merge request gitlab-org/gitlab-ce!29606</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport changes made by EE to various YAML configuration files

See merge request gitlab-org/gitlab-ce!29606</pre>
</div>
</content>
</entry>
<entry>
<title>Backport gitlab.yml.example from EE</title>
<updated>2019-06-20T12:51:49+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2019-06-13T12:18:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0e41564762cd74c6cbf938dcc319c3b77a891dc7'/>
<id>0e41564762cd74c6cbf938dcc319c3b77a891dc7</id>
<content type='text'>
To make this happen, we need to conditionally add the group_saml
strategy when running tests, but only on EE. This requires some changes
to Gitlab.ee? so that it can be used before/without loading the Rails
environment. We also have to change how we require a few files, so this
can run outside of Rails.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To make this happen, we need to conditionally add the group_saml
strategy when running tests, but only on EE. This requires some changes
to Gitlab.ee? so that it can be used before/without loading the Rails
environment. We also have to change how we require a few files, so this
can run outside of Rails.
</pre>
</div>
</content>
</entry>
<entry>
<title>Only support postgresql</title>
<updated>2019-06-19T13:11:00+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-06-18T10:25:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7754029e190eee6eb530c4c8dc45bec57095d92c'/>
<id>7754029e190eee6eb530c4c8dc45bec57095d92c</id>
<content type='text'>
MySQL support has been removed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MySQL support has been removed
</pre>
</div>
</content>
</entry>
<entry>
<title>Add back sidekiq metrics exporter</title>
<updated>2019-06-14T01:41:29+00:00</updated>
<author>
<name>Ryan Cobb</name>
<email>rcobb@gitlab.com</email>
</author>
<published>2019-06-14T01:41:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5c297aa8535e48975f82eac21bcdad9d3b255fda'/>
<id>5c297aa8535e48975f82eac21bcdad9d3b255fda</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved RackTimeout observer to a different location</title>
<updated>2019-06-12T10:09:04+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2019-06-05T17:20:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d3a7bdda986949ca76df3c4932ee8c973437a743'/>
<id>d3a7bdda986949ca76df3c4932ee8c973437a743</id>
<content type='text'>
Because there will be similar observer for PumaWorkerKiller,
it makes sense to keep both on better place.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because there will be similar observer for PumaWorkerKiller,
it makes sense to keep both on better place.
</pre>
</div>
</content>
</entry>
<entry>
<title>Adds sidekiq worker label for ruby metrics</title>
<updated>2019-06-06T19:19:50+00:00</updated>
<author>
<name>Ryan Cobb</name>
<email>rcobb@gitlab.com</email>
</author>
<published>2019-06-05T18:20:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7131ad46c6d2301d9979f2f8ef9cf081264f03a6'/>
<id>7131ad46c6d2301d9979f2f8ef9cf081264f03a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
