Skip to content

Commit 30699be

Browse files
author
GitLab Bot
committed
Add latest changes from gitlab-org/gitlab@master
1 parent 7868c6b commit 30699be

File tree

74 files changed

+3521
-221
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+3521
-221
lines changed

.rubocop_todo/rspec/named_subject.yml

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ RSpec/NamedSubject:
5757
- 'ee/spec/controllers/sitemap_controller_spec.rb'
5858
- 'ee/spec/controllers/subscriptions_controller_spec.rb'
5959
- 'ee/spec/db/production/license_spec.rb'
60-
- 'ee/spec/elastic/migrate/20230724070100_backfill_epics_spec.rb'
6160
- 'ee/spec/features/projects/pipelines/pipeline_spec.rb'
6261
- 'ee/spec/features/user_sees_marketing_header_spec.rb'
6362
- 'ee/spec/features/users/login_spec.rb'

Gemfile

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# frozen_string_literal: true
22

3+
def next?
4+
File.basename(__FILE__) == "Gemfile.next"
5+
end
6+
37
source 'https://rubygems.org'
48

59
if ENV.fetch('BUNDLER_CHECKSUM_VERIFICATION_OPT_IN', 'false') != 'false' # this verification is still experimental
@@ -24,7 +28,12 @@ gem 'bundler-checksum', '~> 0.1.0', path: 'vendor/gems/bundler-checksum', requir
2428
# https://gitlab.com/gitlab-org/gitlab/-/issues/375713
2529
#
2630
# See https://docs.gitlab.com/ee/development/gemfile.html#upgrade-rails for guidelines when upgrading Rails
27-
gem 'rails', '~> 7.0.8.4' # rubocop:todo Gemfile/MissingFeatureCategory
31+
32+
if next?
33+
gem 'rails', '~> 7.1.3.4', feature_category: :shared
34+
else
35+
gem 'rails', '~> 7.0.8.4', feature_category: :shared
36+
end
2837

2938
gem 'activerecord-gitlab', path: 'gems/activerecord-gitlab' # rubocop:todo Gemfile/MissingFeatureCategory
3039

Gemfile.next

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Gemfile

Gemfile.next.checksum

+784
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)