mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 15:30:36 +01:00
update to 8.0.5 fix django binary loader and remove logrus from vendor
Fix django binary loading was maden by @corebreaker, look the history file for more information. Former-commit-id: 707d359ea7357baf7bd60208def813dbd9260ddb
This commit is contained in:
parent
197cb0e9b0
commit
90b8c1af44
|
@ -7,7 +7,7 @@ go:
|
||||||
- tip
|
- tip
|
||||||
go_import_path: github.com/kataras/iris
|
go_import_path: github.com/kataras/iris
|
||||||
install:
|
install:
|
||||||
- go get ./... # for iris-contrib/httpexpect
|
- go get ./... # for iris-contrib/httpexpect and sirupsen/logrus
|
||||||
script:
|
script:
|
||||||
- go test -v -cover ./...
|
- go test -v -cover ./...
|
||||||
after_script:
|
after_script:
|
||||||
|
|
20
HISTORY.md
20
HISTORY.md
|
@ -17,6 +17,26 @@ 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`.
|
**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
|
||||||
|
|
||||||
|
No API Changes.
|
||||||
|
|
||||||
|
### 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](dhttps://github.com/kataras/iris/issues/681).
|
||||||
|
|
||||||
|
### Logger
|
||||||
|
|
||||||
|
Remove the `vendor/github.com/sirupsen/logrus` folder, as a temporary solution for the https://github.com/kataras/iris/issues/680#issuecomment-316196126.
|
||||||
|
|
||||||
|
#### Future versions
|
||||||
|
|
||||||
|
The logrus will be replaced with a custom implementation, because of that: https://github.com/kataras/iris/issues/680#issuecomment-316184570.
|
||||||
|
|
||||||
|
As far as we know, @kataras is working on this new implementation, see [here](https://github.com/kataras/iris/issues/680#issuecomment-316544906),
|
||||||
|
which will be compatible with the logrus package and other open-source golang loggers as well.
|
||||||
|
|
||||||
|
|
||||||
# Mo, 17 July 2017 | v8.0.4
|
# Mo, 17 July 2017 | v8.0.4
|
||||||
|
|
||||||
No API changes.
|
No API changes.
|
||||||
|
|
|
@ -17,7 +17,7 @@ Iris is a fast, simple and efficient micro web framework for Go. It provides a b
|
||||||
### 📑 Table of contents
|
### 📑 Table of contents
|
||||||
|
|
||||||
* [Installation](#-installation)
|
* [Installation](#-installation)
|
||||||
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#mo-17-july-2017--v804)
|
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#sa-22-july-2017--v805)
|
||||||
* [Learn](#-learn)
|
* [Learn](#-learn)
|
||||||
* [HTTP Listening](_examples/#http-listening)
|
* [HTTP Listening](_examples/#http-listening)
|
||||||
* [Configuration](_examples/#configuration)
|
* [Configuration](_examples/#configuration)
|
||||||
|
@ -339,7 +339,7 @@ Thank You for your trust!
|
||||||
|
|
||||||
### 📌 Version
|
### 📌 Version
|
||||||
|
|
||||||
Current: **8.0.4**
|
Current: **8.0.5**
|
||||||
|
|
||||||
Each new release is pushed to the master. It stays there until the next version. When a next version is released then the previous version goes to its own branch with `gopkg.in` as its import path (and its own vendor folder), in order to keep it working "for-ever".
|
Each new release is pushed to the master. It stays there until the next version. When a next version is released then the previous version goes to its own branch with `gopkg.in` as its import path (and its own vendor folder), in order to keep it working "for-ever".
|
||||||
|
|
||||||
|
|
2
doc.go
2
doc.go
|
@ -35,7 +35,7 @@ Source code and other details for the project are available at GitHub:
|
||||||
|
|
||||||
Current Version
|
Current Version
|
||||||
|
|
||||||
8.0.4
|
8.0.5
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
|
||||||
|
|
2
iris.go
2
iris.go
|
@ -33,7 +33,7 @@ import (
|
||||||
const (
|
const (
|
||||||
|
|
||||||
// Version is the current version number of the Iris Web Framework.
|
// Version is the current version number of the Iris Web Framework.
|
||||||
Version = "8.0.4"
|
Version = "8.0.5"
|
||||||
)
|
)
|
||||||
|
|
||||||
// HTTP status codes as registered with IANA.
|
// HTTP status codes as registered with IANA.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user