chore(deps): bump github.com/gofiber/fiber/v2 from 2.51.0 to 2.52.1 #4

Open
dependabot[bot] wants to merge 1 commit from dependabot/go_modules/github.com/gofiber/fiber/v2-2.52.1 into main
dependabot[bot] commented 2024-02-22 19:36:31 +01:00 (Migrated from github.com)

Bumps github.com/gofiber/fiber/v2 from 2.51.0 to 2.52.1.

Release notes

Sourced from github.com/gofiber/fiber/v2's releases.

v2.52.1

👮 Security

https://docs.gofiber.io/api/middleware/cors

🐛 Fixes

  • Middleware/healthcheck: Not working with route group(#2863)

📚 Documentation

  • Fix default value to false in docs of QueryBool (#2811)
  • Fix code snippet indentation in /docs/api/middleware/keyauth.md (#2867)

Full Changelog: https://github.com/gofiber/fiber/compare/v2.52.0...v2.52.1

Thank you @​luk3skyw4lker, @​CAEL0, @​grivera64, @​gaby and @​sixcolors for making this update possible.

v2.52.0

🚀 New

// Direct usage with default config
app.Use(healthcheck.New())

// Or extend your config for customization app.Use(healthcheck.New(healthcheck.Config{ LivenessEndpoint: "/live", LivenessProbe: func(c *fiber.Ctx) bool { return true }, ReadinessEndpoint: "/ready", ReadinessProbe: func(c *fiber.Ctx) bool { return serviceA.Ready() && serviceB.Ready() && ... }, }))

🧹 Updates

  • Middlewares: don't constrain middlewares context-keys to strings (#2751)
  • Middleware/logger: colorize logger error message #2593 (#2773)

... (truncated)

Commits
  • 70f21d5 fix cors domain normalize
  • f9fcb02 Update app.go
  • f0cd3b4 Merge pull request from GHSA-fmg4-x8pw-hjhg
  • 5e30112 fix: healthcheck middleware not working with route group (#2863)
  • cf54c25 Merge pull request #2867 from grivera64/v2
  • a84a7ce 📚 Doc: Fix code snippet indentation in /docs/api/middleware/keyauth.md
  • 4e0f180 Update routing.md
  • 56d2ec7 Update ctx.md
  • 8325ed0 update queryParser config
  • e524b73 Fix default value to false in docs of QueryBool (#2811)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
Bumps [github.com/gofiber/fiber/v2](https://github.com/gofiber/fiber) from 2.51.0 to 2.52.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gofiber/fiber/releases">github.com/gofiber/fiber/v2's releases</a>.</em></p> <blockquote> <h2>v2.52.1</h2> <h2>👮 Security</h2> <!-- raw HTML omitted --> <p><a href="https://docs.gofiber.io/api/middleware/cors">https://docs.gofiber.io/api/middleware/cors</a></p> <!-- raw HTML omitted --> <h2>🐛 Fixes</h2> <ul> <li>Middleware/healthcheck: Not working with route group(<a href="https://redirect.github.com/gofiber/fiber/issues/2863">#2863</a>)</li> </ul> <h2>📚 Documentation</h2> <ul> <li>Fix default value to false in docs of QueryBool (<a href="https://redirect.github.com/gofiber/fiber/issues/2811">#2811</a>)</li> <li>Fix code snippet indentation in /docs/api/middleware/keyauth.md (<a href="https://redirect.github.com/gofiber/fiber/issues/2867">#2867</a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/gofiber/fiber/compare/v2.52.0...v2.52.1">https://github.com/gofiber/fiber/compare/v2.52.0...v2.52.1</a></p> <p>Thank you <a href="https://github.com/luk3skyw4lker"><code>@​luk3skyw4lker</code></a>, <a href="https://github.com/CAEL0"><code>@​CAEL0</code></a>, <a href="https://github.com/grivera64"><code>@​grivera64</code></a>, <a href="https://github.com/gaby"><code>@​gaby</code></a> and <a href="https://github.com/sixcolors"><code>@​sixcolors</code></a> for making this update possible.</p> <h2>v2.52.0</h2> <h2>🚀 New</h2> <ul> <li>Middleware/healthcheck: Add liveness and readiness checks (<a href="https://redirect.github.com/gofiber/fiber/issues/2509">#2509</a>) <a href="https://docs.gofiber.io/api/middleware/healthcheck">https://docs.gofiber.io/api/middleware/healthcheck</a></li> </ul> <pre lang="go"><code>// Direct usage with default config app.Use(healthcheck.New()) <p>// Or extend your config for customization app.Use(healthcheck.New(healthcheck.Config{ LivenessEndpoint: &quot;/live&quot;, LivenessProbe: func(c *fiber.Ctx) bool { return true }, ReadinessEndpoint: &quot;/ready&quot;, ReadinessProbe: func(c *fiber.Ctx) bool { return serviceA.Ready() &amp;&amp; serviceB.Ready() &amp;&amp; ... }, })) </code></pre></p> <h2>🧹 Updates</h2> <ul> <li>Middlewares: don't constrain middlewares context-keys to strings (<a href="https://redirect.github.com/gofiber/fiber/issues/2751">#2751</a>)</li> <li>Middleware/logger: colorize logger error message <a href="https://redirect.github.com/gofiber/fiber/issues/2593">#2593</a> (<a href="https://redirect.github.com/gofiber/fiber/issues/2773">#2773</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gofiber/fiber/commit/70f21d5f7eb486875d6f6f07c858c7d20e9b3f0a"><code>70f21d5</code></a> fix cors domain normalize</li> <li><a href="https://github.com/gofiber/fiber/commit/f9fcb0297c942a84465d522a4e6487f04a372abb"><code>f9fcb02</code></a> Update app.go</li> <li><a href="https://github.com/gofiber/fiber/commit/f0cd3b44b086544a37886232d0530601f2406c23"><code>f0cd3b4</code></a> Merge pull request from GHSA-fmg4-x8pw-hjhg</li> <li><a href="https://github.com/gofiber/fiber/commit/5e30112d08b1a76f38f838a175988a3712846bd7"><code>5e30112</code></a> fix: healthcheck middleware not working with route group (<a href="https://redirect.github.com/gofiber/fiber/issues/2863">#2863</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/cf54c257e9055979906c94f69a730bbddd4bab99"><code>cf54c25</code></a> Merge pull request <a href="https://redirect.github.com/gofiber/fiber/issues/2867">#2867</a> from grivera64/v2</li> <li><a href="https://github.com/gofiber/fiber/commit/a84a7cee7edcfb12c6448a0b408d3f804c38743f"><code>a84a7ce</code></a> :books: Doc: Fix code snippet indentation in /docs/api/middleware/keyauth.md</li> <li><a href="https://github.com/gofiber/fiber/commit/4e0f180fe3425b92d2c7b7e362182d17c21ee50b"><code>4e0f180</code></a> Update routing.md</li> <li><a href="https://github.com/gofiber/fiber/commit/56d2ec7bd0d796399fcca2d4668dfc34c9ef858f"><code>56d2ec7</code></a> Update ctx.md</li> <li><a href="https://github.com/gofiber/fiber/commit/8325ed086c99920f63d9b916644774e4e295eab3"><code>8325ed0</code></a> update queryParser config</li> <li><a href="https://github.com/gofiber/fiber/commit/e524b7352468da1b788c3cdbd680ff7d1055b2f1"><code>e524b73</code></a> Fix default value to false in docs of QueryBool (<a href="https://redirect.github.com/gofiber/fiber/issues/2811">#2811</a>)</li> <li>Additional commits viewable in <a href="https://github.com/gofiber/fiber/compare/v2.51.0...v2.52.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/gofiber/fiber/v2&package-manager=go_modules&previous-version=2.51.0&new-version=2.52.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/lofustudio/micro/network/alerts). </details>
Commenting is not possible because the repository is archived.
No description provided.