<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/helpers, branch docs-pages-https</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Make default_avatar return a full path.</title>
<updated>2018-01-28T16:39:22+00:00</updated>
<author>
<name>Felix Geyer</name>
<email>debfx@fobos.de</email>
</author>
<published>2018-01-23T22:25:44+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=94039bd7ca750446c637b924547493cfe8143716'/>
<id>94039bd7ca750446c637b924547493cfe8143716</id>
<content type='text'>
Callers expect a URL.

This fixes the avatars in commit lists when a user has no avatar and
Gravatar is disabled.

Closes #38715
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Callers expect a URL.

This fixes the avatars in commit lists when a user has no avatar and
Gravatar is disabled.

Closes #38715
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix-local-rspec-tests' into 'master'</title>
<updated>2018-01-26T01:12:11+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2018-01-26T01:12:11+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8e3f40f71fba520a9e05e13e7902a3dcdc0d7c15'/>
<id>8e3f40f71fba520a9e05e13e7902a3dcdc0d7c15</id>
<content type='text'>
Fix local RSpec tests due to bug in `webpack_bundle_tag`

Closes #42368

See merge request gitlab-org/gitlab-ce!16724</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix local RSpec tests due to bug in `webpack_bundle_tag`

Closes #42368

See merge request gitlab-org/gitlab-ce!16724</pre>
</div>
</content>
</entry>
<entry>
<title>fix bug in webpack_helper in which force_same_domain argument was ignored breaking local rspec tests</title>
<updated>2018-01-25T20:40:48+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2018-01-25T20:40:48+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8210d2eba5f0a52759156bc2bf8df72884747c42'/>
<id>8210d2eba5f0a52759156bc2bf8df72884747c42</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "Link to Clusters in Auto DevOps instead of Kubernetes service"</title>
<updated>2018-01-25T09:27:10+00:00</updated>
<author>
<name>Fabio Busatto</name>
<email>fabio@gitlab.com</email>
</author>
<published>2018-01-25T09:27:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9eed610f9a9810f468239d1ad510657bc1212960'/>
<id>9eed610f9a9810f468239d1ad510657bc1212960</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use limit for search count queries</title>
<updated>2018-01-23T21:33:42+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2018-01-23T11:03:15+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=090ca9c33e4c1939366e66c328af6dd61bf1db1d'/>
<id>090ca9c33e4c1939366e66c328af6dd61bf1db1d</id>
<content type='text'>
Search query is especially slow if a user searches a generic string
which matches many records, in such case search can take tens of
seconds or time out. To speed up the search query, we search only for
first 1000 records, if there is &gt;1000 matching records we just display
"1000+" instead of precise total count supposing that with such amount
the exact count is not so important for the user.

Because for issues even limited search was not fast enough, 2-phase
approach is used for issues: first we use simpler/faster query to get
all public issues, if this exceeds the limit, we just return the limit.
If the amount of matching results is lower than limit, we re-run more
complex search query (which includes also confidential issues).
Re-running the complex query should be fast enough in such case because the
amount of matching issues is lower than limit.

Because exact total_count is now limited, this patch also switches to
to "prev/next" pagination.

Related #40540
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Search query is especially slow if a user searches a generic string
which matches many records, in such case search can take tens of
seconds or time out. To speed up the search query, we search only for
first 1000 records, if there is &gt;1000 matching records we just display
"1000+" instead of precise total count supposing that with such amount
the exact count is not so important for the user.

Because for issues even limited search was not fast enough, 2-phase
approach is used for issues: first we use simpler/faster query to get
all public issues, if this exceeds the limit, we just return the limit.
If the amount of matching results is lower than limit, we re-run more
complex search query (which includes also confidential issues).
Re-running the complex query should be fast enough in such case because the
amount of matching issues is lower than limit.

Because exact total_count is now limited, this patch also switches to
to "prev/next" pagination.

Related #40540
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '42206-permit-password-for-git-param' into 'master'</title>
<updated>2018-01-22T08:31:09+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2018-01-22T08:31:09+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=63dbcd24836b4b1da3f7c1d61851b6603a4c4461'/>
<id>63dbcd24836b4b1da3f7c1d61851b6603a4c4461</id>
<content type='text'>
Resolve "Password authentication enabled for Git over HTTP(S) can not be disabled via UI"

Closes #42206

See merge request gitlab-org/gitlab-ce!16577</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Password authentication enabled for Git over HTTP(S) can not be disabled via UI"

Closes #42206

See merge request gitlab-org/gitlab-ce!16577</pre>
</div>
</content>
</entry>
<entry>
<title>Permits 'password_authentication_enabled_for_git' parameter for ApplicationSettingsController</title>
<updated>2018-01-19T12:04:45+00:00</updated>
<author>
<name>Mark Fletcher</name>
<email>mark@gitlab.com</email>
</author>
<published>2018-01-19T12:04:45+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6dcba97c83acfde801db0d51a3911d58f8f5e45a'/>
<id>6dcba97c83acfde801db0d51a3911d58f8f5e45a</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 '41532-email-reason' into 'master'</title>
<updated>2018-01-19T11:01:46+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2018-01-19T11:01:46+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e4952f1703f6a5ad7d2ad4813dc6ccbee8daeaf9'/>
<id>e4952f1703f6a5ad7d2ad4813dc6ccbee8daeaf9</id>
<content type='text'>
Show why a notification email was sent

Closes #41532 and #1366

See merge request gitlab-org/gitlab-ce!16160</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Show why a notification email was sent

Closes #41532 and #1366

See merge request gitlab-org/gitlab-ce!16160</pre>
</div>
</content>
</entry>
<entry>
<title>WebIDE: Fix Commit bugs</title>
<updated>2018-01-19T09:38:34+00:00</updated>
<author>
<name>Tim Zallmann</name>
<email>tzallmann@gitlab.com</email>
</author>
<published>2018-01-19T09:38:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e79db43d2cf269beec700353e776e92b15ac9af9'/>
<id>e79db43d2cf269beec700353e776e92b15ac9af9</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 '41247-timestamp' into 'master'</title>
<updated>2018-01-18T23:05:28+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2018-01-18T23:05:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=def2f1299512ce43370aa5b727a3d7f4733adf96'/>
<id>def2f1299512ce43370aa5b727a3d7f4733adf96</id>
<content type='text'>
Use last_edited_at instead of updated_at for displaying issuable last change

Closes #41247

See merge request gitlab-org/gitlab-ce!16406</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use last_edited_at instead of updated_at for displaying issuable last change

Closes #41247

See merge request gitlab-org/gitlab-ce!16406</pre>
</div>
</content>
</entry>
</feed>
