- 08 Feb, 2022 28 commits
-
-
Achilleas Pipinellis authored
Change pending jobs command to print count See merge request gitlab-org/gitlab!79601
-
Sean Arnold authored
Reject reply by email to notification if the from email is not verified See merge request gitlab-org/gitlab!79932
-
Sincheol (David) Kim authored
Changelog: fixed
-
Harsh Chouraria authored
The command added in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/75388 and then subsequently updated in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/78242 is attempting to print out an active record collection (with `pending` being an activerecord enum status match helper) that has not any usable printing inside it (only Ruby Object IDs are printed) Since the goal of these commands is to check for any actual pending jobs continuing to exist even outside of the Sidekiq jobs queue the command could be updated to print the count of matching status records Alternatively the following can be used to identify the actual pending classes and their arguments that have not yet completed: ``` gitlab-rails runner -e production \ 'puts Gitlab::Database::BackgroundMigrationJob.pending.map do |x| [x.class_name, x.arguments] end' ```
-
Jacques Erasmus authored
Fix Typo in Protected Tags Settings See merge request gitlab-org/gitlab!80028
-
Niklas authored
Changelog: fixed
-
Fiona Neill authored
Fix SAST report format link See merge request gitlab-org/gitlab!80032
-
Russell Dickenson authored
-
Peter Hegman authored
Fix projects dark mode colors See merge request gitlab-org/gitlab!80025
-
Coung Ngo authored
-
Kushal Pandya authored
Add pagination to the compliance violations report See merge request gitlab-org/gitlab!79323
-
Jiaan Louw authored
- Adds the `GlKeysetPagination` component. - Adds pagination to the GraphQL query. - Updates report spec.
-
Dylan Griffith authored
Add a check for path traversal in manifest_file_name See merge request gitlab-org/gitlab!79688
-
Kushal Pandya authored
Roadmap - Fix today indicator alignment See merge request gitlab-org/gitlab!80126
-
Simon Knox authored
Improve retry tooltip for failed pipeline See merge request gitlab-org/gitlab!79888
-
Payton Burdette authored
Changelog: changed
-
Simon Knox authored
Update archive modals' buttons See merge request gitlab-org/gitlab!80053
-
Shinya Maeda authored
Remove Gitlab::Utils::StrongMemoize inclusion as it's duplicate See merge request gitlab-org/gitlab!75863
-
Shinya Maeda authored
Remove ::Gitlab::Utils::StrongMemoize inclusion as it's duplicate See merge request gitlab-org/gitlab!75857
-
Florie Guibert authored
Changelog: fixed EE: true
-
Tiger Watson authored
Fix provisioned_users API endpoint with full_path See merge request gitlab-org/gitlab!80061
-
Evan Read authored
Changing warnings to avoid call requests See merge request gitlab-org/gitlab!79979
-
olivier némoz saint-dizier authored
-
Michael Kozono authored
Merge branch '348357-deprecate-custom-rake-geo-db-rake-tasks-in-favor-of-built-in-tasks-rake-db-geo' into 'master' Deprecate custom geo:db:* rake tasks in favor of built-in tasks See merge request gitlab-org/gitlab!77269
-
Douglas Barbosa Alexandre authored
Deprecate custom geo:db:* rake tasks in favor of built-in rake tasks db:*:geo Changelog: changed EE: true
-
Mayra Cabrera authored
feat: Update SECURE_ANALYZER_PREFIX in all Sec Section templates See merge request gitlab-org/gitlab!79063
-
Lucas Charles authored
BREAKING CHANGE: migrate form SECURE_ANALYZER_PREFIX to SEC_REGISTRY_PREFIX to gracefully deprecate previous prefixing and point to new container registries at top-level namespace Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/334325 Changelog: deprecated
-
Mark Lapierre authored
Adds integration settings form spec See merge request gitlab-org/gitlab!79891
-
- 07 Feb, 2022 12 commits
-
-
Stan Hu authored
Move Rails SLI initialization to boot path See merge request gitlab-org/gitlab!80059
-
Michael Kozono authored
Add GraphQL API endpoint access from primary to secondary Geo nodes See merge request gitlab-org/gitlab!79431
-
Stan Hu authored
Update Go to version 1.17.6, workhorse See merge request gitlab-org/gitlab!79562
-
Sean Arnold authored
Remove enable_ci_variable_caching feature flag See merge request gitlab-org/gitlab!79819
-
Andrejs Cunskis authored
E2E: Add timestamp field to collected fabrication data See merge request gitlab-org/gitlab!79998
-
Andrew Fontaine authored
MacOS remove horizontal scroll in left navigation See merge request gitlab-org/gitlab!80015
-
Omer Faruk Merey authored
Changelog: fixed MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/80015 EE: true
-
Achilleas Pipinellis authored
List versions for maintenance mode bug-fixes See merge request gitlab-org/gitlab!79594
-
Evan Read authored
Add info about confidential issues shown in contributed projects See merge request gitlab-org/gitlab!79825
-
Fiona Neill authored
-
Achilleas Pipinellis authored
Add more detail about mail_room version update for local development See merge request gitlab-org/gitlab!80036
-
Sincheol (David) Kim authored
-