1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-10 05:25:58 +00:00

push version 8.0.6 🎬

Former-commit-id: 0024f1b9acc1621b1672d5b7484a26dff2f9992e
This commit is contained in:
hiveminded
2017-07-22 23:32:14 +03:00
parent 6f8b802551
commit 11f2f296ba
4 changed files with 29 additions and 5 deletions

View File

@@ -17,10 +17,34 @@ Developers are not forced to upgrade if they don't really need it. Upgrade whene
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
# Sa, 22 July 2017 | v8.0.5
# Sa, 22 July 2017 | v8.0.5 & v8.0.6
No API Changes.
### Performance
Add an experimental [Configuration#EnableOptimizations](https://github.com/kataras/iris/blob/master/configuration.go#L170) option.
```go
type Configuration {
// [...]
// EnableOptimization when this field is true
// then the application tries to optimize for the best performance where is possible.
//
// Defaults to false.
EnableOptimizations bool `yaml:"EnableOptimizations" toml:"EnableOptimizations"`
// [...]
}
```
Usage:
```go
app.Run(iris.Addr(":8080"), iris.WithOptimizations)
```
### Django view engine
@corebreaker pushed a [PR](https://github.com/kataras/iris/pull/682) to solve the [Problem for {%extends%} in Django Engine with embedded files](https://github.com/kataras/iris/issues/681).