iris icon indicating copy to clipboard operation
iris copied to clipboard

The fastest HTTP/2 Go Web Framework. New, modern and easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio :rocket:

Results 190 iris issues
Sort by recently updated
recently updated
newest added

Used versions of golang.org/x/crypto in v12.1.8, v12.2.0-alpha and v12.2.0-alpha2 are vulnerable to CVE-2020-29652. Short description: Nil Pointer Dereference in golang.org/x/crypto Solution: Upgrade to version v0.0.0-20201216223049-8b5274cf687f or above. Description: A nil...

🤘 status:resolved

We're not alone, there are a lot of people behind the scenes that helped Iris to become the best web framework to work with since 2016. We appreciate each and...

The currently released new version 1.16 of Go provide package embed, so we can embed files like *.html and others into the compiled binary executable file. I want to know...

💡type:idea

This is a documentation bug - would be happy to open a PR for that, but I can't find the repository where documentation is edited. On this page: https://docs.iris-go.com/iris/security/cors#using-the-cors-middleware Under...

🐞 type:bug

When upgrade Iris to latest version I got the following errors which prevent me from compiling the project: ``` github.com/kataras/iris/v12 imports github.com/kataras/iris/v12/context imports github.com/klauspost/compress/snappy: cannot find module providing package github.com/klauspost/compress/snappy...

Describe the issue you are facing or ask for help ![image](https://user-images.githubusercontent.com/38741914/123056598-a3b98180-d439-11eb-955a-2b4c78bca459.png) ps: app.Application := iris.new() help !!! how to fix this issue ? how to use gracehttp

@kataras same question,In MVC mode, no matter get or post request, if the url or form parameter is not passed, no error will be triggered。 ```go app := iris.New() app.Validator...

For example to add some function to context.

Hi, Given one of my handlers is rendering a `ctx.View`, I would like to push the assets called by my HTML page. In the `_example/response-writer/htt2push` package, the push is made...

I have api router need `ctx.Redirect(targetURL, statusCode)`, I want to check the `targetURL` is ok, ``` app.get("/a", func(ctx iris.Context){ ctx.Redirect("https://google.com", 302) }) ``` i write test like : ``` func...