Skip to content

Releases: gofiber/fiber

v1.14.6

11 Sep 18:56
755b75f
Compare
Choose a tag to compare

v2 will be released on 15 September 2020!
Please visit https://gofiber.io/v2 for more information.

v1.14.5

01 Sep 12:50
be1d3a1
Compare
Choose a tag to compare

This version will be the last tag before we release v1.15.0, it contains breaking changes and I highly recommend reading the changelog #736 to prepare for the migration on 15 September 2020

v1.14.4

24 Aug 08:57
09695c4
Compare
Choose a tag to compare

🩹 Fixes

  • Fix typo in startup message MEM -> PREFORK

v1.14.3

24 Aug 08:36
7a152c2
Compare
Choose a tag to compare

🧹 Updates

  • Bump Fasthttp v1.16.0
  • Bump Utils v0.0.10

🩹 Fixes

  • Fix high CPU with logger mw #734

v1.14.2

16 Aug 10:36
53a7a62
Compare
Choose a tag to compare

🩹 Fixes

  • ✏ Correct Version to v1.14.2

v1.14.1

15 Aug 15:32
e98a1b1
Compare
Choose a tag to compare

Somehow Go pkg cached the branch ( v1.14.0 ) that wasn't released, we had to tag v1.14.1 that contains the master version v1.13.3 to avoid breaking changes.

🩹 Fixes

  • 🐛 support @ to param delimiter #707
  • 🐛 dot problem with params in routes #722

v1.13.3

22 Jul 00:12
2975344
Compare
Choose a tag to compare

Deprecated

// Old signature
func (app *App) Get(path string, handlers ...Handler) *Route {}

// New signature
func (app *App) Get(path string, handlers ...Handler) Router {}
  • app.Routes() will no longer be supported, to access routes from the stack, please use app.Stack()
  • Name is removed from the Route struct, did had no more purpose after we decided to compress our router stack in #651

🔥 New

🧹 Updates

🚀 Improvements

🩹 Fixes

v1.13.1

19 Jul 11:23
5005561
Compare
Choose a tag to compare

🩹 Fixes

  • Escape logger colors in Windows #639

v1.13.0

18 Jul 02:01
55d0fe1
Compare
Choose a tag to compare

Special thanks to @kiyonlin, @ReneWerner87, @thomasvvugt for their input behind the scenes!
And I want to thank all the contributors for their awesome work, this community is awesome! ❤️

🔥 New

🧹 Updates

🚀 Improvements

🩹 Fixes

v1.12.6

11 Jul 11:08
a6d3337
Compare
Choose a tag to compare

🔥 New

  • ctx.IsChild()
    A method to determine if the current process is a result of Prefork and defines as a child process, this method can be useful when Prefork is enabled. #575 @Fenny

🧹 Updates


🩹 Fixes