Bump github.com/kataras/iris/v12 from 12.2.9 to 12.2.10 in /cloudwatch
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/hostsubpackage and remove itsDeferFlowandRestoreFlowmethods. These methods are replaced with:Supervisor.Configure(host.NonBlocking())beforeServeandSupervisor.Wait(context.Context) errorafterServe.- Fix internal
trimHandlerNameand other minor stuff.- New
iris.NonBlocking()configuration option to run the server without blocking the main routine,Application.Wait(context.Context) errormethod 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.RoundToIntegermath helper function.
Commits
113ce19release version 12.2.101254632improve the new Wait method7088291new NonBlocking option and Wait method on Application. See HISTORY.md for more5ef854dadd mathx.RoundToInteger helper0063f1cBump github.com/tdewolff/minify/v2 from 2.20.12 to 2.20.13 (#2351)38d2662Bump github.com/andybalholm/brotli from 1.0.6 to 1.1.0 (#2350)- See full diff in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
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.
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.