- 11 May, 2021 40 commits
-
-
Igor Drozdov authored
When a hash passed along with kwargs, only the first statement wins in Rails 6.1: ```ruby Group.where({ created_at: 30.days.ago..2.days.ago }, id: 1) ``` Takes only the first argument into account. In Rails 6.1 it should be passed as: ```ruby Group.where(created_at: 30.days.ago..2.days.ago, id: 1) ``` That's why we need a splat operator here.
-
Igor Drozdov authored
The following commit: https://github.com/rails/rails/commit/05c718a109184440ecc3e254e13f1145c30b2a6c Introduces changes after which ActiveRecord transaction's records may return nil
-
Igor Drozdov authored
In Rails 6.1 the string format for a date is returned when we apply Arel manipulations. Let's make sure that we receive Date format anyway
-
Igor Drozdov authored
Expecting one more SQL request doesn't seem to be critical Let's fix the spec by mitigation and address the N+1 query separately
-
Igor Drozdov authored
After Rails 6.1 changes related to ActiveModel errors the `#add` method doesn't return errors anymore. Let's just return the errors for backward compatibility
-
Igor Drozdov authored
In Rails 6.1 transaction_open? is called multiple times, so we should either expect a particular number of calls or just use allow and stub the return value. According to the context of this spec, it's sufficient to use allow in this case
-
Igor Drozdov authored
When `derailed_benchmarks` try to run a task, it initializes active storage. In Rails 6.1 config/storage.yml is required for it
-
Igor Drozdov authored
Rails 6.1 now returns `human` string instead of `nil` for a human User type
-
Jan Provaznik authored
Use symbols to access db config See merge request gitlab-org/gitlab!61095
-
Kushal Pandya authored
Fixes quick actions help page not showing on diff forms See merge request gitlab-org/gitlab!61029
-
Russell Dickenson authored
Revise the intro doc for project migration See merge request gitlab-org/gitlab!61185
-
Nick Gaskill authored
-
Russell Dickenson authored
Docs add browserker documentation See merge request gitlab-org/gitlab!56066
-
Cameron Swords authored
-
Kerri Miller authored
Remove unnecessary query from close_issue method [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!61087
-
Adam Cohen authored
-
Kushal Pandya authored
Add Assert that Timezone is Formatted Properly See merge request gitlab-org/gitlab!61374
-
Kushal Pandya authored
Remove SCSS extends from pipeline page bundles See merge request gitlab-org/gitlab!61309
-
Kushal Pandya authored
Add class hide-collapsed for elements See merge request gitlab-org/gitlab!60021
-
Tiger Watson authored
Revert "Merge branch '321625-epic_boards-redirect' into 'master'" See merge request gitlab-org/gitlab!61435
-
Russell Dickenson authored
Update tier badging for API page See merge request gitlab-org/gitlab!61244
-
Patrick Bajao authored
Remove the code review hll related feature flags [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!61078
-
Luke Duncalfe authored
Remove `value_stream_analytics_path_navigation` feature flag [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!60449
-
-
Illya Klymov authored
Bulk group migration e2e test See merge request gitlab-org/gitlab!60482
-
Mark Chao authored
Log when pipeline is rejected due to user not verified See merge request gitlab-org/gitlab!61386
-
Mark Chao authored
Remove redundant description_html field from Release Rest API See merge request gitlab-org/gitlab!61327
-
Gabriel Mazetto authored
Skip check precompiled assets locally See merge request gitlab-org/gitlab!61297
-
Thong Kuah authored
Cleanup api_caching_releases feature flag [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!61223
-
Luke Duncalfe authored
Log when build is dropped due to CI minutes exceeded See merge request gitlab-org/gitlab!61381
-
Shinya Maeda authored
Add asset links to release CLI commands See merge request gitlab-org/gitlab!60896
-
Jaime Martinez authored
-
🤖 GitLab Bot 🤖 authored
Update Gitaly version See merge request gitlab-org/gitlab!61422
-
Gabriel Mazetto authored
Remove vueify_shared_runners_toggle feature flag [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!61043
-
Shinya Maeda authored
This commit removes the redundant description_html field from the Release Rest API. The feature is still behind `remove_description_html_in_release_api` feature flag.
-
Marc Shaw authored
MR: gitlab.com/gitlab-org/gitlab/-/merge_requests/61078 Issue: gitlab.com/gitlab-org/quality/triage-reports/-/issues/2911
-
Evan Read authored
DOCS: Clarified username assertion not supported on GitLab.com See merge request gitlab-org/gitlab!61198
-
Mario Mora authored
-
Thong Kuah authored
Fix max_threads for Puma with no cli_config
-