Skip to content

Releases: visallo/webster

v2.3.1

03 Oct 21:17

Choose a tag to compare

  • Added additional converters to handle numeric arrays

v2.3.0

03 Oct 21:16

Choose a tag to compare

  • 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

29 Oct 16:29

Choose a tag to compare

  • 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

03 Dec 16:42

Choose a tag to compare

  • change access logging to use com.v5analytics.webster.App.ACCESS_LOG at DEBUG level to allow granular control over access logging
  • make HttpServletRequest available to ResultWriterBase subclasses

v2.1.2

12 Nov 14:41

Choose a tag to compare

  • Router Runner: fix character escaping of curl pasting
  • provide HttpServletResponse to overriding subclasses

v2.1.1

30 Sep 18:49

Choose a tag to compare

  • 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

28 Sep 15:54

Choose a tag to compare

  • ParameterizedHandler can 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

28 Sep 15:54

Choose a tag to compare

  • added ParameterizedHandler interface supporting annotated named parameters

    public class ExampleRoute implements ParameterizedHandler {
        @Handle
        public void handle(@Required(name = "query") String query) {
            ...
        }
    }