8000 Update bug report template to Rails 7.2 by tagliala · Pull Request #8451 · activeadmin/activeadmin · GitHub
[go: up one dir, main page]

Skip to content

Update bug report template to Rails 7.2 #8451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tasks/bug_report_template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
end

# Change Rails version if necessary.
gem "rails", "~> 7.1.0"
gem "rails", "~> 7.2.0"

gem "sprockets", "~> 4.0"
gem "importmap-rails", "~> 2.0"
gem "sqlite3", "~> 1.x", force_ruby_platform: true, platform: :mri
gem "sqlite3", force_ruby_platform: true, platform: :mri

# Fixes an issue on CI with default gems when using inline bundle with default
# gems that are already activated
Expand Down Expand Up @@ -54,6 +54,7 @@ class TestApp < Rails::Application
config.hosts << ".example.com"
config.session_store :cookie_store, key: "cookie_store_key"
config.secret_key_base = "secret_key_base"
config.eager_load = false

config.logger = Logger.new($stdout)
Rails.logger = config.logger
Expand Down
0