Workarea 3.4.45
Patch release notes for Workarea 3.4.45
Improve image URL detection for dialog_buttons
This only worked if the URL had only one dot (before the file extension) and no query parameters. Run it through the URL parser to provide more robust handling.
Thanks to Jonathan Mast for contributing this.
Pull Requests
Bump redcarpet version to fix security warnings
Redcarpet released a security fix, so ensure using a version with that fix.
Redcarpet is only used to render help pages in the admin, so the vulnerability in Workarea is minimal.
Pull Requests
Improve password performance when running tests
Lowering the bcrypt cost lowers the time required to encrypt a password, at the cost of increasing the speed at which an attacker can try to crack the password. This is an acceptable tradeoff for improving performance of running tests. This shaves about 5 minutes off of the admin tests.
Hat tip to Jeff Yucis for discovery.