Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/gofiber/fiber/v2 to v2.48.0 #37

Merged
merged 1 commit into from
Aug 1, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 19, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/gofiber/fiber/v2 require minor v2.45.0 -> v2.48.0

Release Notes

gofiber/fiber (github.com/gofiber/fiber/v2)

v2.48.0

Compare Source

🚀 New

app := fiber.New(fiber.Config{
  DisableStartupMessage: true,
})

app.Hooks().OnListen(func(listenData fiber.ListenData) error {
  if fiber.IsChild() {
      return nil
  }
  scheme := "http"
  if data.TLS {
    scheme = "https"
  }
  log.Println(scheme + "://" + listenData.Host + ":" + listenData.Port)
  return nil
})

app.Listen(":5000")

🧹 Updates

  • Dictpool is not completely gone (#​2540)
  • Bump golang.org/x/sys from 0.9.0 to 0.10.0 (#​2530)
  • Bump github.com/valyala/fasthttp from 1.47.0 to 1.48.0 (#​2511)

🐛 Fixes

  • Middleware/logger: Default logger color behaviour (#​2513)

📚 Documentation

  • Fix link (#​2542)
  • Fix bad documentation on queries function (#​2522)
  • Fix validation-guide (#​2517)
  • Fix bad documentation on queries function (#​2522)
  • Add a warning on security implications when using X-Forwarded-For improperly (#​2520)
  • Fix typo (#​2518)
  • Typo in ctx.md (#​2516)
  • Fix comment in client.go (#​2514)
  • Fix docs api fiber custom config (#​2510)

Full Changelog: gofiber/fiber@v2.47.0...v2.48.0

Thank you @​ForAeons, @​RHeynsZa, @​Saman-Safaei, @​Skyenought, @​Z3NTL3, @​andre-dasilva, @​cmd777, @​dozheiny, @​efectn, @​f1rstmehul, @​gaby, @​itcuihao and @​mo1ein for making this update possible.

v2.47.0

Compare Source

🚀 New

// GET /api/posts?filters.author.name=John&filters.category.name=Technology

app.Get("/", func(c *fiber.Ctx) error {
    m := c.Queries()
    m["filters.author.name"] // John
    m["filters.category.name"] // Technology
})
// Disable colors when outputting to default format
app.Use(logger.New(logger.Config{
    DisableColors: true,
}))

🧹 Updates

  • Update getOffer to consider quality and specificity (#​2486)
  • Use c.app.getString instead of string(...) (#​2489)
  • Bump github.com/mattn/go-isatty from 0.0.18 to 0.0.19 (#​2474)
  • Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#​2508)

🐛 Fixes

  • Middleware/limiter: Fix Sliding Window limiter when SkipSuccessfulRequests/SkipFailedRequests is used. (#​2484)
  • Fix onListen hooks when they are used with prefork mode (#​2504)
  • Fix middleware naming and returned values of group methods (#​2477)
  • Treat case for possible timer memory leak (#​2488)
  • Reset terminal colors after print routes (#​2481)

📚 Documentation

  • Update version of html template (#​2505)
  • Translate README_fa.md (#​2496)
  • Correcting a syntax error in the README (#​2473)

Full Changelog: gofiber/fiber@v2.46.0...v2.47.0

Thank you @​Kamandlou, @​Satont, @​Skyenought, @​cmd777, @​dozheiny, @​efectn, @​gaby, @​kaazedev, @​luk3skyw4lker, @​obakumen, @​sixcolors and @​ytsruh for making this update possible.

v2.46.0

Compare Source

🚀 New

  • Utils: add Go 1.20+ way of converting byte slice to string (#​2468)
  • Middleware/adaptor: allow to convert fiber.Ctx to (net/http).Request (#​2461)

🧹 Updates

🐛 Fixes

  • Fix mount route positioning (#​2463)

📚 Documentation

Full Changelog: gofiber/fiber@v2.45.0...v2.46.0

Thank you @​alekseikovrigin, @​efectn and @​leonklingele for making this update possible.


Configuration

📅 Schedule: Branch creation - "before 6am" in timezone Asia/Jakarta, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update module github.com/gofiber/fiber/v2 to v2.46.0 fix(deps): update module github.com/gofiber/fiber/v2 to v2.47.0 Jun 19, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5c68673 to ff4922a Compare June 19, 2023 12:30
@renovate renovate bot changed the title fix(deps): update module github.com/gofiber/fiber/v2 to v2.47.0 fix(deps): update module github.com/gofiber/fiber/v2 to v2.48.0 Jul 16, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ff4922a to 21e0e86 Compare July 16, 2023 16:26
@KagChi KagChi merged commit 584368c into main Aug 1, 2023
2 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch August 1, 2023 10:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant