F

Fiber

F
Fiber Web v2.52.14

v2.52.14

What's Changed 🐛 Bug Fixes backport BalancerForward X-Real-IP overwrite fix to v2 by @terraincognita07 in #4495 New Contributors @terraincognita07 made their first contribution Full Changelog: v2.52.13...v2.52.14

F
Fiber Web v3.4.0

v3.4.0

🚀 New Complete HTTP QUERY method support (#4436, #4456) Adds the HTTP QUERY method (RFC 10008): fiber.MethodQuery, app.Query() routing, safe/idempotent handling in csrf, idempotency, earlydata and cache, plus client.Query() shorthands. app.Query("/search", func(c fiber.Ctx) error { return c.Send(c.Body()) // QUERY carries the query expression in the body }) https://docs.gofiber.io/client/rest#quer…

F
Fiber Web v3.3.0

v3.3.0

🚀 New Add support for configuring the Regex engine on the router (#4254) Swap the compiler used for regex() route constraints. Assign a drop-in engine such as coregex.MustCompile for faster matching;Fiber reuses the compiled matcher across requests. app := fiber.New(fiber.Config{ RegexHandler: coregex.MustCompile, // default: regexp.MustCompile }) https://docs.gofiber.io/api/fiber#regexhandler Hos…

F
Fiber Web v2.52.13

v2.52.13

What's Changed 🐛 Bug Fixes Escape HTML output in Ctx.Format by @gaby in #4232 Full Changelog: v2.52.12...v2.52.13

F
Fiber Web v3.2.0

v3.2.0

🚀 New Add URL() method to Route for generating URLs with parameters (#4195) https://docs.gofiber.io/api/app#getroute Add comprehensive tests for binding to pointer scalar types (#4191) Add response format support to healthcheck middleware (#4178) https://docs.gofiber.io/middleware/healthcheck#config Route Domain() func for host-based routing (#4100) Add pagination middleware (#4127) https://docs.g…

F
Fiber Web v2.52.12

v2.52.12

🐛 Fixes CVE fix GHSA-mrq8-rjmw-wpq3 Full Changelog: v2.52.11...v2.52.12

F
Fiber Web v3.1.0

v3.1.0

🚀 New expand middleware context helpers (#4079) app := fiber.New(fiber.Config{ PassLocalsToContext: true, // default: false }) // Works for requestid, csrf, session, basicauth, keyauth middlewares app.Use(requestid.New()) app.Get("/", func(ctx fiber.Ctx) error { // Value helpers from middlewares works now with 3 different context items id := requestid.FromContext(ctx) // works always id := request…

F
Fiber Web v3.0.0

v3.0.0

For a detailed view of all changes and the migration guide, visit: https://docs.gofiber.io/whats_new Try our new migration tool to help you upgrade from v2 to v3: go install github.com/gofiber/cli/fiber@latest fiber migrate --to v3 What's Changed 🚀 New Features 🚀 App (Docs) Rename WithTlsConfig method to WithTLSConfig in (#2570) Use any as default Message type of Error struct in (#1925) Add suppor…

F
Fiber Web v2.52.11

v2.52.11

What's Changed 🧹 Updates Improve mount functionality by @gaby in #3900 🐛 Bug Fixes Backport defensive copying fixes from #3828 and #3829 to v2 by @sixcolors in #3888 Fixes and improvements for limiter middleware by @gaby in #3899 Full Changelog: v2.52.10...v2.52.11

F
Fiber Web v3.0.0-rc

v3.0.0-rc.3

🚀 New Features Middleware/encryptCookie: Add cookie name authentication for EncryptCookie middleware by @gaby in #3788 Middleware/proxy: Add BodyStream() logic to adaptor.FiberHandler middleware by @grivera64 in #3799 Client: Add support for HostClient and LBClient by @gaby in #3774 Native support for net/http and fasthttp handlers by @gaby in #3769 Add support for Express.js style req/res handler…

F
Fiber Web v2.52.10

v2.52.10

🐛 Bug Fixes Handle invalid path in filesystem by @rokostik in #3688 Fix recover middleware panic output formatting by @ReneWerner87 in #3818 Fix enforcement of Immutable config for some edge cases by @gaby in #3835 📚 Documentation Document RoutePatternMatch by @ReneWerner87 in #3723 New Contributors @rokostik made their first contribution in #3688 Full Changelog: v2.52.9...v2.52.10

F
Fiber Web v3.0.0-rc

v3.0.0-rc.2

🚀 New Features Add request inspection helpers by @gaby in #3727 Add extractors package by @sixcolors in #3725 Add support for redacting values by @gaby in #3759 🧹 Updates Middleware/cache: Improve Cache middleware defaults by @gaby in #3740 Middleware/cache: Fix cache cleanup and redact token values by @gaby in #3757 Middleware/compress: Improve Compress middleware RFC compliance by @gaby in #3745…