summaryrefslogtreecommitdiff
path: root/doc/api
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch ↵Achilleas Pipinellis2019-08-211-1/+1
|\ | | | | | | | | | | | | 'update-api-docs-remove-incorrect-group-vulnerabilities-reference' into 'master' Update api_resources docs - remove incorrect group vulnerabilities reference See merge request gitlab-org/gitlab-ce!31979
| * Update api_resources docs - remove incorrect group vulnerabilities referenceupdate-api-docs-remove-incorrect-group-vulnerabilities-referenceLucas Charles2019-08-191-1/+1
| |
* | Merge branch 'docs-fix-soft-deletion' into 'master'Evan Read2019-08-214-4/+4
|\ \ | | | | | | | | | | | | Fix outdated references to soft deletion See merge request gitlab-org/gitlab-ce!31982
| * | Fix outdated references to soft deletiondocs-fix-soft-deletionMarkus Koller2019-08-194-4/+4
| |/ | | | | | | | | | | We stopped using soft deletion for issues and merge requests in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/15789, and for boards we apparently never used it.
* | Merge branch 'sh-fix-issues-api-gitaly-nplusone' into 'master'Sean McGivern2019-08-201-2/+0
|\ \ | |/ |/| | | | | | | | | Fix Gitaly N+1 calls with listing issues/MRs via API Closes #66202 See merge request gitlab-org/gitlab-ce!31938
| * Fix Gitaly N+1 calls with listing issues/MRs via APIsh-fix-issues-api-gitaly-nplusoneStan Hu2019-08-171-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In GitLab 9.0, https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9661 removed the `subscribed` flag from the API when the user requested a list of issues or merge requests since calculating this value triggers extensive Markdown processing. In GitLab 12.0 via a4fbf39e, we accidentally reintroduced this performance regression by changing `IssueBasic` to `Issue` in `entities.rb`. This showed up as a Gitaly N+1 issue since the Markdown processing would attempt to extract a commit if it detected a regex that matched a commit. We restore the prior behavior by once again removing the `subscribed` flag for the bulk list of issues and merge requests and add a test to ensure they aren't reintroduced. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66202
* | Doc: add project approval rule endpointsMark Chao2019-08-191-56/+238
| |
* | add GitLab CI job token API authentication sectionBen Bodenmiller2019-08-181-1/+10
|/
* Update/expand docs for the Dependency ListMark Florian2019-08-151-1/+1
| | | | | | | | | These changes align the docs with the features introduced in [1]. See also the [issue tracking the documentation changes][2]. [1]: https://gitlab.com/gitlab-org/gitlab-ee/issues/10077 [2]: https://gitlab.com/gitlab-org/gitlab-ee/issues/12986
* Migrates Snowplow backend from EE to CEJeremy Jackson2019-08-141-0/+4
| | | | | This introduces several changes, but these are all just ported from the EE project.
* Fix Geo Node API documentationce-10586-add-flag-to-object-storage-migrationGabriel Mazetto2019-08-131-20/+55
| | | | Included missing fields, removed non existinting ones, improved examples
* Merge branch 'ce-docker_image_replication-ui-3-3' into 'master'Douglas Barbosa Alexandre2019-08-131-0/+6
|\ | | | | | | | | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14599 See merge request gitlab-org/gitlab-ce!31573
| * Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14599Valery Sizov2019-08-131-0/+6
| | | | | | | | Part of Docker Regsitry Replication feature for Geo
* | Merge branch 'patch-73' into 'master'Marcia Ramos2019-08-131-5/+5
|\ \ | |/ |/| | | | | Update links.md to give more consistency with the rest of the documentation See merge request gitlab-org/gitlab-ce!31693
| * Update links.md to give more consistency with the rest of the documentationAlexis Sánchez2019-08-101-5/+5
| |
* | Make section headings consistentEvan Read2019-08-121-2/+2
|/
* Merge branch 'ce-docker_image_replication_node_status' into 'master'Douglas Barbosa Alexandre2019-08-101-0/+12
|\ | | | | | | | | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14943 See merge request gitlab-org/gitlab-ce!31406
| * Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14943ce-docker_image_replication_node_statusValery Sizov2019-08-071-0/+12
| | | | | | | | Docker Registry Replication
* | Merge branch '39217-remove-kubernetes-service-integration' into 'master'James Lopez2019-08-091-38/+0
|\ \ | | | | | | | | | | | | Remove KubernetesService integration See merge request gitlab-org/gitlab-ce!31365
| * | Final removal of KubernetesService39217-remove-kubernetes-service-integrationTiger2019-08-081-38/+0
| |/ | | | | | | | | | | Creating new records has been disabled, and all existing records been migrated to clusters as of https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/28534
* | Merge branch 'speed-up-labels-api' into 'master'Rémy Coutable2019-08-092-8/+10
|\ \ | | | | | | | | | | | | Remove label issue and MR counts from default API responses See merge request gitlab-org/gitlab-ce!31543
| * | Remove label issue and MR counts from default API responsesspeed-up-labels-apiSean McGivern2019-08-082-8/+10
| | | | | | | | | | | | | | | | | | | | | These counts significantly increase the load time for these requests. Users can now opt in to receiving the counts by setting `with_counts=true` in requests. This is a breaking change, but hopefully a fairly minor one.
* | | Bring scoped environment variables to coreHordur Freyr Yngvason2019-08-081-2/+2
| | | | | | | | | | | | As decided in https://gitlab.com/gitlab-org/gitlab-ce/issues/53593
* | | Merge deploy keys example to deploy keys API docsAchilleas Pipinellis2019-08-082-28/+33
| | | | | | | | | | | | No reason to keep them separate.
* | | Merge branch '20137-starrers' into 'master'Stan Hu2019-08-081-0/+233
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add possibilty to view starrers ("stargazers") of a repository & any user's starred repositories Closes #20137 See merge request gitlab-org/gitlab-ce!24690
| * | | Address reviewer commentsCamil Staps2019-08-071-17/+23
| | | |
| * | | Expose time since starring on project/:id/starrers API endpoint; exclude ↵Camil Staps2019-08-071-14/+20
| | | | | | | | | | | | | | | | private profiles here as well
| * | | Add documentation and changelog for !24690Camil Staps2019-08-071-0/+221
| | |/ | |/|
* | | Merge branch 'tpresa-expose-reject-unsigned-commits' into 'master'Ash McKenzie2019-08-081-3/+7
|\ \ \ | | | | | | | | | | | | | | | | Add docs for reject_unsigned_commits (premium only) See merge request gitlab-org/gitlab-ce!31113
| * | | Updating description of the optiontpresa-expose-reject-unsigned-commitsThiago Presa2019-08-071-1/+1
| | | |
| * | | Add docs for reject_unsigned_commits (premium only)Thiago Presa2019-08-071-3/+7
| | | |
* | | | Split api resources into it's own docMarcel Amirault2019-08-082-143/+148
| |/ / |/| | | | | | | | | | | Move the api resources section from the api readme to it's own file, and adjust/link accordingly
* | | Compress images with pngquantAchilleas Pipinellis2019-08-071-0/+0
| | |
* | | Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65499Russell Dickenson2019-08-071-2/+2
|/ /
* | Add committer approval API attributejramsay/committer-approval-apiJames Ramsay2019-08-061-8/+10
|/ | | | | | | Merge Requests Approvals can be restricted to prevent the merge request author or merge request committers from self approving. The author restriction is already available in the API, but the committer restriction was not.
* Add group level container repository endpointsSteve Abrams2019-08-051-3/+74
| | | | | | | API endpoints for requesting container repositories and container repositories with their tag information are enabled for users that want to specify the group containing the repository rather than the specific project.
* Merge branch 'georgekoltsov/55474-outbound-setting-system-hooks' into 'master'Rémy Coutable2019-08-051-3/+11
|\ | | | | | | | | Add outbound setting for system hooks See merge request gitlab-org/gitlab-ce!31177
| * Add backwards compatibility for legacy settingGeorge Koltsov2019-08-021-2/+9
| | | | | | | | | | `allow_local_requests_for_hooks_and_services` was renamed to `allow_local_requests_for_web_hooks_and_services`.
| * Add outbound requests setting for system hooksGeorge Koltsov2019-08-021-1/+2
| | | | | | | | | | | | | | This MR adds new application setting to network section `allow_local_requests_from_system_hooks`. Prior to this change system hooks were allowed to do local network requests by default and we are adding an ability for admins to control it.
* | Documentation - Services slackJeffrey Cafferata2019-08-021-9/+15
|/
* Add rate limit docsMichael Kozono2019-08-021-0/+7
|
* Merge branch 'patch-30' into 'master'Evan Read2019-08-011-3/+3
|\ | | | | | | | | Docs: Jobs: use curl --location to follow redirects See merge request gitlab-org/gitlab-ce!31244
| * Jobs: use curl --location to follow redirectsDamian Nowak2019-07-291-3/+3
| | | | | | Required to fetch artifacts/logs if AWS is used as the storage backend.
* | Add support page link in help menuDiego Louzán2019-07-301-1/+1
| | | | | | | | Creates a new item in help dropdown to show configured support page link
* | Merge branch 'docs-OAuth2-scopes' into 'master'Evan Read2019-07-301-6/+12
|\ \ | | | | | | | | | | | | | | | | | | Add requesting particular OAuth2 scopes details Closes #65200 See merge request gitlab-org/gitlab-ce!31215
| * | Add requesting particular OAuth2 scopes detailsdocs-OAuth2-scopesBen Bodenmiller2019-07-271-6/+12
| | |
* | | Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqRobert Speicher2019-07-291-29/+0
|\ \ \ | |_|/ |/| |
| * | Merge branch 'security-remove-take-trigger-ownership-feature' into 'master'GitLab Release Tools Bot2019-07-261-29/+0
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Drop feature to take ownership of a trigger token Closes #2868 See merge request gitlab/gitlabhq!3198
| | * | Drop feature to take ownership of a trigger tokenFabio Pitino2019-07-101-29/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing API and frontend interactions that allowed users to take ownership of a trigger token. Removed mentions from the documentation.
* | | | Merge branch 'add-git-blame-api' into 'master'Nick Thomas2019-07-291-0/+69
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | Expose git blame in api Closes #51345 See merge request gitlab-org/gitlab-ce!30675