<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/doc/api, branch docs-sethgitlab-featureflags</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>Add label_id parameter to label API for PUT and DELETE</title>
<updated>2019-08-23T17:45:42+00:00</updated>
<author>
<name>Patrick Derichs</name>
<email>pderichs@gitlab.com</email>
</author>
<published>2019-08-23T17:45:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f1e24d4d31776f675cd4a7cdc21ddc9d496400cf'/>
<id>f1e24d4d31776f675cd4a7cdc21ddc9d496400cf</id>
<content type='text'>
Add specs for new parameter and updated documentation as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add specs for new parameter and updated documentation as well.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '57402-upate-issues-list-sort-options-ce' into 'master'</title>
<updated>2019-08-23T14:06:40+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2019-08-23T14:06:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2abeb0c358fbf5ae510513c2e218a35921822379'/>
<id>2abeb0c358fbf5ae510513c2e218a35921822379</id>
<content type='text'>
CE: Update sort options for issues list

See merge request gitlab-org/gitlab-ce!31849</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CE: Update sort options for issues list

See merge request gitlab-org/gitlab-ce!31849</pre>
</div>
</content>
</entry>
<entry>
<title>Update dependencies api doc</title>
<updated>2019-08-23T11:34:05+00:00</updated>
<author>
<name>Tetiana Chupryna</name>
<email>tchupryna@gitlab.com</email>
</author>
<published>2019-08-23T11:34:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6642d5471d65086d5a28f55205dd350bc1244aff'/>
<id>6642d5471d65086d5a28f55205dd350bc1244aff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update capitalization in admin, api, others</title>
<updated>2019-08-23T08:50:24+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>mamirault@gitlab.com</email>
</author>
<published>2019-08-23T08:50:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7e4a6f57a98218828b2f4438d691a4b4cb8f0fce'/>
<id>7e4a6f57a98218828b2f4438d691a4b4cb8f0fce</id>
<content type='text'>
Update capitalization in /administration, /api, /ci
and /customization
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update capitalization in /administration, /api, /ci
and /customization
</pre>
</div>
</content>
</entry>
<entry>
<title>Update sort options for issues list</title>
<updated>2019-08-23T08:32:15+00:00</updated>
<author>
<name>Alexandru Croitor</name>
<email>acroitor@gitlab.com</email>
</author>
<published>2019-08-15T10:56:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f5b855546ed9b2c304b72e349af3f23c4eca549d'/>
<id>f5b855546ed9b2c304b72e349af3f23c4eca549d</id>
<content type='text'>
Increase sort options for issues list from updated_at and create_at,
to include more options close to what is required in actual issue list
UI.

This helps us to use REST API for issues list with sorting capabilities

https://gitlab.com/gitlab-org/gitlab-ce/issues/57402
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Increase sort options for issues list from updated_at and create_at,
to include more options close to what is required in actual issue list
UI.

This helps us to use REST API for issues list with sorting capabilities

https://gitlab.com/gitlab-org/gitlab-ce/issues/57402
</pre>
</div>
</content>
</entry>
<entry>
<title>Expose namespace storage statistics with GraphQL</title>
<updated>2019-08-22T22:08:28+00:00</updated>
<author>
<name>Alessio Caiazza</name>
<email>acaiazza@gitlab.com</email>
</author>
<published>2019-08-22T22:08:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=606a1d2d31aff69ddabe7e3794f61f3e778da3e8'/>
<id>606a1d2d31aff69ddabe7e3794f61f3e778da3e8</id>
<content type='text'>
Root namespaces have storage statistics.
This commit allows namespace owners to get those stats via GraphQL
queries like the following one

{
  namespace(fullPath: "a_namespace_path") {
    rootStorageStatistics {
      storageSize
      repositorySize
      lfsObjectsSize
      buildArtifactsSize
      packagesSize
      wikiSize
    }
  }
}
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Root namespaces have storage statistics.
This commit allows namespace owners to get those stats via GraphQL
queries like the following one

{
  namespace(fullPath: "a_namespace_path") {
    rootStorageStatistics {
      storageSize
      repositorySize
      lfsObjectsSize
      buildArtifactsSize
      packagesSize
      wikiSize
    }
  }
}
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `searchBy` helper &amp; `SidebarItemEpicsSelect`</title>
<updated>2019-08-22T12:28:44+00:00</updated>
<author>
<name>Kushal Pandya</name>
<email>kushalspandya@gmail.com</email>
</author>
<published>2019-08-15T16:19:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6044b3ed1eb81cb55d1b978e76f1c1f3ee4e3a70'/>
<id>6044b3ed1eb81cb55d1b978e76f1c1f3ee4e3a70</id>
<content type='text'>
- Adds `searchBy` util in common utils
- Adds placeholder `SidebarItemEpicsSelect`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Adds `searchBy` util in common utils
- Adds placeholder `SidebarItemEpicsSelect`
</pre>
</div>
</content>
</entry>
<entry>
<title>Update docs to pass new markdownlint</title>
<updated>2019-08-22T08:50:31+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>mamirault@gitlab.com</email>
</author>
<published>2019-08-22T08:50:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d2cb8f785edb6fbc9ce00c39d485423d45c0c219'/>
<id>d2cb8f785edb6fbc9ce00c39d485423d45c0c219</id>
<content type='text'>
Deletes extra spaces and line, makes lists consistent, and
fixes links.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Deletes extra spaces and line, makes lists consistent, and
fixes links.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'ee-2502-refactor-ee-app-assets-javascripts-approvals-components-approvers_select-vue-to-remove-approverusers' into 'master'</title>
<updated>2019-08-22T07:59:22+00:00</updated>
<author>
<name>Kushal Pandya</name>
<email>kushalspandya@gmail.com</email>
</author>
<published>2019-08-22T07:59:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7b5708d1d944547dfea9bc8b6b8e1c6c6e22901b'/>
<id>7b5708d1d944547dfea9bc8b6b8e1c6c6e22901b</id>
<content type='text'>
Add a new method to `Api.js`: `projectUsers`

See merge request gitlab-org/gitlab-ce!31801</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a new method to `Api.js`: `projectUsers`

See merge request gitlab-org/gitlab-ce!31801</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'update-api-docs-remove-incorrect-group-vulnerabilities-reference' into 'master'</title>
<updated>2019-08-21T09:45:48+00:00</updated>
<author>
<name>Achilleas Pipinellis</name>
<email>axil@gitlab.com</email>
</author>
<published>2019-08-21T09:45:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=28d11071ceebe5a6e9de38f4462b12e7640da90a'/>
<id>28d11071ceebe5a6e9de38f4462b12e7640da90a</id>
<content type='text'>
Update api_resources docs - remove incorrect group vulnerabilities reference

See merge request gitlab-org/gitlab-ce!31979</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update api_resources docs - remove incorrect group vulnerabilities reference

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