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:
26
HISTORY.md
26
HISTORY.md
@@ -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).
|
||||
|
||||
Reference in New Issue
Block a user