- The documentation now uses uppercase http verbs instead of lowercase ones (
r:match('GET', ...)
instead ofr:match('get', ...)
) - The shortcut methods now define uppercase http verbs. In other words,
r:get(...)
is equivalent tor:match('GET', ...)
instead ofr:match('get', ...)
. This is a backwards-incompatible change, hence the version bump.
- Throws an error when an unknown verb gets received