<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/controllers, branch refactor_auto_devops_enabled</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Refactor EnvironmentsController#metrics_dashboard endpoint</title>
<updated>2019-07-16T18:53:03+00:00</updated>
<author>
<name>Sarah Yasonik</name>
<email>syasonik@gitlab.com</email>
</author>
<published>2019-07-16T18:53:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c290eca1c1f59a59c052a66e06cd29aaefdb8cb0'/>
<id>c290eca1c1f59a59c052a66e06cd29aaefdb8cb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add result to MoveService#execute_multiple</title>
<updated>2019-07-16T14:18:16+00:00</updated>
<author>
<name>Patrick Derichs</name>
<email>pderichs@gitlab.com</email>
</author>
<published>2019-07-05T10:50:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1ebef4aae55adb5e17a76b92aea74467e49130bf'/>
<id>1ebef4aae55adb5e17a76b92aea74467e49130bf</id>
<content type='text'>
It adds  a hash response which includes
the count, success state and the moved
issues itself so the caller has additional
information about the result of the
process.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It adds  a hash response which includes
the count, success state and the moved
issues itself so the caller has additional
information about the result of the
process.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove auto ssl feature flags</title>
<updated>2019-07-12T16:53:44+00:00</updated>
<author>
<name>Vladimir Shushlin</name>
<email>vshushlin@gitlab.com</email>
</author>
<published>2019-07-12T16:53:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7b5936ebdad8df646cbce7a9c035da62cac7cfce'/>
<id>7b5936ebdad8df646cbce7a9c035da62cac7cfce</id>
<content type='text'>
* remove feature flag for admin settings
* remove feature flag for domain settings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* remove feature flag for admin settings
* remove feature flag for domain settings
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade to Rails 5.2</title>
<updated>2019-07-12T02:15:31+00:00</updated>
<author>
<name>Heinrich Lee Yu</name>
<email>heinrich@gitlab.com</email>
</author>
<published>2019-06-25T17:54:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=aeb67dd489b1ccc7f0ab1d702725729ab9cc3e27'/>
<id>aeb67dd489b1ccc7f0ab1d702725729ab9cc3e27</id>
<content type='text'>
Updates changed method names and fixes spec failures
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updates changed method names and fixes spec failures
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'improve-chaos-controller' into 'master'</title>
<updated>2019-07-11T19:19:02+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-07-11T19:19:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=33445cfc29d8ca4f0452844ca0ce4299dd6996ba'/>
<id>33445cfc29d8ca4f0452844ca0ce4299dd6996ba</id>
<content type='text'>
Add `db_spin` and refactor ChaosController

Closes #64425

See merge request gitlab-org/gitlab-ce!30559</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `db_spin` and refactor ChaosController

Closes #64425

See merge request gitlab-org/gitlab-ce!30559</pre>
</div>
</content>
</entry>
<entry>
<title>Add endpoint to move multiple issues</title>
<updated>2019-07-11T13:44:09+00:00</updated>
<author>
<name>Patrick Derichs</name>
<email>pderichs@gitlab.com</email>
</author>
<published>2019-07-11T13:29:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=69e02904fe1a5442cd429bfc307bb55eefedd5d6'/>
<id>69e02904fe1a5442cd429bfc307bb55eefedd5d6</id>
<content type='text'>
Add specs for new endpoint to move multiple issues.
Add changelog entry

Just check the first issue for the ability to move / update

Add specs for exceeding limits and malformed requests

Changed name of shared examples

Change title of changelog entry

Use %i instead of %w

Check permission to update issue on project instead of board

Use admin_issue permission to check for issue move ability

Changed variable name to avoid shadow issue_params method

Rename route to bulk_move

Change route definition

Check permissions for each issue

Combine methods for parameters permit check

Remove extra context

Change description of context

Check param for type Array

Add unit tests to MoveService

Use before_action for permission check

Use set instead of let!

Use let's instead of set
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add specs for new endpoint to move multiple issues.
Add changelog entry

Just check the first issue for the ability to move / update

Add specs for exceeding limits and malformed requests

Changed name of shared examples

Change title of changelog entry

Use %i instead of %w

Check permission to update issue on project instead of board

Use admin_issue permission to check for issue move ability

Changed variable name to avoid shadow issue_params method

Rename route to bulk_move

Change route definition

Check permissions for each issue

Combine methods for parameters permit check

Remove extra context

Change description of context

Check param for type Array

Add unit tests to MoveService

Use before_action for permission check

Use set instead of let!

Use let's instead of set
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `db_spin` and refactor ChaosController</title>
<updated>2019-07-11T08:38:12+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-07-10T09:43:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=56eb9f6c0ee719d06a0cccce8f815922d35b3b05'/>
<id>56eb9f6c0ee719d06a0cccce8f815922d35b3b05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for additional panel types</title>
<updated>2019-07-10T21:12:46+00:00</updated>
<author>
<name>Jose Ivan Vargas</name>
<email>jvargas@gitlab.com</email>
</author>
<published>2019-07-10T21:12:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=202a150f72cdf2793f66d80f892ee6d68d7f26ad'/>
<id>202a150f72cdf2793f66d80f892ee6d68d7f26ad</id>
<content type='text'>
This introduces the single stat chart component aside from
the area chart component
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This introduces the single stat chart component aside from
the area chart component
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'prepare-cycle-analytics-for-group-level' into 'master'</title>
<updated>2019-07-10T14:46:00+00:00</updated>
<author>
<name>Douglas Barbosa Alexandre</name>
<email>dbalexandre@gmail.com</email>
</author>
<published>2019-07-10T14:46:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b76d4fadd4be35141df659b5ab2ba99b21c79ead'/>
<id>b76d4fadd4be35141df659b5ab2ba99b21c79ead</id>
<content type='text'>
Prepare cycle analytics for group level

See merge request gitlab-org/gitlab-ce!30356</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prepare cycle analytics for group level

See merge request gitlab-org/gitlab-ce!30356</pre>
</div>
</content>
</entry>
<entry>
<title>Remove `:graphql` feature flag</title>
<updated>2019-07-09T12:45:23+00:00</updated>
<author>
<name>charlie ablett</name>
<email>cablett@gitlab.com</email>
</author>
<published>2019-07-09T12:45:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=639ab5214cb569dce70080020e3181946e5d3bf1'/>
<id>639ab5214cb569dce70080020e3181946e5d3bf1</id>
<content type='text'>
- Remove `FeatureConstrainer` call wrapping api endpoint
- Remove `Feature.enabled?(:graphql)` conditionals in back and frontend
- Modify graphql test to be graphql flag agnostic
- Remove api routing spec
- Remove frontend feature flag via `gon`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove `FeatureConstrainer` call wrapping api endpoint
- Remove `Feature.enabled?(:graphql)` conditionals in back and frontend
- Modify graphql test to be graphql flag agnostic
- Remove api routing spec
- Remove frontend feature flag via `gon`
</pre>
</div>
</content>
</entry>
</feed>
