[PR #228] [MERGED] chore(deps): bump github.com/gofiber/fiber/v2 from 2.47.0 to 2.48.0 #249

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

📋 Pull Request Information

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

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


📝 Commits (1)

  • 340affb chore(deps): bump github.com/gofiber/fiber/v2 from 2.47.0 to 2.48.0

📊 Changes

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

View changed files

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

📄 Description

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

Release notes

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

v2.48.0

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

... (truncated)

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/228 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/17/2023 **Status:** ✅ Merged **Merged:** 7/17/2023 **Merged by:** [@mritd](https://github.com/mritd) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/gofiber/fiber/v2-2.48.0` --- ### 📝 Commits (1) - [`340affb`](https://github.com/Finb/bark-server/commit/340affb2fcdf13efc80559f2a63eb90daae1e44d) chore(deps): bump github.com/gofiber/fiber/v2 from 2.47.0 to 2.48.0 ### 📊 Changes **2 files changed** (+6 additions, -27 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+2 -6) 📝 `go.sum` (+4 -21) </details> ### 📄 Description Bumps [github.com/gofiber/fiber/v2](https://github.com/gofiber/fiber) from 2.47.0 to 2.48.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.48.0</h2> <h2>🚀 New</h2> <ul> <li>Add ability to print custom message on startup (<a href="https://redirect.github.com/gofiber/fiber/issues/2491">#2491</a>) <a href="https://docs.gofiber.io/guide/hooks#onlisten">https://docs.gofiber.io/guide/hooks#onlisten</a></li> </ul> <pre lang="go"><code>app := fiber.New(fiber.Config{ DisableStartupMessage: true, }) <p>app.Hooks().OnListen(func(listenData fiber.ListenData) error { if fiber.IsChild() { return nil } scheme := &quot;http&quot; if data.TLS { scheme = &quot;https&quot; } log.Println(scheme + &quot;://&quot; + listenData.Host + &quot;:&quot; + listenData.Port) return nil })</p> <p>app.Listen(&quot;:5000&quot;) </code></pre></p> <ul> <li>Add Logger interface and fiberlog (<a href="https://redirect.github.com/gofiber/fiber/issues/2499">#2499</a>) <a href="https://docs.gofiber.io/api/log">https://docs.gofiber.io/api/log</a></li> </ul> <h2>🧹 Updates</h2> <ul> <li>Dictpool is not completely gone (<a href="https://redirect.github.com/gofiber/fiber/issues/2540">#2540</a>)</li> <li>Bump golang.org/x/sys from 0.9.0 to 0.10.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2530">#2530</a>)</li> <li>Bump github.com/valyala/fasthttp from 1.47.0 to 1.48.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2511">#2511</a>)</li> </ul> <h2>🐛 Fixes</h2> <ul> <li>Middleware/logger: Default logger color behaviour (<a href="https://redirect.github.com/gofiber/fiber/issues/2513">#2513</a>)</li> </ul> <h2>📚 Documentation</h2> <ul> <li>Fix link (<a href="https://redirect.github.com/gofiber/fiber/issues/2542">#2542</a>)</li> <li>Fix bad documentation on queries function (<a href="https://redirect.github.com/gofiber/fiber/issues/2522">#2522</a>)</li> <li>Fix validation-guide (<a href="https://redirect.github.com/gofiber/fiber/issues/2517">#2517</a>)</li> <li>Fix bad documentation on queries function (<a href="https://redirect.github.com/gofiber/fiber/issues/2522">#2522</a>)</li> <li>Add a warning on security implications when using X-Forwarded-For improperly (<a href="https://redirect.github.com/gofiber/fiber/issues/2520">#2520</a>)</li> <li>Fix typo (<a href="https://redirect.github.com/gofiber/fiber/issues/2518">#2518</a>)</li> <li>Typo in ctx.md (<a href="https://redirect.github.com/gofiber/fiber/issues/2516">#2516</a>)</li> <li>Fix comment in client.go (<a href="https://redirect.github.com/gofiber/fiber/issues/2514">#2514</a>)</li> <li>Fix docs api fiber custom config (<a href="https://redirect.github.com/gofiber/fiber/issues/2510">#2510</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/f6446ab0b93d8ba508daa43bd253cfb0631d90aa"><code>f6446ab</code></a> Update log.md</li> <li><a href="https://github.com/gofiber/fiber/commit/9c2d214bcfafe89771b0e878f00cb6acc797142d"><code>9c2d214</code></a> Update app.go</li> <li><a href="https://github.com/gofiber/fiber/commit/08099b0635f4432e2ded1adda9e951a1144ea97a"><code>08099b0</code></a> 📚 Docs: Fix link (<a href="https://redirect.github.com/gofiber/fiber/issues/2542">#2542</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/58270e2d5b3d585e570d8f008cfe8df642b3ff82"><code>58270e2</code></a> :adhesive_bandage: Fix: dictpool is not completely gone (<a href="https://redirect.github.com/gofiber/fiber/issues/2540">#2540</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/a9933f50c5677a203960daa4d99656ac82944267"><code>a9933f5</code></a> Update intro.md</li> <li><a href="https://github.com/gofiber/fiber/commit/99902abc0c038aa1d0bb9d5f80e12ff52a039334"><code>99902ab</code></a> improve docs sync script</li> <li><a href="https://github.com/gofiber/fiber/commit/47b767e716fbcfd0af6a8ea43a4727f7b34ae57e"><code>47b767e</code></a> Merge remote-tracking branch 'origin/master'</li> <li><a href="https://github.com/gofiber/fiber/commit/fb9b57f534c48adf9c11ee22b6b806501ece3d06"><code>fb9b57f</code></a> improve docs sync script</li> <li><a href="https://github.com/gofiber/fiber/commit/924fefd677f2bdbf3fd325c8114e2b8af7542901"><code>924fefd</code></a> Update README.md</li> <li><a href="https://github.com/gofiber/fiber/commit/4e5540fcbf7744398502f1aa002eb7e28f4b7113"><code>4e5540f</code></a> Update README.md</li> <li>Additional commits viewable in <a href="https://github.com/gofiber/fiber/compare/v2.47.0...v2.48.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.47.0&new-version=2.48.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:55 +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#249
No description provided.