<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app, branch epics-e2e-tests</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>Adding qa selector</title>
<updated>2018-09-28T10:08:05+00:00</updated>
<author>
<name>at.ramya</name>
<email>rauthappan@gitlab.com</email>
</author>
<published>2018-09-28T10:08:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0745fed6e8f6d631ee175728c4a27c40bdc8926a'/>
<id>0745fed6e8f6d631ee175728c4a27c40bdc8926a</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 'master' into epics-e2e-tests</title>
<updated>2018-09-28T10:03:21+00:00</updated>
<author>
<name>at.ramya</name>
<email>rauthappan@gitlab.com</email>
</author>
<published>2018-09-28T10:03:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7f312ae0f1903996054c00a5243a45e09af64ab5'/>
<id>7f312ae0f1903996054c00a5243a45e09af64ab5</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 'fix_css-badge-class' into 'master'</title>
<updated>2018-09-28T08:03:26+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2018-09-28T08:03:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bfa94a5fa2542f8822c8aba83b2b903fcced0ba4'/>
<id>bfa94a5fa2542f8822c8aba83b2b903fcced0ba4</id>
<content type='text'>
Change class .label to .badge for 2FA label in group members view

See merge request gitlab-org/gitlab-ce!21759</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change class .label to .badge for 2FA label in group members view

See merge request gitlab-org/gitlab-ce!21759</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'mk/asymmetric-exists-cache' into 'master'</title>
<updated>2018-09-28T02:24:16+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2018-09-28T02:24:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b0b5346d65b24bad188f3ef4a8f282ac07bf1136'/>
<id>b0b5346d65b24bad188f3ef4a8f282ac07bf1136</id>
<content type='text'>
Resolve "Geo: Does not mark repositories as missing on primary due to stale cache"

Closes #50211 and #44044

See merge request gitlab-org/gitlab-ce!21789</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Geo: Does not mark repositories as missing on primary due to stale cache"

Closes #50211 and #44044

See merge request gitlab-org/gitlab-ce!21789</pre>
</div>
</content>
</entry>
<entry>
<title>Cache `Repository#exists?` false in RequestStore</title>
<updated>2018-09-28T01:22:37+00:00</updated>
<author>
<name>Michael Kozono</name>
<email>mkozono@gmail.com</email>
</author>
<published>2018-09-25T17:12:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3640292bf2ef822c8e2394fa2397b1b7d04e9891'/>
<id>3640292bf2ef822c8e2394fa2397b1b7d04e9891</id>
<content type='text'>
* Only truthy values are cached in Redis.
* All values are cached in RequestStore and in an instance variable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Only truthy values are cached in Redis.
* All values are cached in RequestStore and in an instance variable.
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract `Repository.memoize_method` method</title>
<updated>2018-09-27T22:16:09+00:00</updated>
<author>
<name>Michael Kozono</name>
<email>mkozono@gmail.com</email>
</author>
<published>2018-09-25T17:07:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d9c4ebc5a0b2e911f17865e482de1dfcc2189ac3'/>
<id>d9c4ebc5a0b2e911f17865e482de1dfcc2189ac3</id>
<content type='text'>
And reuse `Gitlab::Utils::StrongMemoize`.

There is a subtle behavior change required to reuse StrongMemoize in
this case. The early fallback check now occurs *before* reading the
memoized value instead of after.

I think this is fine since a memoized value should only exist if
`exists?` is also already memoized as `true`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And reuse `Gitlab::Utils::StrongMemoize`.

There is a subtle behavior change required to reuse StrongMemoize in
this case. The early fallback check now occurs *before* reading the
memoized value instead of after.

I think this is fine since a memoized value should only exist if
`exists?` is also already memoized as `true`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Extend reports to support security features</title>
<updated>2018-09-27T21:15:08+00:00</updated>
<author>
<name>Olivier Gonzalez</name>
<email>ogonzalez@gitlab.com</email>
</author>
<published>2018-09-27T21:15:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=cfedc0a9f4732afbf39fdf96e9b6a8598faeba5f'/>
<id>cfedc0a9f4732afbf39fdf96e9b6a8598faeba5f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix blue, orange, and red colors</title>
<updated>2018-09-27T21:08:16+00:00</updated>
<author>
<name>Pedro Moreira da Silva</name>
<email>hi@pedroms.com</email>
</author>
<published>2018-09-27T21:08:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8c677c2d8fa86c3d216e29cdf1cf356a4be36358'/>
<id>8c677c2d8fa86c3d216e29cdf1cf356a4be36358</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 'group-weight-icon-and-text' into 'master'</title>
<updated>2018-09-27T17:44:27+00:00</updated>
<author>
<name>Annabel Dunstone Gray</name>
<email>annabel.m.gray@gmail.com</email>
</author>
<published>2018-09-27T17:44:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b138e9243f45dcfc6ced2f821b0eb802dc3ba5f6'/>
<id>b138e9243f45dcfc6ced2f821b0eb802dc3ba5f6</id>
<content type='text'>
Add right margin to board-card-number

See merge request gitlab-org/gitlab-ce!21939</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add right margin to board-card-number

See merge request gitlab-org/gitlab-ce!21939</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'more-table-widths' into 'master'</title>
<updated>2018-09-27T17:40:51+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2018-09-27T17:40:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=81e9c1ff41adcbee1429e14047815eea707b29bd'/>
<id>81e9c1ff41adcbee1429e14047815eea707b29bd</id>
<content type='text'>
Adds an extra width to the responsive tables

See merge request gitlab-org/gitlab-ce!21928</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds an extra width to the responsive tables

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