v14.0.0
Behavior Change
If you used a custom id to uri or uri to id translation procs in ActiveFedora 13.x or lower for ActiveFedora::Base objects they also applied to ActiveFedora::File objects. This no longer holds for ActiveFedora 14.x and higher. You will need to explicitly set the translation procs for ActiveFedora::File to match ActiveFedora::Base somewhere in your code like in an initializer:
ActiveFedora::File.translate_uri_to_id = ActiveFedora::Base.translate_uri_to_id
ActiveFedora::File.translate_id_to_uri = ActiveFedora::Base.translate_id_to_uri
What's Changed
- Support Rails 7 by @cbeer in #1485
- Ruby3 Support by @cjcolvar in #1489
- Release 14.0.0 by @cjcolvar in #1491
Full Changelog: v13.3.0...v14.0.0