Request.redirect()
method, Masonite would sometimes send the browser to an infinite redirection. This was because masonite was not resetting the redirection attributes of the Request
class.POST
and GET
requests by converting the wsgi.input
WSGI parameter into a string and parsing. All POST input data is now retrieved using FieldStorage
which adds support for also getting files from multipart/formdata
requests.UploadProvider
service provider you can simply do something like:DRIVER
to s3
.Request
object or other class. We can use the new View
class for this and put it in it's own service provider:test.example.com/dashboard
and not example.com/dashboard
. Read more about subdomains in the Routing documentation.app/http/controllers
namespace but you can change this for individual routes:thirdparty.routes
module.QueueManager
class which can be used to build queue drivers. Masonite ships with an async
driver which sends jobs to a background thread. These queues can process Jobs which ca be created with the new craft job
command. See the Queues and Jobs documentation for more information.