Skip to content
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

Rails 7.1 Upgrade #1186

Merged
merged 3 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

services:
postgres:
image: postgres:13.12
image: postgres:15
env:
POSTGRES_HOST: localhost
POSTGRES_USER: postgres
Expand Down
1 change: 1 addition & 0 deletions .solargraph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ exclude:
require: []
domains: []
plugins:
- solargraph-rails
- solargraph-standardrb
reporters:
- require_not_found
Expand Down
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.4"

# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "rails", "~> 7.0.0"
gem "rails", "~> 7.1.0"

# Since Rails 7 sprockets is optional; we still use it so we need to depend on
# the gem explicitly
Expand All @@ -31,7 +31,7 @@ gem "jbuilder", "~> 2.11"
gem "acts_as_tenant"
gem "devise"
gem "pundit"
gem "audited", github: "simmerz/audited"
gem "audited"
gem "turbolinks_render"
gem "money-rails"
gem "mjml-rails" # , github: "jim/mjml-rails", branch: "webpacker"
Expand Down Expand Up @@ -78,6 +78,7 @@ group :development do
gem "web-console", ">= 3.3.0"
gem "listen"
gem "solargraph"
gem "solargraph-rails"
gem "solargraph-standardrb"
gem "lefthook"
gem "erb_lint", "~> 0.1.1"
Expand Down
Loading
Loading