Skip to content

v14.0.0

Compare
Choose a tag to compare
@cjcolvar cjcolvar released this 27 Jan 19:46
· 25 commits to main since this release
8e7d365

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

Full Changelog: v13.3.0...v14.0.0