- 24 Mar, 2021 40 commits
-
-
NataliaTepluhina authored
-
Nick Gaskill authored
Update 'npm config set' examples to add '--' flag when setting a token See merge request gitlab-org/gitlab!48652
-
Heinrich Lee Yu authored
Fix a flaky spec by using contain_exactly instead of eq See merge request gitlab-org/gitlab!57388
-
Nick Gaskill authored
Move DAST troubleshooting to a separate file See merge request gitlab-org/gitlab!57199
-
Russell Dickenson authored
-
David O'Regan authored
New board add list form input type changes [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!55855
-
Simon Knox authored
Radio buttons for list type select as there are only four options max. Regular dropdown for items. Some other polish issues and little bugfixes that didn't make it into earlier MRs Dropdown item text wrapping requires gitlab-ui update
-
David O'Regan authored
Improve the performance bar See merge request gitlab-org/gitlab!56830
-
David O'Regan authored
Fix: Update Alert Management to use writeQuery See merge request gitlab-org/gitlab!57364
-
Kerri Miller authored
Clean up unreachable code after tighten DB contraint See merge request gitlab-org/gitlab!56920
-
Sean McGivern authored
Bump the reliable fetcher to 0.5.6 See merge request gitlab-org/gitlab!57351
-
Nicolò Maria Mezzopera authored
Change button to link on Agent table See merge request gitlab-org/gitlab!55887
-
Nicholas Klick authored
-
Jacques Erasmus authored
Remove calls to jQuery animations See merge request gitlab-org/gitlab!57379
-
Thomas Randolph authored
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Improve `gfm_autocomplete_spec.rb` performance See merge request gitlab-org/gitlab!57246
-
Coung Ngo authored
Improve performance by removing nested `visit` calls and extracting creation of objects to `let_it_be`
-
Robert Speicher authored
Add cop to disallow delegating predicate methods See merge request gitlab-org/gitlab!54658
-
-
Andrew Fontaine authored
Migrate cycle_analytics/total_time to VTU See merge request gitlab-org/gitlab!57163
-
Peter Leitzen authored
Enable empty line after final let it be cop See merge request gitlab-org/gitlab!57361
-
Mehmet Emin INAC authored
-
Amy Qualls authored
Spruce up the docs for new experiment Vue component a bit See merge request gitlab-org/gitlab!57176
-
Stan Hu authored
Revert "Merge branch 'sh-update-mailroom' into 'master'" See merge request gitlab-org/gitlab!57368
-
Shinya Maeda authored
Make sure wget works even if behind a proxy. Fixes #287611 See merge request gitlab-org/gitlab!48326
-
Daniel Gruesso authored
Update IP restriction docs for GitLab.com See merge request gitlab-org/gitlab!57279
-
Amy Qualls authored
Remove Starter reference from MR doc See merge request gitlab-org/gitlab!57356
-
Brandon Labuschagne authored
Delete `gl_toggle_vuex.vue` component See merge request gitlab-org/gitlab!57221
-
Vitali Tatarintev authored
Merge branch '323731-spec-failure-in-ee-spec-features-groups-iterations-user_views_iteration_spec-rb-user-views' into 'master' Attempt to fix flaky test in `user_views_iteration_spec.rb` See merge request gitlab-org/gitlab!57238
-
Lin Jen-Shin authored
This reverts merge request !56913
-
Sean McGivern authored
Optimise query for Deployments::LinkMergeRequestWorker (Deployment#previous_environment_deployment) See merge request gitlab-org/gitlab!57039
-
David O'Regan authored
-
Marcin Sedlak-Jakubowski authored
Edited for style and CTRT See merge request gitlab-org/gitlab!57169
-
Suzanne Selhorn authored
Related to: https://gitlab.com/gitlab-org/gitlab/-/issues/300312
-
Marcin Sedlak-Jakubowski authored
Add tier badging for custom email See merge request gitlab-org/gitlab!57289
-
Nick Thomas authored
Remove N+1 for API commits/:sha/merge_requests See merge request gitlab-org/gitlab!57290
-
Marcin Sedlak-Jakubowski authored
Also, simplify "vice versa"
-
Nick Thomas authored
Validate for presence of dast_site_profile_id See merge request gitlab-org/gitlab!57309
-
Tan Le authored
This cop looks for delegations to predicate methods with `allow_nil` option. When delegating with this option enabled, we ends up with true, false and nil and this does not preserve the boolean nature of predicate methods. The preferred implementation is to define a method to handle `nil` and returns the correct Boolean value instead. delegate :is_foo?, to: :bar, allow_nil: true def is_foo? return false unless bar bar.is_foo? end def is_foo? !!bar&.is_foo? end
-