- 15 Mar, 2021 40 commits
-
-
Gabriel Mazetto authored
Instead of relying on one query, catching and exception and then another fallback query, we now use a case statement which always work.
-
Gabriel Mazetto authored
-
Nathan Friend authored
Remove boolean eql check in keybindings See merge request gitlab-org/gitlab!56616
-
Achilleas Pipinellis authored
Updated Geo docs for Group Wiki See merge request gitlab-org/gitlab!55986
-
Fabian Zimmer authored
-
David O'Regan authored
Move from btn-success to btn-confirm in pages See merge request gitlab-org/gitlab!56348
-
Yogi authored
-
David O'Regan authored
Move from btn-success to btn-confirm in pages_domains See merge request gitlab-org/gitlab!56349
-
Yogi authored
-
Ezekiel Kigbo authored
Add iteration to new board new list form See merge request gitlab-org/gitlab!55500
-
Simon Knox authored
Allow adding iteration lists to boards Supports graphql and plain ol boards
-
Phil Hughes authored
Fix commit graph toolips being left visible when scrolling on Firefox See merge request gitlab-org/gitlab!56631
-
🤖 GitLab Bot 🤖 authored
Update Gitaly version See merge request gitlab-org/gitlab!56645
-
Marcia Ramos authored
Install using CI/CD is no longer alpha (docs) See merge request gitlab-org/gitlab!56161
-
Marcia Ramos authored
Don't mention specific services versions in the pipelines documentation See merge request gitlab-org/gitlab!56244
-
Olena Horal-Koretska authored
Migrate import button on issue empty state to Vue See merge request gitlab-org/gitlab!55761
-
GitLab Release Tools Bot authored
-
Natalia Tepluhina authored
Add task list support in Issuable Show app See merge request gitlab-org/gitlab!56196
-
Adam Hegyi authored
Fix duplicates in create_table_with_constraints See merge request gitlab-org/gitlab!56611
-
Dmytro Zaporozhets (DZ) authored
Improve performance of atomic processing service tests See merge request gitlab-org/gitlab!56550
-
Grzegorz Bizon authored
Add trigger support for matrix jobs See merge request gitlab-org/gitlab!55348
-
Furkan Ayhan authored
With this, users can define trigger jobs with parallel-matrix config.
-
🤖 GitLab Bot 🤖 authored
Update Gitaly version See merge request gitlab-org/gitlab!56629
-
Vitali Tatarintev authored
Notify email_participants instead of external_author See merge request gitlab-org/gitlab!51023
-
Achilleas Pipinellis authored
Docs. Added clarification about multiple wildcards for one instance See merge request gitlab-org/gitlab!56542
-
Mario Mora authored
-
Etienne Baqué authored
Correct Display of Billable Users on Users Statistics Page See merge request gitlab-org/gitlab!56152
-
Jason Goodman authored
Use correct calculation for billable users row Add active users row
-
Bob Van Landuyt authored
Add Edit Oncall Rotation Service See merge request gitlab-org/gitlab!55258
-
Sean Arnold authored
- Add migrations - Add specs for new methods - Update code to use new scopes
-
Olena Horal-Koretska authored
Update oncall grid UX See merge request gitlab-org/gitlab!55807
-
David O'Regan authored
-
Mark Florian authored
Update schema for excluded urls in DAST site profile form See merge request gitlab-org/gitlab!56450
-
Jonathan Duncan authored
Multiple commit graph tooltips could remain visible on Firefox when scrolling over the commit graph. The cause of thi problem is that each scroll event on network graph calls `renderPartialGraph()` to re-render the graph if needed to show newly scrolled parts. This in turn calls `top.toFront()` to bring certain SVG elements of the tooltip to the top of the z-index. However this is not just the tooltip and also includes the anchor element (i.e. the dot that has the hover event handler registered for it). `toFront()` is a function provided by raphael which ultimately calls appendChild on each of the nodes in the set. This "re-adds" them to the SVG DOM and ensure that they are on top. On Firefox (as least as far back as 53 and up to 84) this `appendChild` effectively removes the element from the DOM for a short period before re-adding it. Because we're triggering `renderPartialGraph()` from scroll events, at the same time a previously hovered anchor can become un-hovered. The "remove from DOM" behaviour on Firefox introduces a race condition which means that the mouseout event can fail to be delivered to these temporarily removed elements. This in turn stops gitlab's hover out handler from firing and this stop the tooltip from being removed. Chrome doesn't have this behaviour and seems to still deliver events to the `appendChild`'ed elements. This fix changes the network graph code to only call `toFront()` on the actual tooltip elements themselves (which do not have any hover event handlers registered) rather than the anchor elements as well.
-
Kushal Pandya authored
Add support for task lists in Issuable Show app to make it work in Test Cases.
-
Natalia Tepluhina authored
Reduce max nesting depth in SCSS to 3 See merge request gitlab-org/gitlab!56515
-
Vitaly Slobodin authored
Surprisingly stylelint does not support reporting of already found violations with enabled caching. The caching option works for changed files only. See https://github.com/stylelint/stylelint/issues/4314
-
Heinrich Lee Yu authored
Change status for deprecated metrics See merge request gitlab-org/gitlab!56522
-
Natalia Tepluhina authored
Added reference Vue component See merge request gitlab-org/gitlab!55431
-
Donald Cook authored
Including tests and also fixed clipboard_button tooltip going offscreen
-