summaryrefslogtreecommitdiff
path: root/lib/api
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '56694-mark-group-level-labels-in-label-api-as-such' into 'master'Rémy Coutable2019-02-141-0/+3
|\ | | | | | | | | | | | | Mark group-level labels in Label API as such. Closes #56694 See merge request gitlab-org/gitlab-ce!25219
| * API: Indicate if label is a project labelRobert Schilling2019-02-131-0/+3
| |
* | Revert "Merge branch '50559-add-milestone-progress-to-api' into 'master'"Stan Hu2019-02-142-7/+4
| | | | | | This reverts merge request !25173
* | Merge branch '57101-api-docs-for-hangouts-chat-service-incorrect' into 'master'Rémy Coutable2019-02-131-2/+3
|\ \ | | | | | | | | | | | | | | | | | | API: Fix docs and parameters for hangouts-chat service Closes #57101 See merge request gitlab-org/gitlab-ce!25180
| * | API: Fix docs and parameters for hangouts-chat serviceRobert Schilling2019-02-131-2/+3
| |/
* | Only require one parameter when updating a Wiki via the APIRobert Schilling2019-02-131-5/+8
| |
* | API: Expose full commit titleRobert Schilling2019-02-131-1/+2
| |
* | Add milestone progress to APIRobert Schilling2019-02-132-4/+7
| |
* | API: Expose text_color for project and group labelsRobert Schilling2019-02-121-1/+1
|/
* Remove HipChat integration from GitLabNick Thomas2019-02-081-39/+0
|
* Merge branch 'local-markdown-version' into 'master'Douglas Barbosa Alexandre2019-02-071-0/+1
|\ | | | | | | | | | | | | Add local markdown version Closes #32789 See merge request gitlab-org/gitlab-ce!24822
| * Add local markdown versionlocal-markdown-versionJan Provaznik2019-02-061-0/+1
| | | | | | | | | | | | Cached markdown version is composed both from global and local markdown version. This allows admins to bump version locally when needed (e.g. when external URL is changed).
* | Merge branch '56014-api-merge-request-squash-commit-messages' into 'master'Nick Thomas2019-02-071-0/+2
|\ \ | | | | | | | | | | | | | | | | | | API support for setting squash commit message during squash Closes #56014 See merge request gitlab-org/gitlab-ce!24784
| * | API support for squash commit message during merge56014-api-merge-request-squash-commit-messagesLuke Duncalfe2019-02-071-0/+2
| | | | | | | | | | | | | | | | | | Issues https://gitlab.com/gitlab-org/gitlab-ce/issues/47149 https://gitlab.com/gitlab-org/gitlab-ce/issues/56014
* | | Merge branch 'api-group-labels' into 'master'Sean McGivern2019-02-077-102/+236
|\ \ \ | |/ / |/| | | | | | | | | | | | | | API group labels Closes #44901 See merge request gitlab-org/gitlab-ce!21368
| * | Add documentationapi-group-labelsRobert Schilling2019-02-061-1/+1
| | |
| * | Simplify label helper and correct versionRobert Schilling2019-01-314-73/+61
| | |
| * | Factor out common label APIRobert Schilling2019-01-316-109/+129
| | |
| * | Incorporate feedback from RobertRobert Schilling2019-01-314-13/+49
| | |
| * | Correctly search for labels in parent groupsRobert Schilling2019-01-312-6/+6
| | |
| * | Factor out group labels entityRobert Schilling2019-01-314-37/+31
| | |
| * | Use proper finder helper to get existing labelsRobert Schilling2019-01-311-11/+13
| | |
| * | fix rebasingRobert Schilling2019-01-312-10/+1
| | |
| * | Replace findersRobert Schilling2019-01-312-5/+5
| | |
| * | Incorporate feedback from NickRobert Schilling2019-01-313-19/+14
| | |
| * | Add changelog, version information, frozen string literalsRobert Schilling2019-01-311-0/+6
| | |
| * | Add subscription API for the group label APIRobert Schilling2019-01-313-15/+28
| | |
| * | Add specsRobert Schilling2019-01-312-8/+10
| | |
| * | Inital API implementation for group labelsRobert Schilling2019-01-312-0/+87
| | |
* | | Merge branch 'security-makrdown-release-description-vulnerability' into 'master'Yorick Peterse2019-02-061-1/+3
|\ \ \ | |_|/ |/| | | | | | | | [master] Markdown of release notes leaks confidential issue titles and MR titles to any users See merge request gitlab/gitlabhq!2869
| * | Fix Markdown of release notesShinya Maeda2019-01-301-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was leaings confidential issue titles and MR titles to any users Fix spec Fix spec Fix tests
| * | [master] Pipelines section is available to unauthorized usersKamil Trzciński2019-01-281-3/+3
| | |
| * | Merge branch 'security-pipeline-trigger-tokens-exposure' into 'master'Yorick Peterse2019-01-243-6/+38
| |\ \ | | | | | | | | | | | | | | | | [master] Do not expose trigger token when user should not see it See merge request gitlab/gitlabhq!2735
| | * | Present all pipeline triggers using trigger presenterGrzegorz Bizon2019-01-151-3/+3
| | | |
| | * | Do not expose trigger token when user should not see itGrzegorz Bizon2019-01-153-3/+35
| | | |
* | | | Merge branch 'sh-encode-content-disposition' into 'master'Sean McGivern2019-02-051-8/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Encode Content-Disposition filenames Closes #47673 See merge request gitlab-org/gitlab-ce!24919
| * | | | Encode Content-Disposition filenamesStan Hu2019-02-041-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Users downloading non-ASCII attachments would see garbled characters. When used with object storage, AWS S3 would return an InvalidArgument error: Header value cannot be represented using ISO-8859-1. Per RFC 5987 and RFC 6266, Content-Disposition should be encoded properly. This commit takes the Rails 6 implementation of ActiveSuppport::Http::ContentDisposition (https://github.com/rails/rails/pull/33829) and ports it here. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/47673
* | | | | Merge branch 'search-title' into 'master'Sean McGivern2019-02-052-2/+4
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | Add 'in' filter that modifies scope of 'search' filter to issues and merge requests API See merge request gitlab-org/gitlab-ce!24350
| * | | | Fix grammar and spellingHiroyuki Sato2019-02-052-4/+4
| | | | |
| * | | | Add 'in' filter that modifies scope of 'search' filter to issues and merge ↵Hiroyuki Sato2019-01-142-2/+4
| | |/ / | |/| | | | | | | | | | requests API
* | | | Add programming language filtering to `/projects`Dylan MacKenzie2019-02-041-0/+4
| | | |
* | | | Merge branch '51913-api-getting-projects-for-users-with-dot-gets-404' into ↵Rémy Coutable2019-02-013-4/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' API: Support username with dots Closes #51913 See merge request gitlab-org/gitlab-ce!24395
| * | | | Unify user requirements for API slugsRobert Schilling2019-01-313-4/+5
| | | | |
| * | | | API: Support username with dotsRobert Schilling2019-01-152-2/+2
| |/ / /
* | | | [master] Pipelines section is available to unauthorized usersKamil Trzciński2019-01-311-3/+3
| | | |
* | | | Present all pipeline triggers using trigger presenterGrzegorz Bizon2019-01-311-3/+3
| | | |
* | | | Do not expose trigger token when user should not see itGrzegorz Bizon2019-01-313-3/+35
| |_|/ |/| |
* | | Merge branch 'container-repository-cleanup-api' into 'master'Grzegorz Bizon2019-01-253-0/+173
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Container repository cleanup API Closes #55978 See merge request gitlab-org/gitlab-ce!24303
| * | | Add Container Registry APIKamil Trzciński2019-01-253-0/+173
| | | | | | | | | | | | | | | | | | | | | | | | This includes a set of APIs to manipulate container registry. This includes also an ability to delete tags based on requested criteria, like keep-last-n, matching-name, older-than.
* | | | Merge branch '56392-enable-the-layout-extraspacing-cop' into 'master'Lin Jen-Shin2019-01-2415-28/+28
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable the Layout/ExtraSpacing cop Closes #56392 See merge request gitlab-org/gitlab-ce!24423