You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

820 B

Change Log

ATTN: This project uses semantic versioning.

Unreleased

0.2.0 - 2016-05-10

Added

  • Support for variadic handlers in New()
  • Added Negroni.Handlers() to fetch all of the handlers for a given chain
  • Allowed size in Recovery handler was bumped to 8k
  • Negroni.UseFunc to push another handler onto the chain

Changed

  • Set the status before calling beforeFuncs so the information is available to them
  • Set default status to 200 in the case that no handler writes status -- was previously 0
  • Panic if nil handler is given to negroni.Use

0.1.0 - 2013-07-22

Added

  • Initial implementation.