| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into docs-processesdocs-processes | Marcia Ramos | 2018-08-16 | 5 | -16/+107 |
| |\ | |||||
| | * | Add Acceptance testing issue template | Zeger-Jan van de Weg | 2018-08-15 | 1 | -1/+34 |
| | | | |||||
| | * | Merge branch 'osw-update-diff-docs-regarding-note-diff-file' into 'master' | Sean McGivern | 2018-08-13 | 1 | -2/+15 |
| | |\ | | | | | | | | | | | | | Update diff docs regarding note diff file usage See merge request gitlab-org/gitlab-ce!21137 | ||||
| | | * | Update diff docs regarding note diff file usage | Oswaldo Ferreira | 2018-08-10 | 1 | -2/+15 |
| | | | | |||||
| | * | | Merge branch 'docs-jivl-update-fe-guide-older-firefox-versions' into 'master' | Filipa Lacerda | 2018-08-13 | 1 | -0/+24 |
| | |\ \ | | | | | | | | | | | | | | | | | Add documentation on how to test on older firefox versions See merge request gitlab-org/gitlab-ce!20842 | ||||
| | | * | | Add documentation on how to test on older firefox versions | Jose | 2018-08-10 | 1 | -0/+24 |
| | | |/ | |||||
| | * | | fix design artifact label to be product discovery. Was done here ↵ | Sarrah Vesselov | 2018-08-10 | 1 | -13/+6 |
| | |/ | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20862 but not merged before this was moved. | ||||
| | * | Merge branch 'ab-49789-fks-want-indexes' into 'master' | Rémy Coutable | 2018-08-09 | 1 | -0/+28 |
| | |\ | | | | | | | | | | | | | | | | | | | Documentation + rubocop for checking that foreign key constraints require an index Closes #49789 See merge request gitlab-org/gitlab-ce!20964 | ||||
| | | * | Docs: FK constraints require an index. | Andreas Brandl | 2018-08-08 | 1 | -0/+28 |
| | | | | | | | | | | | | | Closes #49789. | ||||
| * | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into docs-processes | Marcia Ramos | 2018-08-09 | 15 | -40/+1257 |
| |\ \ \ | |/ / | |||||
| | * | | Fix docs linting | Rémy Coutable | 2018-08-09 | 1 | -22/+22 |
| | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
| | * | | Phase 2: #47282 Improving Contributor On-Boarding Documentation | Eddie Stubbington | 2018-08-09 | 4 | -0/+864 |
| | |/ | |||||
| | * | Update git rerere link in docs | gfyoung | 2018-08-07 | 1 | -1/+1 |
| | | | | | | | | | The original link was moved. | ||||
| | * | Merge branch 'background-migrations-system-load' into 'master' | Stan Hu | 2018-08-06 | 1 | -0/+3 |
| | |\ | | | | | | | | | | | | | Respond to DB health in background migrations See merge request gitlab-org/gitlab-ce!20720 | ||||
| | | * | Respond to DB health in background migrations | Yorick Peterse | 2018-08-06 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the BackgroundMigration worker so it checks for the health of the DB before performing a background migration. This in turn allows us to reduce the minimum interval, without having to worry about blowing things up if we schedule too many migrations. In this setup, the BackgroundMigration worker will reschedule jobs as long as the database is considered to be in an unhealthy state. Once the database has recovered, the migration can be performed. To determine if the database is in a healthy state, we look at the replication lag of any replication slots defined on the primary. If the lag is deemed to great (100 MB by default) for too many slots, the migration is rescheduled for a later point in time. The health checking code is hidden behind a feature flag, allowing us to disable it if necessary. | ||||
| | * | | Update proofreader.md | Emily | 2018-08-02 | 1 | -0/+1 |
| | | | | |||||
| | * | | Rework performance section to allow for string freezing | Stan Hu | 2018-08-01 | 1 | -23/+31 |
| | |/ | | | | | | | Relates to #47424 | ||||
| | * | Changes poll.js to keep polling on any 2xx http status code | Filipa Lacerda | 2018-07-30 | 1 | -7/+7 |
| | | | |||||
| | * | Merge branch 'bvl-graphql-wip-mutation' into 'master' | Douwe Maan | 2018-07-26 | 1 | -0/+174 |
| | |\ | | | | | | | | | | | | | | | | | | | toggle wip status using GraphQL mutation Closes #48719 See merge request gitlab-org/gitlab-ce!20443 | ||||
| | | * | Add mutation toggling WIP state of merge requests | Bob Van Landuyt | 2018-07-25 | 1 | -0/+174 |
| | | | | | | | | | | | | | | | | This is mainly the setup of mutations for GraphQL. Including authorization and basic return type-structure. | ||||
| | * | | Prefer using direct links in docs styleguidedocs/styleguide-versions | Achilleas Pipinellis | 2018-07-25 | 1 | -8/+6 |
| | |/ | |||||
| | * | Add points regarding background migrations on huge tablesosw-background-migrations-best-practice-doc | Oswaldo Ferreira | 2018-07-24 | 1 | -0/+8 |
| | | | |||||
| | * | First version of pry_debugging.md | Toon Claes | 2018-07-20 | 3 | -1/+132 |
| | | | |||||
| | * | Add a Gitlab::Profiler.print_by_total_time convenience method | Sean McGivern | 2018-07-19 | 1 | -0/+30 |
| | | | | | | | | | | | | | | | This method uses Gitlab::Profiler::TotalTimeFlatPrinter internally, which is the same as RubyProf::FlatPrinter, but the min_percent option (and new max_percent option) applies to the _total_ time, not the _self_ time. This helps us figure out if we're calling a library inefficiently, for instance. | ||||
| * | | add syntax check and style's check for tech writers' reviews | Marcia Ramos | 2018-08-09 | 1 | -1/+2 |
| | | | |||||
| * | | add troubleshooting section to the doc template | Marcia Ramos | 2018-07-31 | 1 | -0/+4 |
| | | | |||||
| * | | add issue template for Documentation | Marcia Ramos | 2018-07-31 | 1 | -1/+1 |
| | | | |||||
| * | | Update workflow.md | Mike Lewis | 2018-07-18 | 1 | -19/+24 |
| | | | |||||
| * | | Update structure.md | Mike Lewis | 2018-07-18 | 1 | -11/+13 |
| | | | |||||
| * | | fix conflicts | Marcia Ramos 🌴 (back on July 24th) | 2018-07-18 | 21 | -286/+436 |
| |\ \ | |/ | | | | | | | | | Merge branch 'master' into 'docs-processes' # Conflicts: # .gitlab/merge_request_templates/Documentation.md | ||||
| | * | Document pattern for .find_or_create and similar methods.ab-docs-find-or-create | Andreas Brandl | 2018-07-17 | 1 | -0/+42 |
| | | | |||||
| | * | Fix invalid link to GitLab.com architecture.mddz-fix-com-architecture-link | Dmitriy Zaporozhets | 2018-07-16 | 1 | -1/+1 |
| | | | |||||
| | * | Remove old service architecture from Vue docs | Winnie Hellmann | 2018-07-12 | 2 | -228/+11 |
| | | | |||||
| | * | Fix doc for large table column rename | Mark Chao | 2018-07-11 | 1 | -2/+2 |
| | | | |||||
| | * | Merge branch 'winh-mounthelper-path-docs' into 'master' | Filipa Lacerda | 2018-07-10 | 1 | -1/+1 |
| | |\ | | | | | | | | | | | | | Fix mountComponent helper path in docs See merge request gitlab-org/gitlab-ce!20511 | ||||
| | | * | Fix mountComponent helper path in docs | Winnie Hellmann | 2018-07-09 | 1 | -1/+1 |
| | | | | |||||
| | * | | Fix link to frontend in handbook | Winnie Hellmann | 2018-07-09 | 1 | -3/+3 |
| | |/ | |||||
| | * | Merge branch 'winh-waiting-in-tests-docs' into 'master' | Tim Zallmann | 2018-07-09 | 1 | -0/+4 |
| | |\ | | | | | | | | | | | | | Document that we don't want to wait in tests See merge request gitlab-org/gitlab-ce!20502 | ||||
| | | * | Document that we don't want to wait in testswinh-waiting-in-tests | Winnie Hellmann | 2018-07-09 | 1 | -0/+4 |
| | | | | |||||
| | * | | Request to be a proofreader. | Yi-Jyun Pan | 2018-07-09 | 1 | -0/+1 |
| | |/ | |||||
| | * | Update `gettext:updated_check` regenerate pot file | Bob Van Landuyt | 2018-07-09 | 1 | -11/+1 |
| | | | | | | | | | | | | | | | Making the `gettext:updated_check` by completely regenerating the gitlab.pot. This avoids an issue where `gettext:find` would not pick up on changes if the file isn't removed first. | ||||
| | * | Add GPL Commitment language | Jamie Hurewitz | 2018-07-06 | 1 | -1/+21 |
| | | | |||||
| | * | Move spec/mailers/previews to app/mailers/previews | Lin Jen-Shin | 2018-07-06 | 1 | -2/+2 |
| | | | |||||
| | * | Add pipeline lists to GraphQL | Bob Van Landuyt | 2018-07-04 | 1 | -0/+88 |
| | | | | | | | | | | | | | | | | | | | This adds Keyset pagination to GraphQL lists. PoC for that is pipelines on merge requests and projects. When paginating a list, the base-64 encoded id of the ordering field (in most cases the primary key) can be passed in the `before` or `after` GraphQL argument. | ||||
| | * | Merge branch 'docs-products-links' into 'master' | Achilleas Pipinellis | 2018-07-03 | 2 | -2/+2 |
| | |\ | | | | | | | | | | | | | Updated /products links to /pricing See merge request gitlab-org/gitlab-ce!20321 | ||||
| | | * | Updated products links to pricing | Marcel Amirault | 2018-07-03 | 2 | -2/+2 |
| | | | | |||||
| | * | | Merge branch 'bvl-externalize-singular-docs' into 'master' | Achilleas Pipinellis | 2018-07-02 | 1 | -0/+2 |
| | |\ \ | | |/ | |/| | | | | | | | Add note for variable usage in singular See merge request gitlab-org/gitlab-ce!20286 | ||||
| | | * | [DOC] Add note for variable usage in singular | Bob Van Landuyt | 2018-06-30 | 1 | -0/+2 |
| | | | | | | | | | | | | | Avoiding a count variable allows more natural translation in some languages. | ||||
| | * | | Update ee_features.md to fix link | Marcel Amirault | 2018-06-30 | 1 | -1/+1 |
| | |/ | |||||
| | * | Merge branch 'bvl-graphql-permissions' into 'master' | Sean McGivern | 2018-06-28 | 1 | -0/+45 |
| | |\ | | | | | | | | | | | | | | | | | | | expose permissions on types Closes #47695 See merge request gitlab-org/gitlab-ce!20152 | ||||
