- 19 Apr, 2022 40 commits
-
-
Tiffany Rea authored
Add feature_flag Tag to Verify UI Defined Variable Tests See merge request gitlab-org/gitlab!85386
-
Valerie Burton authored
-
Phil Hughes authored
Remove setting link from branches page See merge request gitlab-org/gitlab!85323
-
Kati Paizee authored
Update metadata from licensing to provision See merge request gitlab-org/gitlab!84978
-
Fiona Neill authored
-
Alex Kalderimis authored
Add new packages build infos finder See merge request gitlab-org/gitlab!85073
-
Rémy Coutable authored
Remove geo database from db_config_names See merge request gitlab-org/gitlab!84991
-
Ian Baum authored
* Breaks the gitlab:background_migrations:finalize on GDK instances using Geo * Other usage of db_config_names does not apply to the 'geo' instance Changelog: fixed
-
Lin Jen-Shin authored
Merge branch '359126-the-package-and-qa-job-should-run-when-there-are-updates-to-the-yarn-lock-file' into 'master' ci: Run `package-and-qa` when NodeJS dependency files are touched See merge request gitlab-org/gitlab!85384
-
Bob Van Landuyt authored
Fix feature category and change endpoints urgency (Auth & Workspace) See merge request gitlab-org/gitlab!83821
-
Jarka Košanová authored
-
Rémy Coutable authored
Update doc/ci/pipelines/merge_request_pipelines.md See merge request gitlab-org/gitlab!85409
-
Markus Koller authored
Bump Gitlab Shell version to 13.25.1 See merge request gitlab-org/gitlab!85392
-
Miguel Rincon authored
Use GlAvatar in environments dashboard See merge request gitlab-org/gitlab!84686
-
Tom Quirk authored
Changelog: changed
-
David Dieulivol authored
-
Jan Provaznik authored
Fixes for custom emoji See merge request gitlab-org/gitlab!84304
-
Kati Paizee authored
Add review step to review database.yml.postgresql See merge request gitlab-org/gitlab!85377
-
Thong Kuah authored
-
Savas Vedova authored
Add tests for vulnerability_report.vue See merge request gitlab-org/gitlab!85293
-
Vasilii Iakliushin authored
Fix schema helpers for restricted migrations See merge request gitlab-org/gitlab!83456
-
Natalia Tepluhina authored
Rename HelpPopover when imported by report_section See merge request gitlab-org/gitlab!83976
-
Natalia Tepluhina authored
Increase the visibility of the keyboard shortcut for Global Search See merge request gitlab-org/gitlab!84085
-
Matthias Käppler authored
Optimize followed users queries See merge request gitlab-org/gitlab!84856
-
Adam Hegyi authored
This change prepares a new index on the events table and changes the followed users queries to use the in-operator optimization. Changelog: added
-
Bob Van Landuyt authored
Assign urgencies to group::workspace owned endpoints See merge request gitlab-org/gitlab!84418
-
Abdul Wadood authored
The endpoints with higher number of requests on gitlab.com are assigned higher urgency and vice-versa.
-
Lin Jen-Shin authored
ci: Validate the experiment that retries failed tests in a new process See merge request gitlab-org/gitlab!85265
-
Annabel Dunstone Gray authored
Changelog: changed
-
Tomas Bulva authored
closes issue: https://gitlab.com/gitlab-org/gitlab/-/issues/342427/ This commit adds a keyboard shortcut visual cue to search the input field. It is automatically hidden when input fields become active. Visual cue adjusts to all possible color themes. It also overpowers the clear button when there is input in the field but the field is not active. Changelog: fixed
-
Fiona Neill authored
Use consistent navigation steps for integrations See merge request gitlab-org/gitlab!85381
-
Kati Paizee authored
-
Igor Drozdov authored
- Upgrade golang to 1.17.8 - Add additional metrics to gitlab-sshd - Add support for FIPS encryption
-
Frédéric Caplette authored
Pipeline Graph: Update stage name to truncate when text is too long See merge request gitlab-org/gitlab!85139
-
Briley Sandlin authored
To prevent the stage name from hiding behind the ActionComponent, truncation is added along with a title for hover. Changelog: fixed
-
Toon Claes authored
Not all markdown fields are related to a project. Some, like those in Epics, might be related to a group. So in addition to finding the containing namespace through the project, also get try to get it from the group or namespace. Because we moved the responsibility of looking up the root namespace to the scope #for_resource in CustomEmoji, we can rely on that. This fixes custom emoji in Epic descriptions and notes. Changelog: fixed
-
Toon Claes authored
Custom Emoji is still behind a default-disabled feature flag [1]. With this change a few codepaths that weren't guarded by the feature flag are now disabled when the feature is not active. 1. https://gitlab.com/gitlab-org/gitlab/-/issues/231317
-
Toon Claes authored
Award Emoji can be awarded on many things and it can be difficult to determine which namespace the awardable belongs to. Thus to centralize the logic that finds the custom emoji for an awardable, we introduce a scope on the CustomEmoji model that accepts a resource (being either a Project or a Group), determines it's root namespace, and finds all CustomEmoji for it. In combination with the previous commit, all the Awardable models respond to #resource_parent, which can be provided to this new scope. This change fixes award emoji on merge requests, epics, and issues in nested groups. Changelog: fixed
-
Toon Claes authored
In a future commit we will be calling #resource_parent on an object we don't know the exact type of. But all of them respond to that method, except for Snippet. With this change we can safely call it without getting a NoMethodError.
-
Toon Claes authored
When we serialize the attributes of an awarded emoji, we ask the url of the emoji. This will only be set for Custom Emoji, and to find it, we need to look it up in the database. Now for built-in emoji, we know all the names of those, and we know they don't have an url set. So if the awarded emoji is one of the built-in, early return without ever querying the database. To ensure this behavior, and the method will not error-out, test coverage is added for AwardEmoji#url. Changelog: fixed
-