Skip to content

Releases: gofiber/fiber

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


v1.12.5

08 Jul 11:59
0e95938
Compare
Choose a tag to compare

🔥 New


🧹 Updates


🩹 Fixes


v1.12.4

04 Jul 08:42
c39a12c
Compare
Choose a tag to compare

🧹 Updates

🩹 Fixes

  • Default to 0.0.0.0 host addr if non is given ( docker had issue's with this ) #539
  • Allow Config files inside the default RequestID & Compress middleware initiators #537