Releases: gofiber/fiber
Releases · gofiber/fiber
v2.3.1
v2.3.0
🔥 New
app.ListenTLS(":443", "./cert.pem", "./cert.key");
Allows you to serve HTTPs requests by providing a path to the TLS certificate and key file, this is a simplified method for app.Listener()
where you had to build your own *tls.Config
. #1077
The following *tls.Config
is used:
&tls.Config{
MinVersion: tls.VersionTLS12,
PreferServerCipherSuites: true,
Certificates: []tls.Certificate{
cert,
},
}
More information about Listen methods can be found here https://docs.gofiber.io/api/app#listentls
v2.2.5
Thank you @kiyonlin, @kirillDanshin, @hi019, @erikdubbelboer, @ReneWerner87
🧹 Updates
- Bump fasthttp to
v1.18
https://github.com/valyala/fasthttp/releases/tag/v1.18.0 #1070 - Removing newlines in header values is now implemented in fasthttp.
- Improve round2 performance in fh
- Refactor
BodyParser
#1073 - Fix some linting #1044
- Remove redundant validation for
CacheDuration
inStatic
#1069 BodyParser
returns anErrUnprocessableEntity
when an invalid content-type is present. #1067
🩹 Fixes
- Fix duplicate cookie name in
csrf
middleware #1068
v2.2.4
🔥 New
- Introduce
store.RegisterType(i interface{})
to allow custom types/structs to be stored in external Storage providers ( session mw ) #1051