Releases: rooseveltframework/roosevelt
Releases · rooseveltframework/roosevelt
0.23.2
- Removed
toobusy
feature since it is temperamental and the dependency is no longer maintained.
- Refactored internal
wildcardMatch
to use minimatch
under the hood.
- Replaced
html-minifier
with html-minifier-terser
since html-minifier-terser
is better-maintained.
- Updated various dependencies.
0.23.1
- Added feature that scans the router stack to move the 404 route (the
*
route) to the end of the stack every time a new route is added, even if the route is added at runtime so that you can dynamically add routes while the app is running.
- Updated various dependencies.
0.23.0
- Removed
cores
feature since it is largely redundant now thanks to the widespread popularity of tools like pm2. Also removed various deprecated cluster module support as well.
- Updated various dependencies.
0.22.16
- Made it possible to disable
helmet
by setting the helmet
param to false.
- Updated various dependencies.
0.22.15
- Added option to exempt certain routes from CSRF protection.
- Updated various dependencies.
0.22.14
- The JS bundler will now add
mode: "development"
and devtool: "source-map"
automatically to your Webpack bundles in development mode.
- Updated various dependencies.
0.22.13
- Altered helmet's defaults again. The
form-action
directive has been set to null
. This makes it possible to submit forms to other domains in production mode.
0.22.12
- Added
'unsafe-inline'
option to helmet's Content-Security-Policy
's script-src
directive by default in Roosevelt. This will prevent inline scripts from being blocked in production mode.
- Updated various dependencies.
0.22.11
- Added
DISABLE_HTTPS
environment variable which when set to true
, the HTTPS server will be disabled and the app will revert to HTTP regardless of what is set in the rooseveltConfig
.
- Updated various dependencies.
0.22.10
- Enabled WAL in the SQLite instance used for session storage by default.
- Updated various dependencies.