-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Avoid private `ActiveModel::Dirty#attributes_changed_by_setter` This method is removed in ActiveModel 6.0, and is private anyway. Avoid calling it for upgradability. * Drop support for Rails 5.1 Rails 5.1 support is ended. ActiveFedora 14 will drop support. * Rely on `ActiveModel::Dirty` to track previous changes We used to manually set `ActiveModel::Dirty` internals to track "previous changes". In Rails 6, these internals are completely rewritten and much more efficient. We can rely on the provided implementation instead of rolling our own. * Add support for Rails 6 Rails 6 is here. 🎉 * Drop support for Ruby 2.4
- Loading branch information
Tom Johnson
authored
Sep 13, 2019
1 parent
2b75d5e
commit 16e1f5e
Showing
7 changed files
with
10 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters