Sebastian Riedel
Sebastian Riedel
There's been a lot of fail reports from CPANTesters recently such as [this one](http://www.cpantesters.org/cpan/report/7cca4e27-6c03-1014-aee1-3d47a1bbad75). At the very least these IPv6 tests should be hidden behind a `TEST_IPV6` environment variable. ```...
I'm quite happy with the mojo.js [logger](https://github.com/mojolicious/mojo.js/blob/main/src/logger.ts). It uses a JSON friendly data structure for context information. That makes JSON logging and support for custom formatters very easy. I think...
Originally we were planning to make [JSON::Validator](https://github.com/mojolicious/json-validator) a Mojolicious spin-off project and have the very important topic of data structure validation covered that way. But unfortunately that has not worked...
Not a particularly hard task, but converting all tests is a lot of work. We want to go from: ```perl # Promisify is ref Mojo::Promise->resolve('foo'), 'Mojo::Promise', 'right class'; $promise =...
The [current code](https://github.com/mojolicious/mojo/blob/1a5b8c6f837cb4b3c4be7fe507fea248091e032a/lib/Mojo/Message.pm#L249-L282) is surprisingly inefficient and runs twice for params and uploads. That's need to be cleaned up.
We already have support for [receiving file descriptors](https://docs.mojolicious.org/Mojo/Server/Daemon#listen) from a parent process (`$daemon->listen(['http://127.0.0.1?fd=3'])`) in `Mojo::Server::Daemon` and `Mojo::Server::Prefork` for systemd. So Morbo feels a bit antiquated with its insistence on only...
This is very similar to #1119, there is no real documentation in `Mojo::Promise`. I think it would be nice to explain at the least the basics of how to use...
The motivation for this is https://github.com/mojolicious/minion/issues/76. But there are many other use cases for running arbitrary code in a persistent helper process next to the Mojolicious application server. While forking...
The final HTTP/2 spec is still at least 1-2 years away, but now that the first draft (based on SPDY) has been released, i believe we can at least start...
As a followup to #1600, now that #1602 has been merged, we do still need a container recipe in the [Deployment section](https://docs.mojolicious.org/Mojolicious/Guides/Cookbook#DEPLOYMENT) of the cookbook. Not too detailed, mostly just...