[PR #211] [MERGED] chore(deps): bump github.com/gofiber/fiber/v2 from 2.43.0 to 2.44.0 #237

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

📋 Pull Request Information

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

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


📝 Commits (1)

  • 55dd9f0 chore(deps): bump github.com/gofiber/fiber/v2 from 2.43.0 to 2.44.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.43.0 to 2.44.0.

Release notes

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

v2.44.0

🚀 New

Note: Using this feature is discouraged in production and it's best practice to explicitly set CORS origins via AllowOrigins.

In this example any origin will be allowed via CORS. For example, if a browser running on http://localhost:3000 sends a request, this will be accepted and the access-control-allow-origin response header will be set to http://localhost:3000.

app.Use(cors.New(cors.Config{
    AllowOriginsFunc: func(origin string) bool {
        return os.Getenv("ENVIRONMENT") == "development"
    },
}))

🧹 Updates

  • Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#2405)
  • github/workflows: also run tests with Go 1.19.x (#2384)
  • Bump github.com/mattn/go-isatty from 0.0.17 to 0.0.18 (#2381)

🐛 Fixes

  • Middleware/logger: Fix #2396, data race logger middleware (#2397)
  • Middleware/timeout: Add original timeout middleware (#2367) https://docs.gofiber.io/next/api/middleware/timeout With version v2.38.1 we changed the behavior of the timeout function, this has now been undone and a function for use with context has been provided
  • Mounted subapps don't work correctly if parent app attached (#2331)
  • Change default value of Querybool from true to false. (#2391) The fallback value for not found or not boolean values was adjusted to the golang standard
  • Fix #2383, accepts mimeType (#2386)

📚 Documentation

  • Added Azerbaijani README translation (#2411)
  • Fix import and comma issues (#2410)
  • Fix typos, and make middleware documentation more consistent (#2408)
  • Added code link to fiber config fields (#2385)
  • Adding to fac sub domain routing (#2393)

... (truncated)

Commits
  • ff390b5 prepare release v2.44.0
  • 41b08b6 Update faq.md
  • 65e0ce2 🐛 [Bug-Fix]: Mounted subapps don't work correctly if parent app attached … (#...
  • 2237e9c 📚 Docs: Added Azerbaijani README translation (#2411)
  • 3b7a7d4 📚 Docs: Fix import and comma issues (#2410)
  • 866d5b7 feat(cors): Added new 'AllowOriginsFunc' function. (#2394)
  • fcf708d Update routing.md
  • c396d2a Update grouping.md
  • 8b1f926 📚 Docs: Fix typos, and make middleware documentation more consistent (#...
  • 22b407e 🐛 [Bug-Fix] add original timeout middleware (#2367)
  • 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 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/211 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 4/17/2023 **Status:** ✅ Merged **Merged:** 4/18/2023 **Merged by:** [@mritd](https://github.com/mritd) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/gofiber/fiber/v2-2.44.0` --- ### 📝 Commits (1) - [`55dd9f0`](https://github.com/Finb/bark-server/commit/55dd9f03c5945d37d32efd75dad093e1a6e18f26) chore(deps): bump github.com/gofiber/fiber/v2 from 2.43.0 to 2.44.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.43.0 to 2.44.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.44.0</h2> <h2>🚀 New</h2> <ul> <li>Added new 'AllowOriginsFunc' function. (<a href="https://redirect.github.com/gofiber/fiber/issues/2394">#2394</a>) <a href="https://docs.gofiber.io/api/middleware/cors#config">https://docs.gofiber.io/api/middleware/cors#config</a></li> </ul> <!-- raw HTML omitted --> <p><strong>Note: Using this feature is discouraged in production and it's best practice to explicitly set CORS origins via AllowOrigins.</strong></p> <p>In this example any origin will be allowed via CORS. For example, if a browser running on <a href="http://localhost:3000">http://localhost:3000</a> sends a request, this will be accepted and the access-control-allow-origin response header will be set to <a href="http://localhost:3000">http://localhost:3000</a>.</p> <!-- raw HTML omitted --> <pre lang="go"><code>app.Use(cors.New(cors.Config{ AllowOriginsFunc: func(origin string) bool { return os.Getenv(&quot;ENVIRONMENT&quot;) == &quot;development&quot; }, })) </code></pre> <ul> <li>Public ShutdownWithContext (<a href="https://redirect.github.com/gofiber/fiber/issues/2407">#2407</a>) <a href="https://docs.gofiber.io/api/app#server-shutdown">https://docs.gofiber.io/api/app#server-shutdown</a></li> </ul> <h2>🧹 Updates</h2> <ul> <li>Bump golang.org/x/sys from 0.6.0 to 0.7.0 (<a href="https://redirect.github.com/gofiber/fiber/issues/2405">#2405</a>)</li> <li>github/workflows: also run tests with Go 1.19.x (<a href="https://redirect.github.com/gofiber/fiber/issues/2384">#2384</a>)</li> <li>Bump github.com/mattn/go-isatty from 0.0.17 to 0.0.18 (<a href="https://redirect.github.com/gofiber/fiber/issues/2381">#2381</a>)</li> </ul> <h2>🐛 Fixes</h2> <ul> <li>Middleware/logger: Fix <a href="https://redirect.github.com/gofiber/fiber/issues/2396">#2396</a>, data race logger middleware (<a href="https://redirect.github.com/gofiber/fiber/issues/2397">#2397</a>)</li> <li>Middleware/timeout: Add original timeout middleware (<a href="https://redirect.github.com/gofiber/fiber/issues/2367">#2367</a>) <a href="https://docs.gofiber.io/next/api/middleware/timeout">https://docs.gofiber.io/next/api/middleware/timeout</a> ❗With version <a href="https://github.com/gofiber/fiber/releases/tag/v2.38.1">v2.38.1</a> we changed the behavior of the timeout function, this has now been undone and a function for use with context has been provided</li> <li>Mounted subapps don't work correctly if parent app attached (<a href="https://redirect.github.com/gofiber/fiber/issues/2331">#2331</a>)</li> <li>Change default value of Querybool from true to false. (<a href="https://redirect.github.com/gofiber/fiber/issues/2391">#2391</a>) ❗The fallback value for not found or not boolean values was adjusted to the golang standard</li> <li>Fix <a href="https://redirect.github.com/gofiber/fiber/issues/2383">#2383</a>, accepts mimeType (<a href="https://redirect.github.com/gofiber/fiber/issues/2386">#2386</a>)</li> </ul> <h2>📚 Documentation</h2> <ul> <li>Added Azerbaijani README translation (<a href="https://redirect.github.com/gofiber/fiber/issues/2411">#2411</a>)</li> <li>Fix import and comma issues (<a href="https://redirect.github.com/gofiber/fiber/issues/2410">#2410</a>)</li> <li>Fix typos, and make middleware documentation more consistent (<a href="https://redirect.github.com/gofiber/fiber/issues/2408">#2408</a>)</li> <li>Added code link to fiber config fields (<a href="https://redirect.github.com/gofiber/fiber/issues/2385">#2385</a>)</li> <li>Adding to fac sub domain routing (<a href="https://redirect.github.com/gofiber/fiber/issues/2393">#2393</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/ff390b5bb8796d683ee8d9308a32b7fdb6436c79"><code>ff390b5</code></a> prepare release v2.44.0</li> <li><a href="https://github.com/gofiber/fiber/commit/41b08b6cb01875d3876c83470b24b94ee7f6661e"><code>41b08b6</code></a> Update faq.md</li> <li><a href="https://github.com/gofiber/fiber/commit/65e0ce285a374fed0a89260db37bf41576975510"><code>65e0ce2</code></a> 🐛 [Bug-Fix]: Mounted subapps don't work correctly if parent app attached … (#...</li> <li><a href="https://github.com/gofiber/fiber/commit/2237e9c5115e6ade2bfedf6a85d04a36957cd635"><code>2237e9c</code></a> 📚 Docs: Added Azerbaijani README translation (<a href="https://redirect.github.com/gofiber/fiber/issues/2411">#2411</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/3b7a7d491b6cba6141dd67b9670e2d9e603c807b"><code>3b7a7d4</code></a> :books: Docs: Fix import and comma issues (<a href="https://redirect.github.com/gofiber/fiber/issues/2410">#2410</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/866d5b7628efcc38f25fb5479fe7aeb720de95d3"><code>866d5b7</code></a> ✨ feat(cors): Added new 'AllowOriginsFunc' function. (<a href="https://redirect.github.com/gofiber/fiber/issues/2394">#2394</a>)</li> <li><a href="https://github.com/gofiber/fiber/commit/fcf708dfc2edb5dfcb5d8c527eff9f5b30755d89"><code>fcf708d</code></a> Update routing.md</li> <li><a href="https://github.com/gofiber/fiber/commit/c396d2aa45966dc4c0b249405aea9d2f69ac10a0"><code>c396d2a</code></a> Update grouping.md</li> <li><a href="https://github.com/gofiber/fiber/commit/8b1f9260a398a1c5ca41608432fcef6871f501d9"><code>8b1f926</code></a> :books: Docs: Fix typos, and make middleware documentation more consistent (#...</li> <li><a href="https://github.com/gofiber/fiber/commit/22b407e2e7838c08939315b67ec982519e8f4679"><code>22b407e</code></a> :bug: [Bug-Fix] add original timeout middleware (<a href="https://redirect.github.com/gofiber/fiber/issues/2367">#2367</a>)</li> <li>Additional commits viewable in <a href="https://github.com/gofiber/fiber/compare/v2.43.0...v2.44.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.43.0&new-version=2.44.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:51 +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#237
No description provided.