summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Remove gitoriouszj-remove-gitoriousZ.J. van de Weg2016-08-251-1/+1
|
* removed redundant wordJürgen Steinblock2016-08-251-1/+1
|
* Add two factor recovery endpoint to internal APIDrew Blessing2016-08-243-0/+72
|
* Merge branch 'workhorse-0.7.11' into 'master' Douwe Maan2016-08-241-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Use gitlab-workhorse 0.7.11 Versions 0.7.9 and 0.7.10 crash on previously valid 'authBackend' settings. I don't know how many people are affected by this, 'normal' Omnibus installations are not. (If they were gitlab.com would have stopped working :) ). Still this is something we should not ship. Unfortunately 8-11-stable uses 0.7.10 (but 8.11.0 does not). So I think we need to put this in the next 8.11 patch release. See merge request !5983
| * Use gitlab-workhorse 0.7.11Jacob Vosmaer2016-08-241-1/+1
| | | | | | | | | | Versions 0.7.9 and 0.7.10 crash on previously valid 'authBackend' settings.
* | Merge branch 'api_only_allow_merge_if_build_succeeds' into 'master' Douwe Maan2016-08-241-7/+17
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | expose 'only_allow_merge_if_build_succeeds' project setting in the API ## What does this MR do? Adds the 'only_allow_merge_if_build_succeeds' project setting in the API. ## Are there points in the code the reviewer needs to double check? No, but maybe this code is not enough for ACLs or the like. ## Why was this MR needed? Because that's a very useful setting to change via automation (through the API) ## What are the relevant issue numbers? Closes #21085, closes https://gitlab.com/gitlab-org/gitlab-ce/issues/20088. ## Screenshots (if relevant) ## Does this MR meet the acceptance criteria? - [X] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [X] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [X] API support added - Tests - [X] Added for this feature/bug - [X] All builds are passing - [X] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [X] Branch has no merge conflicts with `master` (if you do - rebase it please) - [X] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5930
| * | expose 'only_allow_merge_if_build_succeeds' project setting in the APIMarc Dequènes (Duck)2016-08-241-7/+17
| |/
* | Merge branch 'entity-api-web-url' into 'master' Douwe Maan2016-08-243-18/+38
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | api: expose web_url for project entities ## What does this MR do? Adds a `web_url` field to project snippet, issues, and merge request API returned objects. ## Are there points in the code the reviewer needs to double check? Tests. Are they sufficient? (I'm working on getting them to pass.) ## Why was this MR needed? Creating the URL for an MR or issue from the MR is tedious in API libraries; it's easy for Gitlab to just provide it. ## What are the relevant issue numbers? N/A ## Screenshots (if relevant) N/A ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [x] API support added - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5631
| * | api: expose web_url for project entitiesBen Boeckel2016-08-243-18/+38
| |/ | | | | | | | | This allows web hooks to have a URL back to entities without having to generate it themselves.
* | Merge branch 'patch-4' into 'master' Achilleas Pipinellis2016-08-241-0/+19
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update merge_requests.md with a simpler way to check out a merge request ## What does this MR do? This MR updates `merge_requests.md` with a simpler way to check out a merge request The previous way was put under the "By modifying `.git/config` for a given repository" section. The disadvantage of the old way is that one has to modify `.git/config` for each repository that one uses. The new way was put under the "By adding a git alias" section. One has to create this git alias once, and then it will work from any repository, without having to modify `.git/config` over and over again. ## Are there points in the code the reviewer needs to double check? One should double check that the link provided by the "Check out branch" button in a MR, i.e. https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/workflow/merge_requests.md#checkout-merge-requests-locally, still works. I think it will, since I didn't modify the "Checkout merge requests locally" section name. ## Why was this MR needed? This MR was needed because the old way of checking out a merge request locally requires to modify `.git/config` in all repositories that one has on a computer, which is a tedious task. The new way just requires adding a simple git alias, once. And the `git mr` command then works for all repositories. ## What are the relevant issue numbers? I haven't created an issue for this. ## Screenshots (if relevant) N/A ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added (N/A) - Tests - [ ] Added for this feature/bug (N/A) - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5944
| * | Modify the alias to allow specifying a remoteOndřej Čertík2016-08-231-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the alias should be used as: git mr upstream 5 To check out a MR number 5 from the upstream remote, into a `mr-upstream-5` local branch. Also clarify that the `5` in the merge request is the number shown in GitLab.
| * | Add new lines after backticks and colonsOndřej Čertík2016-08-231-0/+4
| | |
| * | Update merge_requests.md with a simpler way to check out a merge request Ondřej Čertík2016-08-221-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | The previous way was put under the "By modifying `.git/config` for a given repository" section. The disadvantage is that one has to modify `.git/config` for each repository that one uses. The new way was put under the "By adding a git alias" section. One has to create this git alias once, and then it will work from any repository, without having to modify `.git/config` over and over again.
* | | Merge branch 'api-project-hook-wiki-page-events' into 'master' Robert Speicher2016-08-241-0/+10
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Api project hook wiki page events ## What does this MR do? Updates project hook API for wiki page events. Also updates docs and tests for forgotten hook fields. See merge request !5969
| * | | api: expose wiki_page_events project hook field in the APIBen Boeckel2016-08-241-0/+3
| | | |
| * | | docs: document other project webhook fieldsBen Boeckel2016-08-241-0/+7
| | |/ | |/|
* | | Merge branch 'issue-created_at-docs' into 'master' Achilleas Pipinellis2016-08-241-4/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue created at docs ## What does this MR do? Clarifies `created_at` for creating issues via the API. ## Are there points in the code the reviewer needs to double check? No. ## Why was this MR needed? Docs were unclear. ## What are the relevant issue numbers? Closes #18458 and closes #19863. ## Screenshots (if relevant) N/A ## Does this MR meet the acceptance criteria? - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5967
| * | | docs: fix table alignmentBen Boeckel2016-08-241-2/+2
| | | |
| * | | docs: update created_at docs for creating issues via APIBen Boeckel2016-08-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | See also #19863. Fixes #18458.
* | | | Update Ruby version to 2.3 in RequirementsSebastiaan Lokhorst2016-08-231-1/+1
| |/ / |/| |
* | | Fix typo in gitlab_flow.mdfix-typo-in-gitlab-flowNick2016-08-231-1/+1
|/ /
* | Fix for update 8.10-to-8.11.md doc.Rubén Dávila Santos2016-08-221-4/+4
|/
* Appease the linter.Connor Shea2016-08-221-2/+2
|
* Add Ruby 2.3 upgrade notes.Connor Shea2016-08-221-7/+31
|
* Merge branch 'docs-koding-change-loc' into 'master' Achilleas Pipinellis2016-08-2217-45/+56
|\ | | | | | | | | | | | | Split Koding admin/user docs Backend/Frontend MR https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5909 See merge request !5938
| * Split Koding admin/user docsAchilleas Pipinellis2016-08-2217-45/+56
| |
* | Merge branch 'issue-boards-doc' into 'master' Achilleas Pipinellis2016-08-227-0/+189
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Documentation for Issue Boards ## What does this MR do? Add documentation for issue boards. ## What are the relevant issue numbers? - Issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/17907 - Backend MR: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5548 - Frontend MR: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5554 See merge request !5713
| * | Add links to landing page and youtube videoAchilleas Pipinellis2016-08-221-0/+7
| | |
| * | Fix typos and grammarAchilleas Pipinellis2016-08-221-22/+27
| | |
| * | Add note about labels and system notesAchilleas Pipinellis2016-08-222-0/+5
| | |
| * | Mention missing labels for corresponding listsAchilleas Pipinellis2016-08-221-0/+1
| | |
| * | Add section on searching through the Backlog listAchilleas Pipinellis2016-08-222-0/+21
| | |
| * | Change images to reflect current status, add link to inline docsAchilleas Pipinellis2016-08-223-17/+17
| | |
| * | Complete rest of documentation for Issue BoardsAchilleas Pipinellis2016-08-223-49/+87
| | |
| * | Remove 10 lists limitAchilleas Pipinellis2016-08-221-2/+2
| | |
| * | Clean up Issue Board doc a bitAchilleas Pipinellis2016-08-221-37/+25
| | |
| * | Great refactor of Issue Board docsAchilleas Pipinellis2016-08-223-10/+89
| | |
| * | Documentation for Issue BoardsAchilleas Pipinellis2016-08-221-0/+45
| | |
* | | Merge branch 'doc-slash-commands-location' into 'master' Achilleas Pipinellis2016-08-222-2/+2
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Change slash commands docs location See merge request !5937
| * | Fix docs not rendering the pipe symbolAchilleas Pipinellis2016-08-221-1/+1
| | |
| * | Change location of slash commands docsAchilleas Pipinellis2016-08-222-1/+1
| |/
* | Merge branch 'metrics-typo' into 'master' Yorick Peterse2016-08-221-1/+1
|\ \ | | | | | | | | | | | | Fix typo in gitlab-workhorse header See merge request !5891
| * | Fix typo in gitlab-workhorse headerJacob Vosmaer2016-08-191-1/+1
| | |
* | | Merge branch 'doc-protected-branches-new-behavior' into 'master' Achilleas Pipinellis2016-08-224-35/+46
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Document protected branches new behavior See merge request !5934
| * | Conform to doc styleguide on new featuresAchilleas Pipinellis2016-08-221-2/+2
| | |
| * | Reword GitLab EE adAchilleas Pipinellis2016-08-221-1/+1
| | |
| * | Add changelog items to protected branches docsAchilleas Pipinellis2016-08-221-4/+7
| | |
| * | Document the new behavior of protected branchesAchilleas Pipinellis2016-08-214-35/+43
| | |
* | | Update gitlab-shell to v3.4.0gitlab_shell_version_updateMarin Jankovski2016-08-201-1/+1
| | |
* | | Support integration with Koding (online IDE)Gokmen Goksel2016-08-1917-0/+362
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Koding: #index: landing page for Koding integration If enabled it will provide a link to open remote Koding instance url for now we are also providing the sneak preview video for how integration works in detail. Repository: check whether .koding.yml file exists on repository Projects: landing page: show Run in IDE (Koding) button if repo has stack file Projects: MR: show Run in IDE Koding button if repo has stack file on active branch ProjectHelpers: add_koding_stack: stack generator for provided project With this helper we will auto-generate the required stack template for a given project. For the feature we can request this base template from the running Koding instance on integration. Currently this will provide users to create a t2.nano instance on aws and it'll automatically configures the instance for basic requirements. Projects: empty state and landing page provide shortcuts to create stack projects_helper: use branch on checkout and provide an entry point This ${var.koding_queryString_branch} will be replaced with the branch provided in query string which will allow us to use same stack template for different branches of the same repository. ref: https://github.com/koding/koding/pull/8597/commits/b8c0e43c4c24bf132670aa8a3cfb0d634acfd09b projects_helper: provide sha info in query string to use existing vms With this change we'll be able to query existing vms on Koding side based on the commit id that they've created. ref: https://github.com/koding/koding/pull/8597/commits/1d630fadf31963fa6ccd3bed92e526761a30a343 Integration: Docs: Koding documentation added Disable /koding route if integration is disabled Use application settings to enable Koding Projects_helper: better indentation with strip_heredoc usage Projects_helper: return koding_url as is if there is no project provided current_settings: set koding_enabled: false by default Koding_Controller: to render not_found once integration is disabled Dashboard_specs: update spec for Koding enabled case Projects_Helper: make repo dynamic ref: https://github.com/koding/koding/pull/8597/commits/4d615242f45aaea4c4986be84ecc612b0bb1514c Updated documentation to have right format