go-http-metrics
go-http-metrics copied to clipboard
Bump github.com/kataras/iris/v12 from 12.2.10 to 12.2.11
Bumps github.com/kataras/iris/v12 from 12.2.10 to 12.2.11.
Release notes
Sourced from github.com/kataras/iris/v12's releases.
v12.2.11
Project Update: Iris is Evolving 🌱
Dear Iris Community,
You might have noticed a recent lull in activity on the Iris repository. I want to assure you that this silence is not without reason. For the past 3-4 months, I've been diligently working on the next major release of Iris.
This upcoming version is poised to be a significant leap forward, fully embracing the Generics feature introduced in Go. We're not just stopping at Generics, though. Expect a suite of new features, enhancements, and optimizations that will elevate your development experience to new heights.
My journey with Go spans over 8 years, and with each year, my expertise and understanding of the language deepen. This accumulated knowledge is being poured into Iris, ensuring that the framework not only evolves with the language but also with the community's growing needs.
Stay tuned for more updates, and thank you for your continued support and patience. The wait will be worth it.
Warm regards, Gerasimos (Makis) Maropoulos
Release v12.2.11
This is the last release for the version 12 family.
New Contributors
@testwillmade their first contribution in kataras/iris#2416HISTORY: https://github.com/kataras/iris/blob/v12/HISTORY.md#thu-25-april-2024--v12211 Full Changelog: https://github.com/kataras/iris/compare/v12.2.10...v12.2.11
Changelog
Sourced from github.com/kataras/iris/v12's changelog.
Thu, 25 April 2024 | v12.2.11
Dear Iris Community,
You might have noticed a recent lull in activity on the Iris repository. I want to assure you that this silence is not without reason. For the past 3-4 months, I've been diligently working on the next major release of Iris.
This upcoming version is poised to be a significant leap forward, fully embracing the Generics feature introduced in Go. We're not just stopping at Generics, though. Expect a suite of new features, enhancements, and optimizations that will elevate your development experience to new heights.
My journey with Go spans over 8 years, and with each year, my expertise and understanding of the language deepen. This accumulated knowledge is being poured into Iris, ensuring that the framework not only evolves with the language but also with the community's growing needs.
Stay tuned for more updates, and thank you for your continued support and patience. The wait will be worth it.
Warm regards, Gerasimos (Makis) Maropoulos
This is the last release for the version 12 family.
Security improvements and dependencies upgrade.
New
Application/Party.MiddlewareExists(handlerNameOrHandler)method added, example:package mainimport ( "fmt"
"github.com/kataras/iris/v12" "github.com/kataras/iris/v12/x/errors")
func main() { app := iris.New()
app.UseRouter(errors.RecoveryHandler)if app.MiddlewareExists(errors.RecoveryHandler) { // <- HERE. fmt.Println("errors.RecoveryHandler exists") } // OR: // if app.MiddlewareExists("iris.errors.recover") { // fmt.Println("Iris.Errors.Recovery exists") // }
app.Get("/", indexHandler)
app.Listen(":8080")
}
func indexHandler(ctx iris.Context) { </tr></table>
... (truncated)
Commits
08a852elast version of v124117f3brelease v12.2.11df7737eerrgroup: remove redundantlencheck (#2354)4e90cd4minord88273aminor6167d3eupdate examples dependenciesc06e146Project Updateb904793fix: close form file (#2416)c2238c7minor improvement of the x/jsonx.SimpleDate time parser384ca4dminor: add some x/jsonx.ISO8601 shortcuts- Additional commits viewable 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)