Skip to content

v2.4.0 - Rails 7

Compare
Choose a tag to compare
@mathieujobin mathieujobin released this 02 May 09:56
· 40 commits to master since this release

v2.4.0 (2022-05-02)

Full Changelog

  • Rails 7.0 Official support.
  • Please read Upgrade notes, a migration is required to rename the encrypt column to encrypted.

Upgrading

If you are upgrading from <= 2.3.1 into >= 2.4, then you must run a migration to rename the encrypt column.
This rename was required for adding support for Rails 7.

You can use this migration.

# db/migrate/20220427113942_rename_encrypt_on_webhook_subscriptions.rb
class RenameEncryptOnWebhookSubscriptions < ActiveRecord::Migration[7.0]
  def change
    rename_column :webhook_subscriptions, :encrypt, :encrypted
  end
end