Skip to content

Commit ed53bd3

Browse files
echarpTrim
authored andcommitted
chore: upgrade to Rails 7.2 and improve secrets handling
- Upgraded Rails from 7.1 to 7.2 in Gemfile and related files. - Updated config/initializers/secrets.rb to load secrets from environment variables if present, falling back to credentials if not. - Ensured that `secret_key_base`, `push_secret`, and `devise_pepper` are loaded securely. - Updated config/secrets.yml.sample to reflect the changes.
1 parent 0340b08 commit ed53bd3

20 files changed

Lines changed: 258 additions & 197 deletions

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ git_source(:github) do |repo_name|
55
"https://github.com/#{repo_name}.git"
66
end
77

8-
gem "rails", "~>7.1"
8+
gem "rails", "~>7.2"
99

1010
gem "actionpack-page_caching"
1111
gem "acts_as_list", "~>1.1"
@@ -22,7 +22,7 @@ gem "french_rails", "~>0.5", github: "linuxfrorg/french-rails"
2222
gem "friendly_id", "~>5.1"
2323
gem "haml", "~>6.3"
2424
gem "htmlentities", "~>4.3"
25-
gem "html-pipeline-linuxfr", "~>0.17", github: "linuxfrorg/html-pipeline-linuxfr"
25+
gem "html-pipeline-linuxfr", "~>0.17", github: "Trim/html-pipeline-linuxfr"
2626
gem "html_spellchecker", "~>0.1"
2727
gem "html_truncator", "~>0.4"
2828
gem "inherited_resources", "~>1.8"

0 commit comments

Comments
 (0)