CHANGES:
- use
ppx_expectfor tests - add
routefunction which is an alias of@-->and is used to connect a route pattern to a handler
Breaking changes
- Drop support for OCaml 4.05-4.07
- Switch to a new model for trailing slash handling. In routes 1.0.0 users needed to be careful about using
/?and//?as the former would only match routes without a trailing slash, and the latter would enforce a trailing slash.- Users only need to use
/?to end routes, and it will cover both routes ending with trailing slashes and without - The type used for representing match results has more information about whether it was an exact match, or if it was a match but the input target had a trailing slash at the end.
MatchWithTrailingSlashinforms the user that the current target was considered a match, but that the target has an additional trailing slash
- Users only need to use