- 19 Apr, 2022 40 commits
-
-
Albert Salim authored
Say load spec_helper first which is easier See merge request gitlab-org/gitlab!85367
-
Lin Jen-Shin authored
-
Shinya Maeda authored
Consolidate ProtectedEnvironment batch loading logic See merge request gitlab-org/gitlab!84802
-
Etienne Baqué authored
Add default scan execution policies stage to pipeline See merge request gitlab-org/gitlab!84640
-
Natalia Tepluhina authored
VSA fix broken docs link See merge request gitlab-org/gitlab!85364
-
Ezekiel Kigbo authored
Adds additional jest tests for the VSA aggregating warning message
-
Fiona Neill authored
Remove ambiguous line from group permissions table See merge request gitlab-org/gitlab!85063
-
Evan Read authored
-
Jan Provaznik authored
Add `identifer` to response to pass as metric See merge request gitlab-org/gitlab!84990
-
Vitaly Slobodin authored
Migrate localization checkbox to gitlab-ui See merge request gitlab-org/gitlab!84765
-
Aleksei Lipniagov authored
Remove a comment mentioning a change to bot emails See merge request gitlab-org/gitlab!85334
-
Natalia Tepluhina authored
Remove jest test callbacks from specs (1/3) See merge request gitlab-org/gitlab!84479
-
Etienne Baqué authored
Update icon to long arrow See merge request gitlab-org/gitlab!85272
-
Jan Provaznik authored
Add a function to determine if a project is inactive See merge request gitlab-org/gitlab!84935
-
Jacques Erasmus authored
Migrate checkboxes to Pajamas form See merge request gitlab-org/gitlab!84757
-
Alex Pooley authored
Swap OncallRotations::BaseService to use ::BaseProjectService See merge request gitlab-org/gitlab!84656
-
Sarah Yasonik authored
Per developer style guides, we prefer to use a BaseContainerService class as the base class for any services.
-
Jacques Erasmus authored
Merge branch '323081-scrolling-to-the-bottom-of-the-user-profile-overview-page-triggers-the-infinite-scroll' into 'master' Fix infinite activities requests on profile See merge request gitlab-org/gitlab!84999
-
Adam Hegyi authored
Merge branch '357422-activerecord-querycanceled-pg-querycanceled-error-canceling-statement-due-to-statement' into 'master' Resolve "ActiveRecord::QueryCanceled: PG::QueryCanceled: ERROR: canceling statement due to statement timeout" See merge request gitlab-org/gitlab!84283
-
Gregory Havenga authored
Unscoping the where: :build_id scope from the cleanup_service scan_batch relation resolves a strange issue where this query was being carried through to the Security::Finding queries. `unscope` is not permitted for use outside of models, so this action was moved to a scope on the Security::Scan model. Changelog: performance MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/84283 EE: true
-
Jacques Erasmus authored
Merge branch '358363-replace-generic-checkbox-with-gitlab-ui-styled-checkbox-in-ee-app-views-admin' into 'master' Replace generic checkbox with GitLab UI styled checkbox in ee/app/views/admin/application_settings/_pseudonymizer.html.haml See merge request gitlab-org/gitlab!84883
-
Max Woolf authored
Fix order dependent cleanup package file worker spec See merge request gitlab-org/gitlab!85235
-
Adam Hegyi authored
Remove security_scan_succeeded from code See merge request gitlab-org/gitlab!84222
-
PaytonBurdette authored
-
PaytonBurdette authored
Migrate the checkbox to use gitlab ui styles. Changelog: changed
-
Shinya Maeda authored
Add comment on creator_id on Deploy Tokens See merge request gitlab-org/gitlab!85158
-
Adam Hegyi authored
Use Arel-native nulls order See merge request gitlab-org/gitlab!84377
-
Aleksei Lipniagov authored
Remove Database.nulls_order implementation with Arel-native implementation of the same funcion.
-
Steven Van der Jeugt authored
Changelog: changed EE: true
-
Ezekiel Kigbo authored
Merge branch '358366-replace-generic-checkbox-with-gitlab-ui-styled-checkbox-in-ee-app-views-groups-hooks' into 'master' Pajamas migration day: replace checkboxes for group member hooks See merge request gitlab-org/gitlab!84753
-
Ezekiel Kigbo authored
Merge branch 'aregnery/add-projects-from-environments-dashboard-button-variant-update' into 'master' Change variant to confirm for add project button See merge request gitlab-org/gitlab!84720
-
Thong Kuah authored
Set schema of tracking tables to gitlab_shared See merge request gitlab-org/gitlab!84992
-
Thong Kuah authored
Better fix for PG::ObjectInUse error when dropping databases See merge request gitlab-org/gitlab!85006
-
Ezekiel Kigbo authored
Migrate import requirements button to confirm See merge request gitlab-org/gitlab!84812
-
Marcel van Remmerden authored
-
Thong Kuah authored
Extend decomposition prometheus metric with information about CI See merge request gitlab-org/gitlab!85178
-
Mark Chao authored
Use GlBroadcastMessage in Broadcast Message admin settings page See merge request gitlab-org/gitlab!83251
-
Dylan Griffith authored
docs: Check off task for cross-joins See merge request gitlab-org/gitlab!85346
-
Thong Kuah authored
It should not keep the geo as "ActiveRecord::Base" connection
-
Thong Kuah authored
This requires a few things to be true: 1. Database connections are opened during routes. This is true for the GitLab application. Note this is not allowed anymore in Rails 7. 2. Multiple databases are configured. With a single database, Rails has always accidentally closed the database connection for the main database. This fix removes prior attempts to drop the connection(s) Database connections opened in other initializers are still an issue but Rails kindly closes them for us. Unfortunately Rails has an initializer, set_routes_reloader_hook which is run _after_ `config.after_initialize`. The sequence goes like this: 1. Various initializers run, including route loading. 1. `config.after_initialize` blocks run (called by Gitlab::Application.finisher_hook). One of the `config.after_initialize` blocks run is to close all database connections. 1. `Gitlab::Application.set_routes_reloader_hook` initializer runs. This loads routes again. So this fix is simple: we simply call the same thing Rails to close all database connections again.
-