mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
970279deb8
Former-commit-id: da3ffd7b32daa12b17ad2863cb55e9d15ec9943a
1.8 KiB
1.8 KiB
Changelog
Looking for free and real-time support?
https://github.com/kataras/iris/issues
https://chat.iris-go.com
Looking for previous versions?
https://github.com/kataras/iris/releases
Want to be hired?
https://facebook.com/iris.framework
Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
How to upgrade: Open your command-line and execute this command: go get github.com/kataras/iris@master
.
Tu, 30 July 2019 | v11.2.3
TODO:
- Different parameter types in the same path (done).
- Content negotiation (in-progress)
We, 24 July 2019 | v11.2.2
Sessions as middleware:
import "github.com/kataras/iris/sessions"
// [...]
app := iris.New()
sess := sessions.New(sessions.Config{...})
app.Get("/path", func(ctx iris.Context){
session := sessions.Get(ctx)
// [work with session...]
})
- Add
Session.Len() int
to return the total number of stored values/entries. - Make
Context.HTML
andContext.Text
to accept an optional, variadic,args ...interface{}
input arg(s) too.
v11.1.1
Tu, 23 July 2019 | v11.2.0
Read about the new release at: https://www.facebook.com/iris.framework/posts/3276606095684693