- 20 May, 2020 40 commits
-
-
Marcin Sedlak-Jakubowski authored
-
Jan Provaznik authored
Add negated params filter to epics search See merge request gitlab-org/gitlab!32296
-
Kushal Pandya authored
Fixes Monaco library loading on merge requests See merge request gitlab-org/gitlab!32540
-
Achilleas Pipinellis authored
Docs: Added metadata for Package See merge request gitlab-org/gitlab!32608
-
Natalia Tepluhina authored
Merge branch 'update-slot-syntax-of-ee/app/assets/javascripts/vue_shared/security_reports/components/modal.vue' into 'master' Update deprecated slot syntax in` ee/app/assets/javascripts/vue_shared/security_reports/components/modal.vue` See merge request gitlab-org/gitlab!31966
-
Gilang Gumilar authored
Update deprecated slot syntax in` ee/app/assets/javascripts/vue_shared/security_reports/components/modal.vue`
-
Enrique Alcántara authored
Stop reusing design component on route change See merge request gitlab-org/gitlab!32447
-
Natalia Tepluhina authored
- Fixed router spec
-
Natalia Tepluhina authored
Remove unused monitoring bundle file See merge request gitlab-org/gitlab!32389
-
Natalia Tepluhina authored
Change link for Threat Monitoring docs to docs.gitlab.com See merge request gitlab-org/gitlab!32576
-
Kushal Pandya authored
Merge branch '205401-cannot-view-content-of-moved-file-without-changes-in-merge-request' into 'master' Add UI to load the full file for `renamed`-type files See merge request gitlab-org/gitlab!28448
-
Rémy Coutable authored
Improve danger bot layout for telemetry review Closes #217719 See merge request gitlab-org/gitlab!32071
-
Achilleas Pipinellis authored
Minor improvements to Puma docs See merge request gitlab-org/gitlab!32621
-
Stan Hu authored
Add describe blocks to emails_on_push_service_spec See merge request gitlab-org/gitlab!32439
-
Alessio Caiazza authored
Revert '207250-allow-admins-to-modify-mr-approval-settings..' to 'master' See merge request gitlab-org/gitlab!32610
-
Natalia Tepluhina authored
Add truncation for the environment dropdown See merge request gitlab-org/gitlab!32267
-
Kushal Pandya authored
Make text property optional for custom var types See merge request gitlab-org/gitlab!32596
-
Peter Leitzen authored
Fix leaky constant in sidekiq middleware client metric specs See merge request gitlab-org/gitlab!32108
-
Rajendra Kadam authored
-
Marcel Amirault authored
Add front matter to vale subst rules Closes #218431 See merge request gitlab-org/gitlab!32616
-
Martin Wortschack authored
Step 1 - Clean up some collapsible_panel things See merge request gitlab-org/gitlab!32464
-
Stan Hu authored
Add explicit schema version check See merge request gitlab-org/gitlab!32524
-
Joshua Lambert authored
-
Dylan Griffith authored
Resolve "Improve performance of Search API (Advanced): merge_requests scope" See merge request gitlab-org/gitlab!30546
-
Terri Chu authored
Create MergeRequestPreloader for Search API to be used with merge_requests scope. The preloader lazily loads attributes using BatchLoader and utilizes the lazy attributes in the MergeRequestBasic Entity if lazy_load option is set. This improves response times by avoiding N+1 queries.
-
Tan Le authored
Revert "Merge branch '207250-allow-admins-to-modify-mr-approval-settings-at-the-project-level-after-enabling-them-in' into 'master'" This reverts merge request !30358
-
Dylan Griffith authored
Persist banner dismissal See merge request gitlab-org/gitlab!31894
-
Evan Read authored
Also improves wording of sentence.
-
Miguel Rincon authored
The monitoring_bundle_with_alerts was a quick fix for migrating custom metrics to CE, this is file is not needed anymore.
-
Marcel Amirault authored
Add 'style guide' to Vale substitution rules See merge request gitlab-org/gitlab!32614
-
Marcel Amirault authored
Docs: Added metadata for Release stage See merge request gitlab-org/gitlab!32607
-
Evan Read authored
-
Evan Read authored
Docs: mark GitLab Status Pages as Ultimate See merge request gitlab-org/gitlab!32482
-
Thomas Randolph authored
-
Thomas Randolph authored
-
Thomas Randolph authored
-
Thomas Randolph authored
-
Thomas Randolph authored
And: reduce all the possible state combinations to a FSM Per design review, this component needed a bunch more interactivity. Most critically, around displaying and responding to a load error. Rather than set a bunch of flags and toggle various elements based on a collection of booleans, I think it's much easier to reason about this component if it has a Finite State Machine representing its possible states and transitions between them. The two notable logic additions here are a rudimentary FSM (`transition`) and a state checker (`is`). `transition` defines all the ways the component can go from one state to another. If a transition is attempted that doesn't match one of these declared transitions, it does nothing. Every transition always results in a declared state. these two things combined make it much easier to reason about what the component should look like at any given moment. Other than the state machine (which should be replaced with something like @xstate/fsm), the rest of these changes are text changes from UX/technical writing review.
-
Thomas Randolph authored
Also updates other components that eventually use the same component
-
Thomas Randolph authored
Per our design docs, global flash messages aren't appropriate in this context (or virtually anywhere!), so there's no reason to catch this error here.
-