dependabot[bot] opened a new pull request, #1414:
URL: https://github.com/apache/servicecomb-service-center/pull/1414

   Bumps [github.com/gofiber/fiber/v2](https://github.com/gofiber/fiber) from 
2.36.0 to 2.43.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.43.0</h2>
   <h2>❗ BreakingChange</h2>
   <ul>
   <li>Drop go 1.16 support &amp; update to fasthttp 1.45.0 (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2374";>#2374</a>)</li>
   </ul>
   <p><strong>Due to the fact that fasthttp, which fiber is based on in release 
<a href="https://github.com/valyala/fasthttp/releases/tag/v1.45.0";>1.45.0</a>, 
does not support go version 1.16 anymore, we had to remove it from our package 
as well.</strong></p>
   <h2>🚀 New</h2>
   <ul>
   <li>Allow preloaded certs with prefork (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2351";>#2351</a>)
   <a 
href="https://docs.gofiber.io/api/app#listentlswithcertificate";>https://docs.gofiber.io/api/app#listentlswithcertificate</a>
   <a 
href="https://docs.gofiber.io/api/app#listenmutualtlswithcertificate";>https://docs.gofiber.io/api/app#listenmutualtlswithcertificate</a></li>
   </ul>
   <pre lang="go"><code>app.ListenTLSWithCertificate(&quot;:443&quot;, cert); 
   </code></pre>
   <pre lang="go"><code>app.ListenMutualTLSWithCertificate(&quot;:443&quot;, 
cert, clientCertPool);
   </code></pre>
   <ul>
   <li>Add queryBool parser (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2329";>#2329</a>)
   <a 
href="https://docs.gofiber.io/api/ctx#querybool";>https://docs.gofiber.io/api/ctx#querybool</a></li>
   </ul>
   <pre lang="go"><code>// GET 
http://example.com/?name=alex&amp;want_pizza=false&amp;id=
   <p>app.Get(&quot;/&quot;, func(c *fiber.Ctx) error {
   c.QueryBool(&quot;want_pizza&quot;)       // false
   c.QueryBool(&quot;want_pizza&quot;, true) // false
   c.QueryBool(&quot;alex&quot;)             // true
   c.QueryBool(&quot;alex&quot;, false)      // false
   c.QueryBool(&quot;id&quot;)               // true
   c.QueryBool(&quot;id&quot;, false)        // false</p>
   <p>// ...
   })
   </code></pre></p>
   <ul>
   <li>Add queryFloat parser (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2328";>#2328</a>)
   <a 
href="https://docs.gofiber.io/api/ctx#queryfloat";>https://docs.gofiber.io/api/ctx#queryfloat</a></li>
   </ul>
   <pre lang="go"><code>// GET 
http://example.com/?name=alex&amp;amount=32.23&amp;id=
   <p>app.Get(&quot;/&quot;, func(c *fiber.Ctx) error {
   c.QueryFloat(&quot;amount&quot;)      // 32.23
   c.QueryFloat(&quot;amount&quot;, 3)   // 32.23
   c.QueryFloat(&quot;name&quot;, 1)     // 1
   c.QueryFloat(&quot;name&quot;)        // 0
   c.QueryFloat(&quot;id&quot;, 3)       // 3</p>
   <p>// ...
   })
   </code></pre></p>
   <ul>
   <li>Middleware/session: SessionOnly when cookie.Expires is 0 (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2152";>#2152</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/69884117c294933c6a2b46f8eb204a1cfdfeb93f";><code>6988411</code></a>
 prepare release v2.43.0</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/547db83cdd91cfa7f7f75879d5fe9dffb1b6e563";><code>547db83</code></a>
 Get mime fallback (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2340";>#2340</a>)</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/1f527996862af97a47f18a8611069e7f1fcfd0ee";><code>1f52799</code></a>
 Refresh middleware documentation</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/f0582a59efe3b72c0455fba3184ebb3345a4f3a5";><code>f0582a5</code></a>
 github: use proper discord invitation link (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2382";>#2382</a>)</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/32c39617268b95d9123f6e317b54ab37d3399be9";><code>32c3961</code></a>
 corrected coding typos in MountPath docs section (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2379";>#2379</a>)</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/7536ce8b1abfa84967a3e77f97b1e48c085975e7";><code>7536ce8</code></a>
 Bump actions/setup-go from 3 to 4 (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2376";>#2376</a>)</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/9064eb64692bc5adb058b2f8d302397c55010b30";><code>9064eb6</code></a>
 :broom: chore: drop go 1.16 support &amp; update dependencies (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2374";>#2374</a>)</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/56839b433ea67b0c2159f30ee34a34bb9c8e45a2";><code>56839b4</code></a>
 🚀 [Feature]: middleware/requestid: don't call &quot;Generator&quot; func on 
existing re...</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/d7b36cde54a0a5f96f0fb0fe0e9030bd506f1305";><code>d7b36cd</code></a>
 :bug: requestid.Config.ContextKey is interface{} (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2369";>#2369</a>)</li>
   <li><a 
href="https://github.com/gofiber/fiber/commit/678728de6d38a60667b3390b3e0c28f99ff041d9";><code>678728d</code></a>
 🐛 [Bug-Fix]: add lock to avoid data race <a 
href="https://redirect.github.com/gofiber/fiber/issues/2360";>#2360</a> (<a 
href="https://redirect.github.com/gofiber/fiber/issues/2368";>#2368</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/gofiber/fiber/compare/v2.36.0...v2.43.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.36.0&new-version=2.43.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)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts 
page](https://github.com/apache/servicecomb-service-center/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to