[PR #224] [MERGED] chore(deps): bump github.com/gofiber/fiber/v2 from 2.46.0 to 2.47.0 #248

Closed
opened 2026-03-03 11:56:54 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Finb/bark-server/pull/224
Author: @dependabot[bot]
Created: 6/19/2023
Status: Merged
Merged: 6/19/2023
Merged by: @mritd

Base: masterHead: dependabot/go_modules/github.com/gofiber/fiber/v2-2.47.0


📝 Commits (1)

  • 356ea0c chore(deps): bump github.com/gofiber/fiber/v2 from 2.46.0 to 2.47.0

📊 Changes

2 files changed (+6 additions, -6 deletions)

View changed files

📝 go.mod (+2 -2)
📝 go.sum (+4 -4)

📄 Description

Bumps github.com/gofiber/fiber/v2 from 2.46.0 to 2.47.0.

Release notes

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

v2.47.0

🚀 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: https://github.com/gofiber/fiber/compare/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.

Commits

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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Finb/bark-server/pull/224 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 6/19/2023 **Status:** ✅ Merged **Merged:** 6/19/2023 **Merged by:** [@mritd](https://github.com/mritd) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/gofiber/fiber/v2-2.47.0` --- ### 📝 Commits (1) - [`356ea0c`](https://github.com/Finb/bark-server/commit/356ea0cd701132eac91abb1767d65af35945622d) chore(deps): bump github.com/gofiber/fiber/v2 from 2.46.0 to 2.47.0 ### 📊 Changes **2 files changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+2 -2) 📝 `go.sum` (+4 -4) </details> ### 📄 Description Bumps [github.com/gofiber/fiber/v2](https://github.com/gofiber/fiber) from 2.46.0 to 2.47.0. <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.47.0</h2> <h2>🚀 New</h2> <ul> <li>Add queries function (<a href="https://redirect.github.com/gofiber/fiber/issues/2475">#2475</a>) <a href="https://docs.gofiber.io/api/ctx#queries">https://docs.gofiber.io/api/ctx#queries</a></li> </ul> <pre lang="go"><code>// GET /api/posts?filters.author.name=John&amp;filters.category.name=Technology <p>app.Get(&quot;/&quot;, func(c *fiber.Ctx) error { m := c.Queries() m[&quot;filters.author.name&quot;] // John m[&quot;filters.category.name&quot;] // Technology }) </code></pre></p> <ul> <li>Middleware/logger: Add DisableColors to set the default output format (<a href="https://redirect.github.com/gofiber/fiber/issues/2493">#2493</a>) <a href="https://docs.gofiber.io/api/middleware/logger#config">https://docs.gofiber.io/api/middleware/logger#config</a></li> </ul> <pre lang="go"><code>// Disable colors when outputting to default format app.Use(logger.New(logger.Config{ DisableColors: true, })) </code></pre> <h2>🧹 Updates</h2> <ul> <li>Update getOffer to consider quality and specificity (<a href="https://redirect.github.com/gofiber/fiber/issues/2486">#2486</a>)</li> <li>Use c.app.getString instead of string(...) (<a href="https://redirect.github.com/gofiber/fiber/issues/2489">#2489</a>)</li> <li>Bump github.com/mattn/go-isatty from 0.0.18 to 0.0.19 (<a href="https://redirect.github.com/gofiber/fiber/issues/2474">#2474</a>)</li> <li>Bump golang.org/x/sys from 0.8.0 to 0.9.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2508">#2508</a>)</li> </ul> <h2>🐛 Fixes</h2> <ul> <li>Middleware/limiter: Fix Sliding Window limiter when SkipSuccessfulRequests/SkipFailedRequests is used. (<a href="https://redirect.github.com/gofiber/fiber/issues/2484">#2484</a>)</li> <li>Fix onListen hooks when they are used with prefork mode (<a href="https://redirect.github.com/gofiber/fiber/issues/2504">#2504</a>)</li> <li>Fix middleware naming and returned values of group methods (<a href="https://redirect.github.com/gofiber/fiber/issues/2477">#2477</a>)</li> <li>Treat case for possible timer memory leak (<a href="https://redirect.github.com/gofiber/fiber/issues/2488">#2488</a>)</li> <li>Reset terminal colors after print routes (<a href="https://redirect.github.com/gofiber/fiber/issues/2481">#2481</a>)</li> </ul> <h2>📚 Documentation</h2> <ul> <li>Update version of html template (<a href="https://redirect.github.com/gofiber/fiber/issues/2505">#2505</a>)</li> <li>Translate README_fa.md (<a href="https://redirect.github.com/gofiber/fiber/issues/2496">#2496</a>)</li> <li>Correcting a syntax error in the README (<a href="https://redirect.github.com/gofiber/fiber/issues/2473">#2473</a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/gofiber/fiber/compare/v2.46.0...v2.47.0">https://github.com/gofiber/fiber/compare/v2.46.0...v2.47.0</a></p> <p>Thank you <a href="https://github.com/Kamandlou"><code>@​Kamandlou</code></a>, <a href="https://github.com/Satont"><code>@​Satont</code></a>, <a href="https://github.com/Skyenought"><code>@​Skyenought</code></a>, <a href="https://github.com/cmd777"><code>@​cmd777</code></a>, <a href="https://github.com/dozheiny"><code>@​dozheiny</code></a>, <a href="https://github.com/efectn"><code>@​efectn</code></a>, <a href="https://github.com/gaby"><code>@​gaby</code></a>, <a href="https://github.com/kaazedev"><code>@​kaazedev</code></a>, <a href="https://github.com/luk3skyw4lker"><code>@​luk3skyw4lker</code></a>, <a href="https://github.com/obakumen"><code>@​obakumen</code></a>, <a href="https://github.com/sixcolors"><code>@​sixcolors</code></a> and <a href="https://github.com/ytsruh"><code>@​ytsruh</code></a> for making this update possible.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gofiber/fiber/commit/9bcdb560dc28f49a0120c13e70534b7109b33654"><code>9bcdb56</code></a> Update ctx.md</li> <li><a href="https://github.com/gofiber/fiber/commit/204b01aeb247a09c83b4c4ead0abc31efd5c325f"><code>204b01a</code></a> Update ctx.md</li> <li><a href="https://github.com/gofiber/fiber/commit/35ea74a317353132c5bc236d2d6945b4155b184d"><code>35ea74a</code></a> Update app.go</li> <li><a href="https://github.com/gofiber/fiber/commit/fa5935b7e9b3358a82427d2d66ccba8455322336"><code>fa5935b</code></a> Update ctx.md</li> <li><a href="https://github.com/gofiber/fiber/commit/f86423d625905f8abe6511e19291da5b45376980"><code>f86423d</code></a> Update ctx.md</li> <li><a href="https://github.com/gofiber/fiber/commit/f4a9cb5023b871430b669d5ca36db1478033dad4"><code>f4a9cb5</code></a> Bump golang.org/x/sys from 0.8.0 to 0.9.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2508">#2508</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/719a5a2a8f194a2c5a8700289c6b424b441db213"><code>719a5a2</code></a> repair test workflow</li> <li><a href="https://github.com/gofiber/fiber/commit/d87065f5f2e81e47642da8bcb4d81ea088ca88d5"><code>d87065f</code></a> 🚀 FEATURE: add queries function (<a href="https://redirect.github.com/gofiber/fiber/issues/2475">#2475</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/f5d2abb94820cf1b2687276f7cee19c95c08916d"><code>f5d2abb</code></a> :memo: docs: update version of html template (<a href="https://redirect.github.com/gofiber/fiber/issues/2505">#2505</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/d4938dad6c6819034fe78822f616272e06babe60"><code>d4938da</code></a> :bug: bug: fix onListen hooks when they are used with prefork mode (<a href="https://redirect.github.com/gofiber/fiber/issues/2504">#2504</a>)</li> <li>Additional commits viewable in <a href="https://github.com/gofiber/fiber/compare/v2.46.0...v2.47.0">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.46.0&new-version=2.47.0)](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 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:56:54 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/bark-server#248
No description provided.