Skip to content

Releases: fasthttp/router

v1.1.3

23 May 14:29
Compare
Choose a tag to compare
  • 4087974 Small performance improvement (Sergio Andres Virviescas Santana)

v1.1.2

21 May 14:48
Compare
Choose a tag to compare
  • 5506e52 Move request methods map to router again #31 (Sergio Andres Virviescas Santana)

v1.1.1

13 May 10:57
Compare
Choose a tag to compare
  • 0298f52 Improve performance (Sergio Andres Virviescas Santana)

v1.1.0

10 May 16:12
Compare
Choose a tag to compare
  • a3f3db5 feature #29 Add router.ANY() (Sergio Andres Virviescas Santana)
  • a0ed295 Move request methods map to radix tree and refactor (Sergio Andres Virviescas Santana)

v1.0.4

26 Apr 15:43
Compare
Choose a tag to compare
  • 7ef9a43 Upgrade fasthttp to v1.12.0 (Sergio Andres Virviescas Santana)

v1.0.3

19 Apr 12:51
Compare
Choose a tag to compare
  • eecce1b Upgrade fasthttp to v1.11.0 (Sergio Andres Virviescas Santana)
  • e38c33a Upgrade gotils (Sergio Andres Virviescas Santana)
  • 5dd2506 Not build in GOOS/GOARCH pair darwin/386 when Go > 1.14 (Sergio Andres Virviescas Santana)
  • 257e7c4 Fix version in go.mod (Sergio Andres Virviescas Santana)

v1.0.2

11 Apr 20:15
Compare
Choose a tag to compare
  • 257e7c4 Fix version in go.mod (Sergio Andres Virviescas Santana)
  • dd25891 Not add a trailing slash in the optional paths (Sergio Andres Virviescas Santana)

v1.0.1

04 Apr 12:55
3a4e181
Compare
Choose a tag to compare
  • 3a4e181 Fix panic on nil ctx in radix code (#26) (Gregory Oschwald)
  • 637e8c0 Fix README (Sergio Andres Virviescas Santana)

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)