- 14 Jun, 2019 23 commits
-
-
Marcia Ramos authored
Fix a broken link in PROCESS.md See merge request gitlab-org/gitlab-ce!29607
-
Filipa Lacerda authored
Fix styling for `app/assets/stylesheets/pages/detail_page.scss` Closes #59900 See merge request gitlab-org/gitlab-ce!26870
-
Filipa Lacerda authored
Fix missing deployment rockets in monitor dashboard See merge request gitlab-org/gitlab-ce!29574
-
Dhiraj Bodicherla authored
Fixed inconsistencies in variable names for deployment endpoints for monitoring dashboard which causes deployment rocket icons to disappear
-
James Lopez authored
Add support for AsciiDoc include directive Closes #18045 See merge request gitlab-org/gitlab-ce!28417
-
-
Phil Hughes authored
Fix sidebar flyout navigation See merge request gitlab-org/gitlab-ce!29571
-
Phil Hughes authored
Update height of $mr-tabs-height See merge request gitlab-org/gitlab-ce!29619
-
Ash McKenzie authored
Don't import pull request comments from Gitea repos Closes #63071 See merge request gitlab-org/gitlab-ce!29521
-
Andreas Brandl authored
Issue 62684 See merge request gitlab-org/gitlab-ce!29430
-
John Kristensen authored
The changes to the tests to support ignoring Gitea pull requests comments were a bit of a hack. The suggestions provided by Ash McKenzie in gitlab-org/gitlab-ce!29521 make things a bit more flexible if any future changes need to be made to the tests. The changes made to ignore
-
Stan Hu authored
Add back sidekiq metrics exporter See merge request gitlab-org/gitlab-ce!29647
-
Evan Read authored
Remove incorrect docs from deploy_boards.md See merge request gitlab-org/gitlab-ce!29591
-
Mark Lapierre authored
Backport of EE changes from MR !13763 See merge request gitlab-org/gitlab-ce!28983
-
-
Kushal Pandya authored
Exclude preexisting lint issues for i18n Closes #63223 See merge request gitlab-org/gitlab-ce!29649
-
Evan Read authored
Clarify ED25519 SSH key support See merge request gitlab-org/gitlab-ce!28167
-
Ben Bodenmiller authored
-
Thong Kuah authored
This was done in an MR pre https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/26789
-
Ryan Cobb authored
-
Thong Kuah authored
inherit require 2fa for all subgroups and projects See merge request gitlab-org/gitlab-ce!24965
-
Mike Greiling authored
Review toolbar modularization Closes #62440 See merge request gitlab-org/gitlab-ce!29433
-
Sarah Groff Hennigh-Palermo authored
It has a lot of files because that's the point
-
- 13 Jun, 2019 17 commits
-
-
Mike Greiling authored
Use scoped routes for labels and milestones See merge request gitlab-org/gitlab-ce!29358
-
Dmitriy Zaporozhets authored
Update frontend code to use /-/ scope for milestones and labels routes Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Douglas Barbosa Alexandre authored
Speed up commit loads by disabling BatchLoader replace_methods See merge request gitlab-org/gitlab-ce!29633
-
Thong Kuah authored
AutoDevops fix ensure_namespace() does not explicitly test namespace Closes #50797 See merge request gitlab-org/gitlab-ce!29567
-
Jack Lei authored
-
Mek Stittri authored
Change SLA to target SLO for bugs and defects See merge request gitlab-org/gitlab-ce!29615
-
Stan Hu authored
We've seen a significant performance penalty when using `BatchLoader#__replace_with!`. This defines methods on the batch loader that proxy to the 'real' object using send. The alternative is `method_missing`, which is slower. However, we've noticed that `method_missing` can be faster if: 1. The objects being loaded have a large interface. 2. We don't call too many methods on the loaded object. In production, we've seen the rendering times of the merge request widget increase as a result of loading commit data. BatchLoader attempts to call replace_methods on the lazy object, but this has a significant performance penalty. Disabling this mode (https://github.com/exAspArk/batch-loader/pull/45) appears to cut load times by about 50% for MergeRequestsController#show. Relates to https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/6941
-
Stan Hu authored
In production, we've seen the rendering times of the merge request widget increase as a result of loading commit data. BatchLoader attempts to call replace_methods on the lazy object, but this has a significant performance penalty for modules that have many methods. Disabling this mode (https://github.com/exAspArk/batch-loader/pull/45) appears to cut load times by about 50% for MergeRequestsController#show. Relates to https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/6941
-
Robert Speicher authored
Omit blocked admins from repository check e-mails Closes #63019 See merge request gitlab-org/gitlab-ce!29507
-
George Tsiolis authored
-
Stan Hu authored
Master i18n See merge request gitlab-org/gitlab-ce!29611
-
Stan Hu authored
Use serialization for project boards See merge request gitlab-org/gitlab-ce!29263
-
Mike Greiling authored
"Add ESLint i18n plugin" Closes #62359 See merge request gitlab-org/gitlab-ce!26789
-
Brandon Labuschagne authored
Unnecessary offences include false positives as well as flagged errors which have follow up issues in order to be addressed. Not all issues have been addressed before this being submitted in the spirit of results and iteration.
-
Stan Hu authored
Remove spec/features/projects/files/user_edits_files_spec.rb from quarantine Closes #60497 See merge request gitlab-org/gitlab-ce!29620
-
Heinrich Lee Yu authored
-
Douglas Barbosa Alexandre authored
Refactor for cleaner caching in dashboards See merge request gitlab-org/gitlab-ce!29444
-