🔥 New
- app.Mount allows to mount a fiber instance. #737 #737
func (a *App) Mount(prefix string, app *fiber.App) fiber.Router
micro := fiber.New()
micro.Get("/doe", func(c *fiberCtx) error {
return c.SendStatus(StatusOK)
})
app := fiber.New()
app.Mount("/john", micro) // GET /john/doe -> 200 OK
🧹 Updates
- csrf middleware now sets
SameSite=Lax
by default #825
- c.QueryParser now supports splitting comma-separated values into slices #817 #782
🩹 Fixes
- avoid duplicated slashes on static directories #819
- proxy middleware is now able to upgrade from http -> https scheme's #836