Skip to content

Releases: fasthttp/router

v1.0.0

29 Mar 12:52
Compare
Choose a tag to compare
  • 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

19 Mar 09:35
Compare
Choose a tag to compare
  • 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

11 Feb 20:18
Compare
Choose a tag to compare
  • 80dc8ef Upgrade fasthttp to v1.9.0 (Sergio Andres Virviescas Santana)

v0.6.0

21 Jan 15:08
f905dab
Compare
Choose a tag to compare
  • f905dab Align features with julienschmidt/httprouter (#18) (Sergio Andrés Virviescas Santana)

    • Align features with julienschmidt/httprouter
    • Tests refactor
    • Add go.1.13 support

v0.5.5

14 Jan 10:25
Compare
Choose a tag to compare
  • 8c72a81 Upgrade fasthttp to v1.8.0 (Sergio Andres Virviescas Santana)

v0.5.4

05 Jan 11:00
Compare
Choose a tag to compare
  • 7797cab Upgrade fasthttp to v1.7.1 (Sergio Andres Virviescas Santana)

v0.5.3

21 Dec 19:24
Compare
Choose a tag to compare
  • b57b37e Upgrade fasthttp to v1.7.0 (Sergio Andres Virviescas Santana)

v0.5.2

28 Oct 21:28
Compare
Choose a tag to compare
  • ea7c971 Upgrade fasthttp to v1.6.0 (Sergio Andres Virviescas Santana)

v0.5.1

16 Sep 07:36
Compare
Choose a tag to compare
  • 3b1cc46 Upgrade gotils (Sergio Andres Virviescas Santana)
  • e082c90 Upgrade fasthttp to v1.5.0 (Sergio Andres Virviescas Santana)

v0.5.0

16 Aug 09:11
Compare
Choose a tag to compare
  • 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)