phoenix_live_dashboard changelog


Hey there, code adventurers! We've got some exciting updates for you. 🌟

Bugfix: We've squashed a pesky bug to ensure our app plays nicely with OTP 28! 🎉 Previously, our regex patterns were hanging out in module attributes, which OTP 28 wasn't too fond of. So, we've moved those regexes to a more OTP-friendly location. This change not only keeps things running smoothly but also makes sure our app is as solid as a rock while jiving with the latest Erlang/OTP standards. Happy coding! 🚀

Included Commits

2025-04-04T13:20:50 See commit

This commit addresses compatibility issues with OTP 28 by relocating regular expressions (regexes) from module attributes. The previous implementation, which relied on module attributes for defining regex patterns, encountered limitations in the new version of the Erlang/OTP framework. By moving the regex definitions out of module attributes, the code now adheres to the updated standards and practices introduced in OTP 28, ensuring smoother functionality and improved compatibility.

The changes made in this commit are essential for maintaining the integrity of the application while aligning with the latest developments in the Erlang ecosystem. This adjustment not only resolves potential errors but also enhances the overall robustness of the codebase, allowing developers to leverage the features of OTP 28 without encountering issues related to regex handling.

Files changed