<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/controllers, branch backport-gitlab-database</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>Resolve "Deploy Tokens failed to clone LFS repository"</title>
<updated>2018-07-23T09:23:08+00:00</updated>
<author>
<name>Mayra Cabrera</name>
<email>mcabrera@gitlab.com</email>
</author>
<published>2018-07-23T09:23:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f2c46672cae763bb213e8aa14253e5eea48c1064'/>
<id>f2c46672cae763bb213e8aa14253e5eea48c1064</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix gitlab import project load</title>
<updated>2018-07-23T07:52:15+00:00</updated>
<author>
<name>Francisco Javier López</name>
<email>fjlopez@gitlab.com</email>
</author>
<published>2018-07-23T07:52:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c52ab9141c27e131721d8ae28b44bff9a3431cae'/>
<id>c52ab9141c27e131721d8ae28b44bff9a3431cae</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 '48932-disable-saml-if-omniauth-is-disabled' into 'master'</title>
<updated>2018-07-23T07:48:00+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-07-23T07:48:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8bc7845fbf424b9f451247459dcb3a8bbe953242'/>
<id>8bc7845fbf424b9f451247459dcb3a8bbe953242</id>
<content type='text'>
Resolve "Disable SAML and Bitbucket if OmniAuth is disabled"

Closes #48932

See merge request gitlab-org/gitlab-ce!20608</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Disable SAML and Bitbucket if OmniAuth is disabled"

Closes #48932

See merge request gitlab-org/gitlab-ce!20608</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '23705-add-single-file-download-in-repo' into 'master'</title>
<updated>2018-07-20T13:35:27+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-07-20T13:35:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f8bedb755f098486503534be872d0851e0bbd061'/>
<id>f8bedb755f098486503534be872d0851e0bbd061</id>
<content type='text'>
Resolve "Ability to download single file"

Closes #23705

See merge request gitlab-org/gitlab-ce!20480</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Ability to download single file"

Closes #23705

See merge request gitlab-org/gitlab-ce!20480</pre>
</div>
</content>
</entry>
<entry>
<title>Disable SAML if OmniAuth is disabled</title>
<updated>2018-07-20T10:54:46+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2018-07-13T10:39:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d0afab482f1157d0b41631cb4dbdfdfeadabb7c8'/>
<id>d0afab482f1157d0b41631cb4dbdfdfeadabb7c8</id>
<content type='text'>
We also try to unify the way we setup OmniAuth, and how we check
if it's enabled or not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We also try to unify the way we setup OmniAuth, and how we check
if it's enabled or not.
</pre>
</div>
</content>
</entry>
<entry>
<title>Limit the TTL for anonymous sessions to 1 hour</title>
<updated>2018-07-18T19:39:51+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2018-07-18T18:18:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c559c43dafb75005f5589c473729054845bb498b'/>
<id>c559c43dafb75005f5589c473729054845bb498b</id>
<content type='text'>
By default, all sessions are given the same expiration time configured in the
session store (e.g. 1 week). However, unauthenticated users can generate a lot
of sessions, primarily for CSRF verification. It makes sense to reduce the TTL
for unauthenticated to something much lower than the default (e.g. 1 hour) to
limit Redis memory. In addition, Rails creates a new session after login,
so the short TTL doesn't even need to be extended.

Closes #48101
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By default, all sessions are given the same expiration time configured in the
session store (e.g. 1 week). However, unauthenticated users can generate a lot
of sessions, primarily for CSRF verification. It makes sense to reduce the TTL
for unauthenticated to something much lower than the default (e.g. 1 hour) to
limit Redis memory. In addition, Rails creates a new session after login,
so the short TTL doesn't even need to be extended.

Closes #48101
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/master' into 14995-custom_wiki_sidebar</title>
<updated>2018-07-13T09:34:27+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2018-07-13T09:34:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d9f26586b4ec00c00fb470e55af3dc5c1f4ce33a'/>
<id>d9f26586b4ec00c00fb470e55af3dc5c1f4ce33a</id>
<content type='text'>
* upstream/master: (467 commits)
  Update docs board features tier
  Upgrade grape-path-helpers to 1.0.6
  Remove healthchecks from prometheus endpoint
  Fix find_branch call sites
  Ensure Encoding.default_external is set to UTF-8 when running QA scenarios
  i18n: externalize strings from 'app/views/admin/groups'
  Backport mr widget changes from EE
  Allow to toggle notifications for issues due soon
  Vuex test helper improvements
  whitespace
  Make more ref RPC's mandatory
  Resolve "Improve performance of MR Changes tab: reduce event listeners on scroll event"
  Remove old service architecture from Vue docs
  Adding spec to test basic forking functionalities
  Fix performance problem of accessing tag list for projects api endpoints
  typo
  Add sleep to QA test before installing tiller
  Include Vue files that are not covered by tests in test coverage
  Remove Repository#path memoization
  Resolve "do not set updated_at when creating note"
  ...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* upstream/master: (467 commits)
  Update docs board features tier
  Upgrade grape-path-helpers to 1.0.6
  Remove healthchecks from prometheus endpoint
  Fix find_branch call sites
  Ensure Encoding.default_external is set to UTF-8 when running QA scenarios
  i18n: externalize strings from 'app/views/admin/groups'
  Backport mr widget changes from EE
  Allow to toggle notifications for issues due soon
  Vuex test helper improvements
  whitespace
  Make more ref RPC's mandatory
  Resolve "Improve performance of MR Changes tab: reduce event listeners on scroll event"
  Remove old service architecture from Vue docs
  Adding spec to test basic forking functionalities
  Fix performance problem of accessing tag list for projects api endpoints
  typo
  Add sleep to QA test before installing tiller
  Include Vue files that are not covered by tests in test coverage
  Remove Repository#path memoization
  Resolve "do not set updated_at when creating note"
  ...
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor code for single file download in repository</title>
<updated>2018-07-13T01:33:35+00:00</updated>
<author>
<name>Kia Mei Somabes</name>
<email>kssomabes@up.edu.ph</email>
</author>
<published>2018-07-13T01:24:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1e0f0de30253cf20533fe4002272e3e3861b3883'/>
<id>1e0f0de30253cf20533fe4002272e3e3861b3883</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 'dz-manifest-import' into 'master'</title>
<updated>2018-07-12T11:50:27+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-07-12T11:50:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2f83794d2b727594676e25e85ada53e33cf5246a'/>
<id>2f83794d2b727594676e25e85ada53e33cf5246a</id>
<content type='text'>
Add manifest import

See merge request gitlab-org/gitlab-ce!20304</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add manifest import

See merge request gitlab-org/gitlab-ce!20304</pre>
</div>
</content>
</entry>
<entry>
<title>Set content-disposition header for single file download in repository</title>
<updated>2018-07-12T02:23:00+00:00</updated>
<author>
<name>Kia Mei Somabes</name>
<email>kssomabes@up.edu.ph</email>
</author>
<published>2018-07-12T02:23:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9f57ae11e935d2a8a2b175d8382ed87020727845'/>
<id>9f57ae11e935d2a8a2b175d8382ed87020727845</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
