The first beta release for 5.1.0 is out with some love towards JavaScript, System Tests, Encrypted Secrets and more! There is also a new stable release for 4.2.8 and a release candidate for 5.0.2
Rails has a built in integration with Capybara now which makes writing system tests easier, since all the setup is handled by Rails. For more details read the write-up on the pull request.
Rails introduces secrets encryption which is inspired by the Sekrets gem. It worth noting here that, some improvements to the crypto is on the way too.
Earlier the JobID wasn't logged when a job started or ended performing, but that's not the case anymore, making debugging of job related issues easier.
After freezing an ActiveSupport::TimeWithZone instance, it is not possible to call to_datetime because the value is cached in an instance variable. To avoid this issue, the instance variable is preloaded before the freeze occurs.