:wrench: An opinionated and enjoyable API framework based on Nette Framework. Supporting content negotiation, debugging, middlewares, attributes, annotations and loving openapi/swagger.
/foo/bar,debug previously matched same as /foo/bar, now no match at all.
/foo/bar/1.debug with pattern /foo/bar/{id} matched id as 1.debug instead of 1, now it separates suffix correctly.
/foo/bar,debug
previously matched same as/foo/bar
, now no match at all./foo/bar/1.debug
with pattern/foo/bar/{id}
matched id as1.debug
instead of1
, now it separates suffix correctly.