summaryrefslogtreecommitdiff
path: root/doc/development
Commit message (Collapse)AuthorAgeFilesLines
* What to avoid in code reviewmj/code-review-avoidMarin Jankovski2019-09-041-2/+7
|
* Development docs: how to add Prometheus metricsThong Kuah2019-09-031-0/+23
| | | | | This documents the various knowledge needed to add new GitLab self-monitoring Prometheus metrics.
* Merge branch '66741-remove-spec-rails_helper-rb' into 'master'Grzegorz Bizon2019-09-031-2/+2
|\ | | | | | | | | | | | | Remove spec/rails_helper.rb Closes #66741 See merge request gitlab-org/gitlab-ce!32380
| * Replace rails_helper.rb with spec_helper.rb66741-remove-spec-rails_helper-rbAsh McKenzie2019-08-301-2/+2
| | | | | | | | | | rails_helper.rb's only logic was to require spec_helper.rb.
* | Merge branch 'links-use-new-location' into 'master'Rémy Coutable2019-09-033-8/+8
|\ \ | | | | | | | | | | | | Use new location for helm charts repo See merge request gitlab-org/gitlab-ce!32563
| * | Use new location for helm charts repolinks-use-new-locationBalasankar "Balu" C2019-09-033-8/+8
| | | | | | | | | | | | Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
* | | Add Danger bot development documentationNick Thomas2019-09-033-1/+118
|/ / | | | | | | | | This is overdue, and some of the suggestions are embarrassing, but this is how we actually develop Danger today.
* | Docs james gill contributionMarcel Amirault2019-09-021-26/+23
| |
* | Adds basic overcommit supportGiorgenes Gelatti2019-09-021-0/+5
| |
* | Merge branch 'remove-ignorable-column-concern' into 'master'Michael Kozono2019-08-301-8/+4
|\ \ | | | | | | | | | | | | | | | | | | Remove dependency on IgnorableColumn concern Closes #66746 See merge request gitlab-org/gitlab-ce!32427
| * | Use self.ignored_columns += instead of =Stan Hu2019-08-301-1/+1
| | | | | | | | | | | | This is to accomodate prepended modules.
| * | Remove dependency on IgnorableColumn concerndineshpanda2019-08-301-8/+4
| |/
* | Fixed grammar and inconsistencies with capitalizationShan2019-08-301-4/+4
| |
* | Fix broken markdown in various docsMarcel Amirault2019-08-301-2/+2
| |
* | Merge branch 'patch-79' into 'master'Ray Paik2019-08-301-1/+1
|\ \ | | | | | | | | | | | | Fixed spelling See merge request gitlab-org/gitlab-ce!32434
| * | Fixed spellingShan2019-08-291-1/+1
| |/
* | Merge branch 'fix-test-design-link' into 'master'Evan Read2019-08-301-1/+1
|\ \ | | | | | | | | | | | | Broken Link to Test Design See merge request gitlab-org/gitlab-ce!32279
| * | Broken Link to Test DesignDavid H. Wilkins2019-08-271-1/+1
| | | | | | | | | | | | | | | | | | | | | - previous link engineering/quality/guidelines/test-engineering/test-design is missing and apparently should be engineering/quality/test-engineering/#test-heuristics
* | | Merge branch 'patch-78' into 'master'Ray Paik2019-08-291-1/+1
|\ \ \ | | | | | | | | | | | | | | | | Fixed spelling See merge request gitlab-org/gitlab-ce!32432
| * | | Fixed spellingShan2019-08-291-1/+1
| | |/ | |/|
* | | Fixed spellingShan2019-08-291-1/+1
|/ /
* | Apply review suggestionsMark Florian2019-08-291-3/+1
| | | | | | | | | | | | | | - Reword relationship between Jest/Karma/Jasmine - Prefer inline URLs, per the [docs] [docs]: https://docs.gitlab.com/ee/development/documentation/styleguide.html#links
* | Update a few redirected linksMarcel Amirault2019-08-292-4/+4
| |
* | Remove csslabArun Kumar Mohan2019-08-281-2/+0
| |
* | Rename all filenames and occurrences to License ComplianceAchilleas Pipinellis2019-08-281-1/+1
| | | | | | | | | | | | - New redirect doc/user/application_security/license_compliance/index.md - Renaming of images. - Some links that were pointing to the old location are fixed.
* | Merge branch 'docs/unlinking-emails' into 'master'Evan Read2019-08-281-9/+0
|\ \ | | | | | | | | | | | | Remove a section for a now fixed bug See merge request gitlab-org/gitlab-ce!32319
| * | Remove a section for a now fixed bugAchilleas Pipinellis2019-08-281-9/+0
| | | | | | | | | | | | | | | | | | Those guidelines where based on https://gitlab.com/gitlab-org/gitlab-docs/issues/311 which seems to be fixed.
* | | Fix markdown in various docsMarcel Amirault2019-08-2810-14/+7
|/ / | | | | | | | | | | Clean up issues that may cause the docs-lint test to fail, such as trailing whitespace, no EOF newline, blockquotes, etc
* | Merge branch 'docs-document-category-labels' into 'master'Achilleas Pipinellis2019-08-273-131/+194
|\ \ | | | | | | | | | | | | Improve documentation of stage, group, category, feature labels See merge request gitlab-org/gitlab-ce!32053
| * | Introduce facet labelsdocs-document-category-labelsRémy Coutable2019-08-271-0/+18
| | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | Improve documentation of stage, group, category, feature labelsRémy Coutable2019-08-273-135/+180
| |/ | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Removes trailing whitespace to fix lintingEvan Read2019-08-271-5/+5
| |
* | Migrations guide: use atomic steps, when possibleMayra Cabrera2019-08-272-44/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, the DB migrations guide says that "you must" use non-blocking operations (such as CREATE INDEX CONCURRENTLY), always. But this does not make sense in cases of empty tables and leads to splitting the work to multiple non-atomic (with disable_ddl_transaction!) DB migrations. To follow KISS principle, to have fewer DB migrations steps, to have them atomic when it's possible and simplify deployment and troubleshooting, the following exceptions were added to the doc: - index creation, - index dropping, - defining an FK, - adding a column with DEFAULT,
* | Update index of feature flagsSeth Berger2019-08-271-2/+2
| | | | | | | | | | Made it clear the pages are about feature flags, and not documentation.
* | Update capitalization in /dev docsMarcel Amirault2019-08-2717-83/+81
| | | | | | | | | | Clean up capitalization in /development /gitlab-basics and /install
* | Change docs markdown linterMarcel Amirault2019-08-263-19/+18
| | | | | | | | | | | | | | Change from ruby mdl to node markdownlint, add config file to root of project, delete old config file, update exceptions, and fix one doc that was didn't meet standards
* | Remove the object pools feature flagZeger-Jan van de Weg2019-08-261-24/+0
|/ | | | | | The flag defaulted to true, so there's no change unless users turned it off. Given there's a lack of issues regarding object pools, this should be OK.
* Add changelog exclusion language for docs-only changesLucas Charles2019-08-261-0/+1
|
* Fix link to issue templateAchilleas Pipinellis2019-08-231-1/+1
|
* Document uploads development guidelinesAlessio Caiazza2019-08-233-0/+274
| | | | Explain Workhorse acceleration features
* Merge branch 'feat/smime-signed-notification-emails' into 'master'Sean McGivern2019-08-221-0/+4
|\ | | | | | | | | feat: smime signed notification emails See merge request gitlab-org/gitlab-ce!30644
| * feat: SMIME signed notification emailsDiego Louzán2019-08-201-0/+4
| | | | | | | | | | | | - Add mail interceptor the signs outgoing email with SMIME - Add lib and helpers to work with SMIME data - New configuration params for setting up SMIME key and cert files
* | Adds new DB case study for namespaces statisticsMayra Cabrera2019-08-222-0/+179
| | | | | | | | | | | | Includes a new database case study about all the approaches taken to store and update the namespace statistics in a performan manner performant approach to store and update the namespaces statistics
* | Add docs exceptions to two pipeline jobsMarcel Amirault2019-08-222-5/+5
| |
* | Update docs to pass new markdownlintMarcel Amirault2019-08-228-13/+11
| | | | | | | | | | Deletes extra spaces and line, makes lists consistent, and fixes links.
* | Merge branch '328-other-ee' into 'master'Stan Hu2019-08-212-10/+34
|\ \ | | | | | | | | | | | | Port of EE "Elasticsearch versioned schema for other ActiveRecord models" See merge request gitlab-org/gitlab-ce!31660
| * | Remove links to issues to make docs lint happy328-other-eeStan Hu2019-08-211-6/+1
| | |
| * | Elasticsearch docs: Minor copyedits and add links to issuesStan Hu2019-08-211-2/+13
| | |
| * | ES: sync with EEMark Chao2019-08-212-10/+28
| | | | | | | | | | | | Doc for multi-indices archtecture
* | | Add diagrams for frontend testing levels (docs)Winnie Hellmann2019-08-211-0/+152
|/ /