mirror of
https://github.com/kataras/iris.git
synced 2025-02-13 04:26:18 +01:00
Update to version 8.4.4 | Read https://github.com/kataras/iris/blob/master/HISTORY.md#su-01-october-2017--v844
Former-commit-id: 8c339fc59ade04ad35bc108c817c4d4c30dbca33
This commit is contained in:
parent
3e6ec4d441
commit
ba63031871
|
@ -7,7 +7,7 @@ go:
|
||||||
# we must encourage users to update to the latest go version,
|
# we must encourage users to update to the latest go version,
|
||||||
# so examples are running on go 1.9 mode.
|
# so examples are running on go 1.9 mode.
|
||||||
- go1.9
|
- go1.9
|
||||||
- tip
|
# - tip
|
||||||
go_import_path: github.com/kataras/iris
|
go_import_path: github.com/kataras/iris
|
||||||
install:
|
install:
|
||||||
- go get ./... # for iris-contrib/httpexpect, kataras/golog, boltdb/bolt(sessiondb, optional)
|
- go get ./... # for iris-contrib/httpexpect, kataras/golog, boltdb/bolt(sessiondb, optional)
|
||||||
|
|
|
@ -18,6 +18,15 @@ 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`.
|
||||||
|
|
||||||
|
# Su, 01 October 2017 | v8.4.4
|
||||||
|
|
||||||
|
- Fix https://github.com/kataras/iris/issues/762 reported by @xkylsoft
|
||||||
|
- Fix https://github.com/kataras/iris/issues/771 reported by @cdren
|
||||||
|
- Improvements to the memstore's `GetInt`, `GetInt64`, `GetFloat64`, `GetBool` and remove the `golang/net/context`'s interface completion from Context, read the [changes](https://github.com/kataras/iris/commit/caff55748eca4ecb4aa5a770995265b9b3aee544) for more
|
||||||
|
- Add two examples for folder structuring as requested at https://github.com/kataras/iris/issues/748
|
||||||
|
* [Example 1](_examples/mvc/login)
|
||||||
|
* [Example 2](_examples/structuring/mvc)
|
||||||
|
- Add node.js express [benchmarks](_benchmarks) similar to iris and netcore
|
||||||
|
|
||||||
# We, 27 September 2017 | v8.4.3
|
# We, 27 September 2017 | v8.4.3
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@ Help this project to continue deliver awesome and unique features with the highe
|
||||||
### 📑 Table of contents
|
### 📑 Table of contents
|
||||||
|
|
||||||
* [Installation](#-installation)
|
* [Installation](#-installation)
|
||||||
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#we-27-september-2017--v843)
|
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#su-01-october-2017--v844)
|
||||||
* [Learn](#-learn)
|
* [Learn](#-learn)
|
||||||
* [Structuring](_examples/#structuring)
|
* [Structuring](_examples/#structuring)
|
||||||
* [HTTP Listening](_examples/#http-listening)
|
* [HTTP Listening](_examples/#http-listening)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
8.4.3:https://github.com/kataras/iris/blob/master/HISTORY.md#we-27-september-2017--v843
|
8.4.4:https://github.com/kataras/iris/blob/master/HISTORY.md#su-01-october-2017--v844
|
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.4.3
|
8.4.4
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
|
||||||
|
|
2
iris.go
2
iris.go
|
@ -32,7 +32,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.4.3"
|
Version = "8.4.4"
|
||||||
)
|
)
|
||||||
|
|
||||||
// HTTP status codes as registered with IANA.
|
// HTTP status codes as registered with IANA.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user