phoenix changelog


Changelog

Hey there, awesome developers! 🎉 We've got some updates to share that will make your coding life smoother and more fun. Check out the latest changes:

  • Bugfix: Fixed a pesky bug in the phx.server command that caused it to halt when the -- separator was used. Now, you can run your commands without any hiccups! Big shoutout to Jerko Culina for the collaborative effort in squashing this bug. 🐛💥

Keep on coding and happy developing! 🚀

Included Commits

2024-07-19T13:47:20 See commit

This commit addresses a bug in the phx.server command, which previously halted when the separator -- was used in the command line arguments. The modification was made in the lib/mix/tasks/phx.server.ex file, where the order of argument handling was corrected. Instead of appending the results of open_args(args) to run_args(), the code now appends run_args() to open_args(args), ensuring the command executes properly without interruptions.

The change involved a single addition and deletion, resulting in a cleaner execution flow for the phx.server command. This fix enhances the overall functionality and reliability of the command, allowing developers to use it without encountering the halting issue. The commit was co-authored by Jerko Culina, indicating collaborative effort in resolving this issue.

Files changed

  • lib/mix/tasks/phx.server.ex