From b8d928f4eadbd936c63eb524127371f82f86c95f Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Thu, 1 Aug 2024 22:37:50 -0400 Subject: [PATCH] Grab latest dependencies (#23) Updates dependencies including latest Rails from main. Comes with two new depredations caused by https://github.com/rails/rails/pull/52422 Reviewed-on: https://git.atomaka.com/atomaka/budget/pulls/23 --- Gemfile.lock | 30 ++++++++++--------- bin/dev | 10 ++----- bin/setup | 2 +- config/environments/development.rb | 9 +++--- config/environments/production.rb | 6 ++-- config/environments/test.rb | 6 ++-- .../initializers/filter_parameter_logging.rb | 2 +- .../new_framework_defaults_8_0.rb | 15 ++++++++++ 8 files changed, 46 insertions(+), 34 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 02434c0..993d80c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/rails/rails.git - revision: 27f3fa72a36132d5b6b6f1a4a953c350cd4b6a59 + revision: 8ab3cbe665b10459e1a518002f16413696979f90 branch: main specs: actioncable (8.0.0.alpha) @@ -71,6 +71,7 @@ GIT i18n (>= 1.6, < 2) logger (>= 1.4.2) minitest (>= 5.1) + securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) rails (8.0.0.alpha) actioncable (= 8.0.0.alpha) @@ -174,11 +175,11 @@ GEM net-smtp (0.5.0) net-protocol nio4r (2.7.3) - nokogiri (1.16.6-aarch64-linux) + nokogiri (1.16.7-aarch64-linux) racc (~> 1.4) - nokogiri (1.16.6-arm64-darwin) + nokogiri (1.16.7-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.6-x86_64-linux) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) parallel (1.25.1) parser (3.3.4.0) @@ -195,7 +196,7 @@ GEM puma (6.4.2) nio4r (~> 2.0) raabro (1.4.0) - racc (1.8.0) + racc (1.8.1) rack (3.1.7) rack-session (2.0.0) rack (>= 3.0.0) @@ -218,9 +219,9 @@ GEM regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) - rexml (3.3.2) + rexml (3.3.4) strscan - rubocop (1.65.0) + rubocop (1.65.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -251,6 +252,7 @@ GEM rubocop-rails ruby-progressbar (1.13.0) rubyzip (2.3.2) + securerandom (0.3.1) selenium-webdriver (4.23.0) base64 (~> 0.2) logger (~> 1.4) @@ -263,18 +265,18 @@ GEM concurrent-ruby (>= 1.3.1) fugit (~> 1.11.0) railties (>= 7.1) - sqlite3 (2.0.2-aarch64-linux-gnu) - sqlite3 (2.0.2-arm64-darwin) - sqlite3 (2.0.2-x86_64-linux-gnu) + sqlite3 (2.0.3-aarch64-linux-gnu) + sqlite3 (2.0.3-arm64-darwin) + sqlite3 (2.0.3-x86_64-linux-gnu) stimulus-rails (1.3.3) railties (>= 6.0.0) stringio (3.1.1) strscan (3.1.0) - tailwindcss-rails (2.6.3-aarch64-linux) + tailwindcss-rails (2.6.5-aarch64-linux) railties (>= 7.0.0) - tailwindcss-rails (2.6.3-arm64-darwin) + tailwindcss-rails (2.6.5-arm64-darwin) railties (>= 7.0.0) - tailwindcss-rails (2.6.3-x86_64-linux) + tailwindcss-rails (2.6.5-x86_64-linux) railties (>= 7.0.0) thor (1.3.1) timeout (0.4.1) @@ -298,7 +300,7 @@ GEM websocket-extensions (0.1.5) xpath (3.2.0) nokogiri (~> 1.8) - zeitwerk (2.6.16) + zeitwerk (2.6.17) PLATFORMS aarch64-linux diff --git a/bin/dev b/bin/dev index 74ade16..5f91c20 100755 --- a/bin/dev +++ b/bin/dev @@ -1,8 +1,2 @@ -#!/usr/bin/env sh - -if ! gem list foreman -i --silent; then - echo "Installing foreman..." - gem install foreman -fi - -exec foreman start -f Procfile.dev "$@" +#!/usr/bin/env ruby +exec "./bin/rails", "server", *ARGV diff --git a/bin/setup b/bin/setup index 57866ca..fc87df9 100755 --- a/bin/setup +++ b/bin/setup @@ -2,7 +2,7 @@ require "fileutils" APP_ROOT = File.expand_path("..", __dir__) -APP_NAME = "family_budget" +APP_NAME = "family-budget" def system!(*args) system(*args, exception: true) diff --git a/config/environments/development.rb b/config/environments/development.rb index bdeef60..1d7d909 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -22,21 +22,22 @@ Rails.application.configure do if Rails.root.join("tmp/caching-dev.txt").exist? config.action_controller.perform_caching = true config.action_controller.enable_fragment_cache_logging = true - - config.cache_store = :memory_store config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" } else config.action_controller.perform_caching = false - - config.cache_store = :null_store end + # Change this to :null_store to avoid any caching + config.cache_store = :memory_store + # Store uploaded files on the local file system (see config/storage.yml for options). config.active_storage.service = :local # Don't care if the mailer can't send. config.action_mailer.raise_delivery_errors = false + # Disable caching for Action Mailer templates even if Action Controller + # caching is enabled. config.action_mailer.perform_caching = false config.action_mailer.default_url_options = { host: "localhost", port: 3000 } diff --git a/config/environments/production.rb b/config/environments/production.rb index 8909435..1443b35 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -1,5 +1,3 @@ -require "active_support/core_ext/integer/time" - Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb. @@ -56,7 +54,7 @@ Rails.application.configure do # Log to STDOUT by default config.logger = ActiveSupport::Logger.new(STDOUT) - .tap { |logger| logger.formatter = ::Logger::Formatter.new } + .tap { |logger| logger.formatter = ::Logger::Formatter.new } .then { |logger| ActiveSupport::TaggedLogging.new(logger) } # Prepend all log lines with the following tags. @@ -74,6 +72,8 @@ Rails.application.configure do config.active_job.queue_adapter = :solid_queue # config.active_job.queue_name_prefix = "family_budget_production" + # Disable caching for Action Mailer templates even if Action Controller + # caching is enabled. config.action_mailer.perform_caching = false # Ignore bad email addresses and do not raise email delivery errors. diff --git a/config/environments/test.rb b/config/environments/test.rb index 83d1fa9..d26e422 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -1,5 +1,3 @@ -require "active_support/core_ext/integer/time" - # The test environment is used exclusively to run your application's # test suite. You never need to work with it otherwise. Remember that # your test database is "scratch space" for the test suite and is wiped @@ -18,7 +16,7 @@ Rails.application.configure do config.eager_load = ENV["CI"].present? # Configure public file server for tests with Cache-Control for performance. - config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{1.hour.to_i}" } + config.public_file_server.headers = { "Cache-Control" => "public, max-age=3600" } # Show full error reports and disable caching. config.consider_all_requests_local = true @@ -34,6 +32,8 @@ Rails.application.configure do # Store uploaded files on the local file system in a temporary directory. config.active_storage.service = :test + # Disable caching for Action Mailer templates even if Action Controller + # caching is enabled. config.action_mailer.perform_caching = false # Tell Action Mailer not to deliver emails to the real world. diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb index c010b83..c0b717f 100644 --- a/config/initializers/filter_parameter_logging.rb +++ b/config/initializers/filter_parameter_logging.rb @@ -4,5 +4,5 @@ # Use this to limit dissemination of sensitive information. # See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors. Rails.application.config.filter_parameters += [ - :passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn + :passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn, :cvv, :cvc ] diff --git a/config/initializers/new_framework_defaults_8_0.rb b/config/initializers/new_framework_defaults_8_0.rb index d8e7757..680ebbf 100644 --- a/config/initializers/new_framework_defaults_8_0.rb +++ b/config/initializers/new_framework_defaults_8_0.rb @@ -8,3 +8,18 @@ # # Read the Guide for Upgrading Ruby on Rails for more info on each option. # https://guides.rubyonrails.org/upgrading_ruby_on_rails.html + +### +# Specifies whether `to_time` methods preserve the UTC offset of their receivers or preserves the timezone. +# If set to `:zone`, `to_time` methods will use the timezone of their receivers. +# If set to `:offset`, `to_time` methods will use the UTC offset. +# If `false`, `to_time` methods will convert to the local system UTC offset instead. +#++ +# Rails.application.config.active_support.to_time_preserves_timezone = :zone + +### +# When both `If-Modified-Since` and `If-None-Match` are provided by the client +# only consider `If-None-Match` as specified by RFC 7232 Section 6. +# If set to `false` both conditions need to be satisfied. +#++ +# Rails.application.config.action_dispatch.strict_freshness = true