<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/helpers, branch instance_level_clusters</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>Check instance cluster feature at policy level</title>
<updated>2019-05-06T20:37:04+00:00</updated>
<author>
<name>James Fargher</name>
<email>proglottis@gmail.com</email>
</author>
<published>2019-05-02T01:07:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=beb66cfcba26d0796644ccce2dfac8c65a808144'/>
<id>beb66cfcba26d0796644ccce2dfac8c65a808144</id>
<content type='text'>
Try to simplify feature flag checks by using policies
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Try to simplify feature flag checks by using policies
</pre>
</div>
</content>
</entry>
<entry>
<title>Show health graphs on group-level</title>
<updated>2019-05-06T16:24:14+00:00</updated>
<author>
<name>Peter Leitzen</name>
<email>pleitzen@gitlab.com</email>
</author>
<published>2019-05-06T16:24:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c8a530a319d6e2550f41cbf61203e6b2712dc7e0'/>
<id>c8a530a319d6e2550f41cbf61203e6b2712dc7e0</id>
<content type='text'>
Tweak cluster helper and refactor its specs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tweak cluster helper and refactor its specs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement support for CI variables of type file</title>
<updated>2019-05-06T13:11:42+00:00</updated>
<author>
<name>Krasimir Angelov</name>
<email>kangelov@gitlab.com</email>
</author>
<published>2019-05-06T13:11:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=85609c117e2b96a786204069669c66d36d971733'/>
<id>85609c117e2b96a786204069669c66d36d971733</id>
<content type='text'>
Add env_var and file as supported types for CI variables. Variables of
type file expose to users existing gitlab-runner behaviour - save
variable value into a temp file and set the path to this file in an ENV
var named after the variable key.

Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add env_var and file as supported types for CI variables. Variables of
type file expose to users existing gitlab-runner behaviour - save
variable value into a temp file and set the path to this file in an ENV
var named after the variable key.

Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
</pre>
</div>
</content>
</entry>
<entry>
<title>Run rubocop -a on CE files</title>
<updated>2019-05-05T10:24:28+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-05-05T10:19:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f93b2e02a56a3b1f3041119e8302d43aeafc8284'/>
<id>f93b2e02a56a3b1f3041119e8302d43aeafc8284</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "Sort by due date and popularity in both directions"</title>
<updated>2019-05-04T16:16:47+00:00</updated>
<author>
<name>Nermin Vehabovic</name>
<email>nermin.vehabovic90@gmail.com</email>
</author>
<published>2019-05-04T16:16:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0a89c08c055576a192754e9bce368231e2d0d13c'/>
<id>0a89c08c055576a192754e9bce368231e2d0d13c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow guests users to access project releases</title>
<updated>2019-05-03T13:29:20+00:00</updated>
<author>
<name>Krasimir Angelov</name>
<email>kangelov@gitlab.com</email>
</author>
<published>2019-05-03T13:29:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=241ba4be7989547b3bc3f9a1a20b8dee7a4e9a0c'/>
<id>241ba4be7989547b3bc3f9a1a20b8dee7a4e9a0c</id>
<content type='text'>
This is step one of resolving
https://gitlab.com/gitlab-org/gitlab-ce/issues/56838.

Here is what changed:
- Revert the security fix from bdee9e8412d.
- Do not leak repository information (tag name, commit) to guests in API
responses.
- Do not include links to source code in API responses for users that do
not have download_code access.
- Show Releases in sidebar for guests.
- Do not display links to source code under Assets for users that do not
have download_code access.

GET ':id/releases/:tag_name' still do not allow guests to access
releases. This is to prevent guessing tag existence.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is step one of resolving
https://gitlab.com/gitlab-org/gitlab-ce/issues/56838.

Here is what changed:
- Revert the security fix from bdee9e8412d.
- Do not leak repository information (tag name, commit) to guests in API
responses.
- Do not include links to source code in API responses for users that do
not have download_code access.
- Show Releases in sidebar for guests.
- Do not display links to source code under Assets for users that do not
have download_code access.

GET ':id/releases/:tag_name' still do not allow guests to access
releases. This is to prevent guessing tag existence.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'remove-comment-personal-snippet-permission' into 'master'</title>
<updated>2019-05-02T16:31:05+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2019-05-02T16:31:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d753336eb56bcd8485fd2774d54ddcba9161f5e3'/>
<id>d753336eb56bcd8485fd2774d54ddcba9161f5e3</id>
<content type='text'>
Remove the `comment_personal_snippet` permission

Closes #56688

See merge request gitlab-org/gitlab-ce!27999</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove the `comment_personal_snippet` permission

Closes #56688

See merge request gitlab-org/gitlab-ce!27999</pre>
</div>
</content>
</entry>
<entry>
<title>Add packages_size to ProjectStatistics</title>
<updated>2019-05-02T16:04:15+00:00</updated>
<author>
<name>Alessio Caiazza</name>
<email>acaiazza@gitlab.com</email>
</author>
<published>2019-05-02T16:04:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d9b383cc3681c4ae6fe0dbef20a3d1089e48e139'/>
<id>d9b383cc3681c4ae6fe0dbef20a3d1089e48e139</id>
<content type='text'>
This new field will allow to keep track of the storage used by the
packages features, it provides also aggregation at namespace level.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This new field will allow to keep track of the storage used by the
packages features, it provides also aggregation at namespace level.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '59898-fix-the-following-style-lint-errors-and-warnings-for-app-assets-stylesheets-pages-commits-scss' into 'master'</title>
<updated>2019-05-02T10:55:59+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2019-05-02T10:55:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a8347c22d0e33ab626ee4c3b4b9acffa69f7cf46'/>
<id>a8347c22d0e33ab626ee4c3b4b9acffa69f7cf46</id>
<content type='text'>
Resolve "Fix the following style-lint errors and warnings for `app/assets/stylesheets/pages/commits.scss`"

Closes #59898

See merge request gitlab-org/gitlab-ce!27647</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Fix the following style-lint errors and warnings for `app/assets/stylesheets/pages/commits.scss`"

Closes #59898

See merge request gitlab-org/gitlab-ce!27647</pre>
</div>
</content>
</entry>
<entry>
<title>Remove the `comment_personal_snippet` permission</title>
<updated>2019-05-02T10:13:42+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2019-05-02T10:13:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c1892f6c9000cacafae4f6c8992ba6c1128c8c95'/>
<id>c1892f6c9000cacafae4f6c8992ba6c1128c8c95</id>
<content type='text'>
This is now entirely handled by `create_note`:

1. Project snippets prevent `create_note`.
2. Uploads already only support routing for personal snippets.

This simplifies some policies and access checks, too!
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is now entirely handled by `create_note`:

1. Project snippets prevent `create_note`.
2. Uploads already only support routing for personal snippets.

This simplifies some policies and access checks, too!
</pre>
</div>
</content>
</entry>
</feed>
