Skip to content

Releases: MasoniteFramework/core

v1.4.0

08 Mar 21:59
6b6236f
Compare
Choose a tag to compare

Change Log

  • Added real time support by adding 2 drivers for websockets: pusher and ably
  • Added a BroadcastProvider Service Provider (Closes #17)
  • added PEP 8 standards (thanks to @mapeveri )
  • added template caching (Closes #19 thanks to @mapeveri )
  • added Caching support (Closes #19 thanks to @mapeveri )
  • added contracts (Closes #29)
  • added extendable class to extend class objects on the fly
  • added CSRF protection (thanks to @mapeveri)
  • removed old code structures needed for Python 2 support for some reason.
  • added improvements to how managers are created

v1.3.2

18 Feb 02:38
129b545
Compare
Choose a tag to compare

Change Log

  • Fixed UploadDiskDriver to point to the correct file location. It was previously missing a trailing slash

  • Fixed the request redirection not compiling route correctly

v1.3.1

16 Feb 22:25
Compare
Choose a tag to compare

Change Log

  • Fixed "Container" alias not present in service container

v1.3.0

16 Feb 21:41
f0052ec
Compare
Choose a tag to compare

Change Log

  • Fixed infinite request redirection
  • Fixed content length not being set correctly
  • re architecture how input data is retrieved
  • Added capabilities of doing image uploading to both disk and s3 Documented
  • Fixed the lack of the RedirectionProvider not having the Route dependency
  • Added helper functions Documentated
  • Added TestSuite for routes
  • added ability to compose views and add global variables to templates.
  • added 2 helper functions to all views via the View.share method
  • Auto deployment to PYPI on successful release builds
  • Middleware now resolves from the container
  • Added domain() method to routes to specify subdomains Documented
  • Added module() method to routes to specify which module the controller lives Documentation
  • Added Queue manager and QueueAsyncDriver
  • Added better docstrings to App class

v1.0.0

16 Feb 21:21
6c3ef45
Compare
Choose a tag to compare

Change Log

  • Fixed infinite request redirection
  • Fixed content length not being set correctly
  • re architecture how input data is retrieved
  • Added capabilities of doing image uploading to both disk and s3 Documented
  • Fixed the lack of the RedirectionProvider not having the Route dependency
  • Added helper functions Documentated
  • Added TestSuite for routes
  • added ability to compose views and add global variables to templates.
  • added 2 helper functions to all views via the View.share method
  • Auto deployment to PYPI on successful release builds
  • Middleware now resolves from the container
  • Added domain() method to routes to specify subdomains Documented
  • Added module() method to routes to specify which module the controller lives Documentation
  • Added Queue manager and QueueAsyncDriver
  • Added better docstrings to App class

v0.2.12

06 Feb 02:37
38530ad
Compare
Choose a tag to compare

Change Log

  • Increased the test coverage substantially from 24% to ~80%
  • Completely restructured Masonite to only run on Service Providers
  • Added mail support to include drivers which can easily load into the service container.

v0.2.10.1

27 Jan 12:58
Compare
Choose a tag to compare

Change Log - Security Fix

  • All cookies are now encrypted using a Masonite project's key in their configuration settings.
  • setup.py now uses setup tools instead of distutils
  • cookies set are now HttpOnly so Javascript cannot access them.

v0.2.9

19 Jan 22:09
01779a6
Compare
Choose a tag to compare

Change Log

  • Added bcrypt to authentication class
  • Added support for http redirections
  • Added ability to do module controllers such as 'Auth.LoginController@show'

v0.2.7.2

16 Jan 16:17
c6ce90a
Compare
Choose a tag to compare

Change Log

  • Request redirects now return self
  • A new request.back() functionality which defaults to the named route from the back request input
  • added a new send method which sets form paramters

v0.2.7

14 Jan 20:43
b699c11
Compare
Choose a tag to compare

Change Log

  • Added middleware support