Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/gofiber/fiber/v2 to v2.43.0 #18

Merged
merged 1 commit into from
Mar 26, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 5, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/gofiber/fiber/v2 require minor v2.42.0 -> v2.43.0

Release Notes

gofiber/fiber

v2.43.0

Compare Source

❗ BreakingChange

  • Drop go 1.16 support & update to fasthttp 1.45.0 (#​2374)

Due to the fact that fasthttp, which fiber is based on in release 1.45.0, does not support go version 1.16 anymore, we had to remove it from our package as well.

🚀 New

app.ListenTLSWithCertificate(":443", cert); 
app.ListenMutualTLSWithCertificate(":443", cert, clientCertPool);
// GET http://example.com/?name=alex&want_pizza=false&id=

app.Get("/", func(c *fiber.Ctx) error {
    c.QueryBool("want_pizza")       // false
    c.QueryBool("want_pizza", true) // false
    c.QueryBool("alex")             // true
    c.QueryBool("alex", false)      // false
    c.QueryBool("id")               // true
    c.QueryBool("id", false)        // false

  // ...
})
// GET http://example.com/?name=alex&amount=32.23&id=

app.Get("/", func(c *fiber.Ctx) error {
    c.QueryFloat("amount")      // 32.23
    c.QueryFloat("amount", 3)   // 32.23
    c.QueryFloat("name", 1)     // 1
    c.QueryFloat("name")        // 0
    c.QueryFloat("id", 3)       // 3

  // ...
})
  session.New(session.Config{
    // Decides whether cookie should last for only the browser sesison.
    CookieSessionOnly: true,
  })
// DoRedirects performs the given http request and fills the given http response while following up to maxRedirectsCount redirects.
func DoRedirects(c *fiber.Ctx, addr string, maxRedirectsCount int, clients ...*fasthttp.Client) error
// DoDeadline performs the given request and waits for response until the given deadline.
func DoDeadline(c *fiber.Ctx, addr string, deadline time.Time, clients ...*fasthttp.Client) error
// DoTimeout performs the given request and waits for response during the given timeout duration.
func DoTimeout(c *fiber.Ctx, addr string, timeout time.Duration, clients ...*fasthttp.Client) error

🧹 Updates

  • Get mime fallback (#​2340)
  • Middleware/requestid: don't call "Generator" func on existing request ID header (#​2371)
  • Middleware/basicauth: Optimize Basic auth alloc (#​2333)

🐛 Fixes

  • Middleware/requestid: Config.ContextKey is interface{} (#​2369)
  • Middleware/cors: Fix cors * behavior #​2338 (#​2339)

📚 Documentation

  • Use proper discord invitation link (#​2382)
  • Corrected coding typos in MountPath docs section (#​2379)
  • Fix typo in docs (#​2357)
  • Fix(docs): add missing comma (#​2353)
  • Fix all inaccessible links in docs (#​2349)
  • Automated synchronization with gofiber/docs (#​2344)

Full Changelog: gofiber/fiber@v2.42.0...v2.43.0

Thank you @​CaioAugustoo, @​HHongSeungWoo, @​IwateKyle, @​Rorke76753, @​Skyenought, @​UtopiaGitHub, @​benjajaja, @​derkan, @​dozheiny, @​efectn, @​gaby, @​leonklingele, @​lublak, @​msaf1980, @​ryand67 and @​yvestumushimire for making this update possible.


Configuration

📅 Schedule: Branch creation - "before 6am" in timezone Asia/Jakarta, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a496678 to ef22150 Compare January 6, 2023 02:28
@renovate renovate bot changed the title chore(deps): update actions/checkout action to v3.3.0 chore(deps): update all non-major dependencies Jan 6, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 375be08 to cb07ccc Compare January 17, 2023 07:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1c5b65e to 6a3315a Compare January 26, 2023 06:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 25e7be3 to 5f4d5c3 Compare February 2, 2023 13:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 0d9a960 to 5166811 Compare February 10, 2023 10:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 4057a80 to 62d3d36 Compare February 17, 2023 13:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 83bbbb4 to b089eae Compare February 24, 2023 16:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from dce442c to f88df10 Compare March 6, 2023 15:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4997d22 to 41d0b55 Compare March 15, 2023 20:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 41d0b55 to 4021dc8 Compare March 19, 2023 02:01
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Mar 19, 2023
@renovate renovate bot closed this Mar 19, 2023
@renovate renovate bot deleted the renovate/all-minor-patch branch March 19, 2023 14:26
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Mar 24, 2023
@renovate renovate bot reopened this Mar 24, 2023
@renovate renovate bot restored the renovate/all-minor-patch branch March 24, 2023 19:05
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update module github.com/gofiber/fiber/v2 to v2.43.0 Mar 24, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4021dc8 to 1bb57d4 Compare March 24, 2023 19:26
@KagChi KagChi merged commit 159b539 into main Mar 26, 2023
@renovate renovate bot deleted the renovate/all-minor-patch branch March 26, 2023 10:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant