[PR #246] [MERGED] chore(deps): bump github.com/gofiber/fiber/v2 from 2.50.0 to 2.51.0 #265

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

📋 Pull Request Information

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

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


📝 Commits (1)

  • b9b6424 chore(deps): bump github.com/gofiber/fiber/v2 from 2.50.0 to 2.51.0

📊 Changes

2 files changed (+9 additions, -10 deletions)

View changed files

📝 go.mod (+3 -3)
📝 go.sum (+6 -7)

📄 Description

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

Release notes

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

v2.51.0

🚀 New

// Consideration of parameters in the accepted headers
// Accept: text/plain, application/json; version=1; foo=bar

app.Get("/", func(c *fiber.Ctx) error { // Extra parameters in the accept are ignored c.Accepts("text/plain;format=flowed") // "text/plain;format=flowed"

// An offer must contain all parameters present in the Accept type c.Accepts("application/json") // ""

// Parameter order and capitalization does not matter. Quotes on values are stripped. c.Accepts(application/json;foo="bar";VERSION=1) // "application/json;foo="bar";VERSION=1" })

// Passing a custom json type
ctx.JSON(fiber.Map{
    "type": "https://example.com/probs/out-of-credit",
    "title": "You do not have enough credit.",
    "status": 403,
    "detail": "Your current balance is 30, but that costs 50.",
    "instance": "/account/12345/msgs/abc",
  }, fiber.)

🧹 Updates

  • Ctx.Range: reduce allocations (#2705)
  • Middleware/pprof: improve performance (#2709)

🛠️ Maintenance

  • Bump golang.org/x/sys from 0.13.0 to 0.14.0 (#2707)
  • Bump github.com/google/uuid from 1.3.1 to 1.4.0 (#2693)
  • Bump actions/setup-node from 3 to 4 (#2690)
  • Bbump github.com/mattn/go-isatty from 0.0.19 to 0.0.20 (#2679)

🐛 Fixes

  • Middleware/limiter: fix intermittent failures (#2716)
  • Naming of routes works wrong after mount #2688 (#2689)

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

🔄 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/246 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/14/2023 **Status:** ✅ Merged **Merged:** 11/14/2023 **Merged by:** [@mritd](https://github.com/mritd) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/gofiber/fiber/v2-2.51.0` --- ### 📝 Commits (1) - [`b9b6424`](https://github.com/Finb/bark-server/commit/b9b642420a1fc22bc11b45d928fea6376c3f1468) chore(deps): bump github.com/gofiber/fiber/v2 from 2.50.0 to 2.51.0 ### 📊 Changes **2 files changed** (+9 additions, -10 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+3 -3) 📝 `go.sum` (+6 -7) </details> ### 📄 Description Bumps [github.com/gofiber/fiber/v2](https://github.com/gofiber/fiber) from 2.50.0 to 2.51.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.51.0</h2> <h2>🚀 New</h2> <ul> <li>Add support for parameters in content negotiation (<a href="https://redirect.github.com/gofiber/fiber/issues/2678">#2678</a>) <a href="https://www.rfc-editor.org/rfc/rfc9110#name-parameters">RFC</a> <a href="https://docs.gofiber.io/api/ctx#accepts">https://docs.gofiber.io/api/ctx#accepts</a></li> </ul> <pre lang="go"><code>// Consideration of parameters in the accepted headers // Accept: text/plain, application/json; version=1; foo=bar <p>app.Get(&quot;/&quot;, func(c *fiber.Ctx) error { // Extra parameters in the accept are ignored c.Accepts(&quot;text/plain;format=flowed&quot;) // &quot;text/plain;format=flowed&quot;</p> <p>// An offer must contain all parameters present in the Accept type c.Accepts(&quot;application/json&quot;) // &quot;&quot;</p> <p>// Parameter order and capitalization does not matter. Quotes on values are stripped. c.Accepts(<code>application/json;foo=&amp;quot;bar&amp;quot;;VERSION=1</code>) // &quot;application/json;foo=&quot;bar&quot;;VERSION=1&quot; }) </code></pre></p> <ul> <li>Add support for application/problem+json (<a href="https://redirect.github.com/gofiber/fiber/issues/2704">#2704</a>) <a href="https://docs.gofiber.io/api/ctx#json">https://docs.gofiber.io/api/ctx#json</a> <a href="https://docs.gofiber.io/api/client#json">https://docs.gofiber.io/api/client#json</a></li> </ul> <pre lang="go"><code>// Passing a custom json type ctx.JSON(fiber.Map{ &quot;type&quot;: &quot;https://example.com/probs/out-of-credit&quot;, &quot;title&quot;: &quot;You do not have enough credit.&quot;, &quot;status&quot;: 403, &quot;detail&quot;: &quot;Your current balance is 30, but that costs 50.&quot;, &quot;instance&quot;: &quot;/account/12345/msgs/abc&quot;, }, fiber.) </code></pre> <h2>🧹 Updates</h2> <ul> <li>Ctx.Range: reduce allocations (<a href="https://redirect.github.com/gofiber/fiber/issues/2705">#2705</a>)</li> <li>Middleware/pprof: improve performance (<a href="https://redirect.github.com/gofiber/fiber/issues/2709">#2709</a>)</li> </ul> <h2>🛠️ Maintenance</h2> <ul> <li>Bump golang.org/x/sys from 0.13.0 to 0.14.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2707">#2707</a>)</li> <li>Bump github.com/google/uuid from 1.3.1 to 1.4.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2693">#2693</a>)</li> <li>Bump actions/setup-node from 3 to 4 (<a href="https://redirect.github.com/gofiber/fiber/issues/2690">#2690</a>)</li> <li>Bbump github.com/mattn/go-isatty from 0.0.19 to 0.0.20 (<a href="https://redirect.github.com/gofiber/fiber/issues/2679">#2679</a>)</li> </ul> <h2>🐛 Fixes</h2> <ul> <li>Middleware/limiter: fix intermittent failures (<a href="https://redirect.github.com/gofiber/fiber/issues/2716">#2716</a>)</li> <li>Naming of routes works wrong after mount <a href="https://redirect.github.com/gofiber/fiber/issues/2688">#2688</a> (<a href="https://redirect.github.com/gofiber/fiber/issues/2689">#2689</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/dceb0b4c452a16770d8cded49614e408bcf649d5"><code>dceb0b4</code></a> Update app.go</li> <li><a href="https://github.com/gofiber/fiber/commit/9f082af04517dec9695d8dc92dd29f5919c906ed"><code>9f082af</code></a> 🔥 Add support for application/problem+json (<a href="https://redirect.github.com/gofiber/fiber/issues/2704">#2704</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/1e55045a309acc8584a3e4425c51cad2e474692b"><code>1e55045</code></a> test(limiter): fix intermittent failures (<a href="https://redirect.github.com/gofiber/fiber/issues/2716">#2716</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/5d888cee3d5fa43aeb329df3b630f2a89ddde32f"><code>5d888ce</code></a> ⚡️ perf(ctx.Range): reduce allocations (<a href="https://redirect.github.com/gofiber/fiber/issues/2705">#2705</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/b99712f13e0a51a89ba4cebaf7067199241f450f"><code>b99712f</code></a> ⚡ middleware/pprof: improve performance (<a href="https://redirect.github.com/gofiber/fiber/issues/2709">#2709</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/862ea7dbf63c48af29b6bbccbaa4ae212b492fd6"><code>862ea7d</code></a> add v3 pr templates info</li> <li><a href="https://github.com/gofiber/fiber/commit/efdd0093b347c2cbfbdfa619244b439ac2fecc8c"><code>efdd009</code></a> add v3 issue/pr templates</li> <li><a href="https://github.com/gofiber/fiber/commit/781f71a0d14507a6291c4de95875f20f5880dc40"><code>781f71a</code></a> add v3 issue/pr templates</li> <li><a href="https://github.com/gofiber/fiber/commit/cbcb1aec0a1b6cdc265cf3e9bb57c14728e1688a"><code>cbcb1ae</code></a> ✨ feat: add support for parameters in content negotiation (<a href="https://redirect.github.com/gofiber/fiber/issues/2678">#2678</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/426dd3aff9c224060989772a323fae0ab045b641"><code>426dd3a</code></a> build(deps): bump golang.org/x/sys from 0.13.0 to 0.14.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2707">#2707</a>)</li> <li>Additional commits viewable in <a href="https://github.com/gofiber/fiber/compare/v2.50.0...v2.51.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.50.0&new-version=2.51.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 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) </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:59 +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#265
No description provided.