Releases: fasthttp/router
Releases · fasthttp/router
v1.0.0
- d8bbf71 Improve performance of radix.findEndIndexAndValues by preallocating the necessary memory (Sergio Andres Virviescas Santana)
- 6a00bf3 Improve performance of radix.FindCaseInsensitivePath (Sergio Andres Virviescas Santana)
IMPORTANT CHANGE
- 510879a Add optional regex validation for wildcards and allow wildcards with suffix (Sergio Andres Virviescas Santana)
-
Now, the url parameters is registered between
{
}
(Ex:/{param}
), previously registered with the prefix:
(Ex:/:param
).
That gives more flexibility to the parameters, like regex and suffixes.See the README, to more information: https://github.com/fasthttp/router#named-parameters
-
v0.7.0
- 425d31a Code refactor and improvements (Sergio Andres Virviescas Santana)
- 9ff3089 corrected the readme typo (#22) (Dewayne Richardson)
- 6e856ea Fix typo (Sergio Andres Virviescas Santana)
- e87c2f5 Small fixes (Sergio Andres Virviescas Santana)
- e620c83 New radix tree with more flexibility without lost performance (Issue: #20) (Sergio Andres Virviescas Santana)
v0.6.1
v0.6.0
v0.5.5
v0.5.4
v0.5.3
v0.5.2
v0.5.1
v0.5.0
- f1572c4 Fix list (Sergio Andres Virviescas Santana)
- 45fea56 Not add the last slash in optional paths (Sergio Andres Virviescas Santana)
- 252e686 Add Router.List to list all registered paths grouped by method (Sergio Andres Virviescas Santana)
- 206eda7 Small code refactor (Sergio Andres Virviescas Santana)
- 1d731d8 Add ServeFiles with custom settings (Sergio Andres Virviescas Santana)