summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Add diagrams for frontend testing levels (docs)Winnie Hellmann2019-08-211-0/+152
|
* Update container_registry.md to handle CA Bundle certs and validationMarcel Amirault2019-08-211-0/+9
|
* Docs: Refresh project request access screenshotsTristan Williams2019-08-213-0/+0
|
* Update doc/gitlab-basics/start-using-git.mdAfzaal Ahmad Zeeshan2019-08-211-9/+12
|
* Adds specific metric styles and propSimon Knox2019-08-212-0/+4
| | | | | | This MR adds the styles for displaying a single chart next to another one when embedding them in an issue.
* Merge branch '46299-wiki-page-creation' into 'master'Filipa Lacerda2019-08-211-4/+5
|\ | | | | | | | | Remove wiki page slug dialog step when creating wiki page See merge request gitlab-org/gitlab-ce!31362
| * New wiki page redirects user to random slug46299-wiki-page-creationLuke Duncalfe2019-08-211-4/+5
| | | | | | | | | | | | | | | | | | | | Previously we asked a user to enter a new slug before taking them to the Create Page page. As a UX improvement, we now take them to a randomly generated URI so they can begin creating their new page. https://gitlab.com/gitlab-org/gitlab-ce/issues/46299
* | Added an example to doumentation for using multiple build policies with ↵drew2019-08-211-1/+15
| | | | | | | | only: and except:
* | Update capitalization in k8s cheat sheetMarcel Amirault2019-08-211-14/+14
| |
* | Improve details about when rebase button is offeredBen Bodenmiller2019-08-212-2/+8
| |
* | Merge branch 'docs/pipelines-gitaly-version-removal' into 'master'Evan Read2019-08-211-3/+2
|\ \ | | | | | | | | | | | | Remove Gitaly version in the docs See merge request gitlab-org/gitlab-ce!32006
| * | Remove Gitaly version in the docsdocs/pipelines-gitaly-version-removalZeger-Jan van de Weg2019-08-201-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | It's very hard for end user to know what version of Gitaly is running, and they should not have to care about this detail either. Gitaly 1.21.0 was released before 11.9 was tagged, so it's an unsupported version too. This change removes the reference.
* | | Merge branch 'zm-rephrase-ci-docs' into 'master'Evan Read2019-08-212-3/+3
|\ \ \ | | | | | | | | | | | | | | | | Update grammar in DAG docs See merge request gitlab-org/gitlab-ce!32021
| * | | Update grammar in DAG docszm-rephrase-ci-docsZeff Morgan2019-08-202-3/+3
| | | |
* | | | Fix code blocks in frontend testing guide (docs)Winnie Hellmann2019-08-211-8/+8
| | | |
* | | | 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 'ssh-add-no-redirect' into 'master'Achilleas Pipinellis2019-08-201-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | In ssh_keys docs, don't redirect stdout of ssh-add See merge request gitlab-org/gitlab-ce!31630
| * | | | Remove inoperative >/dev/nullAlexander Oleynikov2019-08-081-1/+1
| | | | |
* | | | | Update repository languages screenshotMarcel Amirault2019-08-203-1/+1
| | | | |
* | | | | Standardize remote_ip and path keys for auth.log and api_json.logStan Hu2019-08-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Current `auth.log` uses `fullpath` and `ip`, while `api_json.log` uses `remote_ip` and `path` for the same fields. Let's standardize these namings to make it easier for people working with the data. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66167
* | | | | Harmonizes titles between two Geo landing pagesEvan Read2019-08-202-3/+3
| | | | | | | | | | | | | | | | | | | | Menu entries in global navigation will be updated to match.
* | | | | Update project import docMarcel Amirault2019-08-203-7/+7
| | | | | | | | | | | | | | | | | | | | Update screenshot and improve text to match
* | | | | Clarify when new values are validEvan Read2019-08-201-2/+5
| |_|/ / |/| | |
* | | | 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
* | | | | Merge branch 'docs-testing-n-1-request-sepcs' into 'master'Lin Jen-Shin2019-08-202-1/+8
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | | | | | | Docs: Require request specs when testing N+1 for controllers See merge request gitlab-org/gitlab-ce!31940
| * | | | Require request specs when testing N+1 for controllersThong Kuah2019-08-202-1/+8
| |/ / /
* | | | Merge branch 'chore/fix-typo' into 'master'Marin Jankovski2019-08-201-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix minor typo: CE -> EE See merge request gitlab-org/gitlab-ce!31952
| * | | | Fix minor typo: CE -> EEArun Kumar Mohan2019-08-191-1/+1
| | | | |
* | | | | Docs DOCKER_AUTH_CONFIG not available for k8sSteve Azzopardi2019-08-201-8/+11
| | | | |
* | | | | Merge branch 'patch-74' into 'master'Ray Paik2019-08-201-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix typo in doc/ci/yaml/README.md See merge request gitlab-org/gitlab-ce!31923
| * | | | | Update README.mdAlex Harford2019-08-161-1/+1
| | | | | |
* | | | | | Combine old and new frontend testing guide (docs)Winnie Hellmann2019-08-202-359/+363
| | | | | |
* | | | | | Merge branch 'initial-docs-for-auto-devops-sidekiq' into 'master'Evan Read2019-08-201-0/+46
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initial docs for sidekiq worker with Auto DevOps Closes gitlab-org/charts/auto-deploy-app#1 See merge request gitlab-org/gitlab-ce!31949
| * | | | | | Initial docs for sidekiq worker with Auto DevOpsinitial-docs-for-auto-devops-sidekiqDylan Griffith2019-08-201-0/+46
| | | | | | |
* | | | | | | Add documentation for incrementally expand mr diffsSamantha Ming2019-08-202-0/+9
| | | | | | |
* | | | | | | Standardize markdown in dev and workflowMarcel Amirault2019-08-1913-328/+331
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | Delete trailing whitespace, fix blockquotes, fix note boxes, with indentation, clean up tables, etc.
* | | | | | Doc: add project approval rule endpointsMark Chao2019-08-191-56/+238
| | | | | |
* | | | | | Update Team labels definition in the Issue Workflow documentationRémy Coutable2019-08-191-25/+6
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | Merge branch 'cross-link-instrumentation' into 'master'Evan Read2019-08-191-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Link to GitLab Performance Monitoring See merge request gitlab-org/gitlab-ce!31947
| * | | | | | Link to GitLab Performance Monitoringcross-link-instrumentationThong Kuah2019-08-191-1/+1
| | | | | | |
* | | | | | | Improve new CI job permissions model docsBen Bodenmiller2019-08-191-12/+17
| | | | | | |
* | | | | | | Merge branch 'docs-testing-guide-update' into 'master'Evan Read2019-08-191-1/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Docs fixup: Remove reference to old lib/api/ci dir See merge request gitlab-org/gitlab-ce!31937
| * | | | | | | Remove reference to old lib/api/ci dirdocs-testing-guide-updateThong Kuah2019-08-171-1/+0
| | |_|_|_|/ / | |/| | | | | | | | | | | | This directory no longer exists (since 2017)
* | | | | | | Merge branch 'doc-be_like_time' into 'master'Evan Read2019-08-191-0/+13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add `be_like_time` matcher to Testing Styleguide See merge request gitlab-org/gitlab-ce!31833
| * | | | | | | Add `be_like_time` matcher to Testing Styleguidedoc-be_like_timeLuke Duncalfe2019-08-191-0/+13
| | | | | | | |
* | | | | | | | Merge branch 'docs-update-design-management-limitations' into 'master'Evan Read2019-08-191-2/+12
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Link more issues in Design Management Limitations See merge request gitlab-org/gitlab-ce!31697
| * | | | | | | | Link more issues in Design Management Limitationsdocs-update-design-management-limitationsLuke Duncalfe2019-08-151-2/+12
| |/ / / / / / /
* | | | | | | | Add documentation for feature flag Target UsersJason Goodman2019-08-192-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add screenshot