Releases: visallo/webster
Releases · visallo/webster
v2.3.1
v2.3.0
- Added: Route Runner: response times, clear results on send
- Added: ability to set the file handler used when no routes are matched
- Added: method to get the current missing route handler
v2.2.1
- add additional HTTP methods HEAD, OPTIONS, TRACE, CONNECT
- Fix: route runner on older versions of Firefox that do not support innerText
- Fix: FF event target/srcElement
v.2.2.0
- change access logging to use
com.v5analytics.webster.App.ACCESS_LOGatDEBUGlevel to allow granular control over access logging - make HttpServletRequest available to ResultWriterBase subclasses
v2.1.2
- Router Runner: fix character escaping of curl pasting
- provide HttpServletResponse to overriding subclasses
v2.1.1
- Added the ability for Required and Optional parameter annotations to specify whether they allow blank strings. If not, they will be considered errors.
v2.1.0
ParameterizedHandlercan now return a value which will be formatted into the HTTP response- improve router runner
- fallback to HTTP header values if parameter is not found in URL or form body
v2.0.0
-
added
ParameterizedHandlerinterface supporting annotated named parameterspublic class ExampleRoute implements ParameterizedHandler { @Handle public void handle(@Required(name = "query") String query) { ... } }