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

Upgrade to Rails 6.1 #203

Draft
wants to merge 3 commits into
base: staging
Choose a base branch
from
Draft

Upgrade to Rails 6.1 #203

wants to merge 3 commits into from

Commits on Sep 5, 2022

  1. Disable Sprockets (asset pipeline)

    We don't use it, and having it enabled makes upgrading Rails harder.
    patbl committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    9a909d8 View commit details
    Browse the repository at this point in the history
  2. Replace update_attributes with update

    `update_attributes` will be removed in Rails 6.1. This deprecation
    warning was being printed:
    
        update_attributes is deprecated and will be removed from Rails 6.1
        (please, use update instead)
    patbl committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    6e8b556 View commit details
    Browse the repository at this point in the history
  3. Upgrade to Rails 6.1

    The command that generated these changes was
    
        bundle update --conservative actioncable actionmailbox \
          actionmailer actionpack actiontext actionview \
          activesupport activemodel activerecord activestorage \
          rails railties tzinfo
    patbl committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    2881105 View commit details
    Browse the repository at this point in the history