<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/config, branch app-differences</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>Add "Starred projects" tab to user overview</title>
<updated>2019-08-07T18:49:14+00:00</updated>
<author>
<name>Camil Staps</name>
<email>info@camilstaps.nl</email>
</author>
<published>2019-01-27T10:18:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=382826855c77986823691d74e1e6b47ad715d652'/>
<id>382826855c77986823691d74e1e6b47ad715d652</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add /starrers view for projects</title>
<updated>2019-08-07T18:49:13+00:00</updated>
<author>
<name>Camil Staps</name>
<email>info@camilstaps.nl</email>
</author>
<published>2019-01-25T20:53:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=59976090b52d401dc4d23b726b2168186524f269'/>
<id>59976090b52d401dc4d23b726b2168186524f269</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 'sh-support-csp-nonce' into 'master'</title>
<updated>2019-08-07T05:03:05+00:00</updated>
<author>
<name>Ash McKenzie</name>
<email>amckenzie@gitlab.com</email>
</author>
<published>2019-08-07T05:03:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6cafa7002738f33c212b9f72d9b0f66b386c6faf'/>
<id>6cafa7002738f33c212b9f72d9b0f66b386c6faf</id>
<content type='text'>
Add support for Content-Security-Policy

Closes #65330

See merge request gitlab-org/gitlab-ce!31402</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support for Content-Security-Policy

Closes #65330

See merge request gitlab-org/gitlab-ce!31402</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for Content-Security-Policy</title>
<updated>2019-08-07T02:37:31+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-08-06T06:14:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5fbbd3dd6e965f76ecf1767373bddd236a78a4be'/>
<id>5fbbd3dd6e965f76ecf1767373bddd236a78a4be</id>
<content type='text'>
A nonce-based Content-Security-Policy thwarts XSS attacks by allowing
inline JavaScript to execute if the script nonce matches the header
value. Rails 5.2 supports nonce-based Content-Security-Policy headers,
so provide configuration to enable this and make it work.

To support this, we need to change all `:javascript` HAML filters to the
following form:

```
= javascript_tag nonce: true do
  :plain
    ...
```

We use `%script` throughout our HAML to store JSON and other text, but
since this doesn't execute, browsers don't appear to block this content
from being used and require the nonce value to be present.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A nonce-based Content-Security-Policy thwarts XSS attacks by allowing
inline JavaScript to execute if the script nonce matches the header
value. Rails 5.2 supports nonce-based Content-Security-Policy headers,
so provide configuration to enable this and make it work.

To support this, we need to change all `:javascript` HAML filters to the
following form:

```
= javascript_tag nonce: true do
  :plain
    ...
```

We use `%script` throughout our HAML to store JSON and other text, but
since this doesn't execute, browsers don't appear to block this content
from being used and require the nonce value to be present.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove GC metrics from performance bar</title>
<updated>2019-08-06T19:42:46+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2019-08-06T18:05:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=66963aad70abba7a87512070047244eefefeb563'/>
<id>66963aad70abba7a87512070047244eefefeb563</id>
<content type='text'>
These were disabled in production mode, but that also broke the rest of
the performance bar. As they were only enabled in development mode, we
can just remove them for now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These were disabled in production mode, but that also broke the rest of
the performance bar. As they were only enabled in development mode, we
can just remove them for now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Rails 5.2 Redis caching store</title>
<updated>2019-08-05T22:52:52+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-07-19T20:58:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b5771bccc6031c3adbdee31064f1c0c981ab73d4'/>
<id>b5771bccc6031c3adbdee31064f1c0c981ab73d4</id>
<content type='text'>
This is the first step in providing a fault-tolerant and distributed
Redis caching store. We disable compression to avoid introducing a
change that could have an adverse effect in production.

Note that we won't be able to take advantage of the fault-tolerance and
distributed features yet until we solve
https://gitlab.com/gitlab-org/gitlab-ce/issues/64829.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64794
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the first step in providing a fault-tolerant and distributed
Redis caching store. We disable compression to avoid introducing a
change that could have an adverse effect in production.

Note that we won't be able to take advantage of the fault-tolerance and
distributed features yet until we solve
https://gitlab.com/gitlab-org/gitlab-ce/issues/64829.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64794
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix-design-management-router-ce' into 'master'</title>
<updated>2019-08-05T08:37:32+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-08-05T08:37:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1ca5e1186d4bfeaa61b065f23419e640e4e52af3'/>
<id>1ca5e1186d4bfeaa61b065f23419e640e4e52af3</id>
<content type='text'>
CE Backport for gitlab-ee!14741 (Fix design management router)

See merge request gitlab-org/gitlab-ce!31090</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CE Backport for gitlab-ee!14741 (Fix design management router)

See merge request gitlab-org/gitlab-ce!31090</pre>
</div>
</content>
</entry>
<entry>
<title>CE-backport of designs route</title>
<updated>2019-08-05T04:36:44+00:00</updated>
<author>
<name>Luke Duncalfe</name>
<email>lduncalfe@eml.cc</email>
</author>
<published>2019-07-18T04:18:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ef1237014adf7f36a0bdfe496398f463c66590dd'/>
<id>ef1237014adf7f36a0bdfe496398f463c66590dd</id>
<content type='text'>
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14741
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14741
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge branch 'backport-fix-remaining-prepend-lines' into 'master'"</title>
<updated>2019-08-05T04:02:08+00:00</updated>
<author>
<name>Mark Lapierre</name>
<email>mlapierre@gitlab.com</email>
</author>
<published>2019-08-05T04:02:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8ff68917b8b78dbf34785bda370692ac8b97c414'/>
<id>8ff68917b8b78dbf34785bda370692ac8b97c414</id>
<content type='text'>
This reverts merge request !31379</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts merge request !31379</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'backport-fix-remaining-prepend-lines' into 'master'</title>
<updated>2019-08-02T16:25:30+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2019-08-02T16:25:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8374dd565d44e5f97c179dcb4cf03c7d3ea69363'/>
<id>8374dd565d44e5f97c179dcb4cf03c7d3ea69363</id>
<content type='text'>
Support X_if_ee methods for QA tests

See merge request gitlab-org/gitlab-ce!31379</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Support X_if_ee methods for QA tests

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