middleware icon indicating copy to clipboard operation
middleware copied to clipboard

Bump github.com/kataras/iris/v12 from 12.2.9 to 12.2.10 in /cloudwatch

Open dependabot[bot] opened this issue 1 year ago • 1 comments

Bumps github.com/kataras/iris/v12 from 12.2.9 to 12.2.10.

Release notes

Sourced from github.com/kataras/iris/v12's releases.

v12.2.10

Full Changelog: https://github.com/kataras/iris/blob/main/HISTORY.md#thu-18-jan-2024--v12210

Changelog

Sourced from github.com/kataras/iris/v12's changelog.

Thu, 18 Jan 2024 | v12.2.10

  • Simplify the /core/host subpackage and remove its DeferFlow and RestoreFlow methods. These methods are replaced with: Supervisor.Configure(host.NonBlocking()) before Serve and Supervisor.Wait(context.Context) error after Serve.
  • Fix internal trimHandlerName and other minor stuff.
  • New iris.NonBlocking() configuration option to run the server without blocking the main routine, Application.Wait(context.Context) error method can be used to block and wait for the server to be up and running. Example:
func main() {
    app := iris.New()
    app.Get("/", func(ctx iris.Context) {
        ctx.Writef("Hello, %s!", "World")
    })
app.Listen(":8080", iris.NonBlocking(), iris.WithoutServerError(iris.ErrServerClosed))

ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second) defer cancel()

if err := app.Wait(ctx); err != nil { log.Fatal(err) }

// [Server is up and running now, you may continue with other functions below].

}

  • Add x/mathx.RoundToInteger math helper function.
Commits
  • 113ce19 release version 12.2.10
  • 1254632 improve the new Wait method
  • 7088291 new NonBlocking option and Wait method on Application. See HISTORY.md for more
  • 5ef854d add mathx.RoundToInteger helper
  • 0063f1c Bump github.com/tdewolff/minify/v2 from 2.20.12 to 2.20.13 (#2351)
  • 38d2662 Bump github.com/andybalholm/brotli from 1.0.6 to 1.1.0 (#2350)
  • See full diff 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 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)

dependabot[bot] avatar Jan 18 '24 13:01 dependabot[bot]

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

CLAassistant avatar Jan 18 '24 13:01 CLAassistant

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

dependabot[bot] avatar Apr 24 '24 23:04 dependabot[bot]