mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 02:31:04 +01:00
Update to version 12.1.2
Former-commit-id: f52b1b6b0680a96ff4a4c246f1451953382ddb36
This commit is contained in:
parent
7f720eb33d
commit
a1c11996b7
|
@ -21,6 +21,10 @@ 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 github.com/kataras/iris/v12@latest`.
|
**How to upgrade**: Open your command-line and execute this command: `go get github.com/kataras/iris/v12@latest`.
|
||||||
|
|
||||||
|
# Th, 19 December 2019 | v12.1.2
|
||||||
|
|
||||||
|
Fix [[BUG]Session works incorrectly when meets the multi-level TLDs](https://github.com/kataras/iris/issues/1407).
|
||||||
|
|
||||||
# Mo, 16 December 2019 | v12.1.1
|
# Mo, 16 December 2019 | v12.1.1
|
||||||
|
|
||||||
Add [Context.FindClosest(n int) []string](https://github.com/kataras/iris/blob/master/_examples/routing/not-found-suggests/main.go#L22)
|
Add [Context.FindClosest(n int) []string](https://github.com/kataras/iris/blob/master/_examples/routing/not-found-suggests/main.go#L22)
|
||||||
|
|
|
@ -21,6 +21,10 @@ Los desarrolladores no están obligados a actualizar si realmente no lo necesita
|
||||||
|
|
||||||
**Cómo actualizar**: Abra su línea de comandos y ejecute este comando: `go get github.com/kataras/iris/v12@latest`.
|
**Cómo actualizar**: Abra su línea de comandos y ejecute este comando: `go get github.com/kataras/iris/v12@latest`.
|
||||||
|
|
||||||
|
# Th, 19 December 2019 | v12.1.2
|
||||||
|
|
||||||
|
Not translated yet, please navigate to the [english version](HISTORY.md#th-19-december-2019--v1212) instead.
|
||||||
|
|
||||||
# Mo, 16 December 2019 | v12.1.1
|
# Mo, 16 December 2019 | v12.1.1
|
||||||
|
|
||||||
Not translated yet, please navigate to the [english version](HISTORY.md#mo-16-december-2019--v1211) instead.
|
Not translated yet, please navigate to the [english version](HISTORY.md#mo-16-december-2019--v1211) instead.
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
12.1.1:https://github.com/kataras/iris/releases/tag/v12.1.1
|
12.1.2:https://github.com/kataras/iris/releases/tag/v12.1.2
|
|
@ -4,5 +4,5 @@ go 1.13
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/betacraft/yaag v1.0.1-0.20191027021412-565f65e36090
|
github.com/betacraft/yaag v1.0.1-0.20191027021412-565f65e36090
|
||||||
github.com/kataras/iris/v12 v12.1.1
|
github.com/kataras/iris/v12 v12.1.2
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,5 +4,5 @@ go 1.13
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/googollee/go-socket.io v1.4.3-0.20191109153049-7451e2f8c2e0 // indirect
|
github.com/googollee/go-socket.io v1.4.3-0.20191109153049-7451e2f8c2e0 // indirect
|
||||||
github.com/kataras/iris/v12 v12.1.1
|
github.com/kataras/iris/v12 v12.1.2
|
||||||
)
|
)
|
||||||
|
|
2
doc.go
2
doc.go
|
@ -38,7 +38,7 @@ Source code and other details for the project are available at GitHub:
|
||||||
|
|
||||||
Current Version
|
Current Version
|
||||||
|
|
||||||
12.1.1
|
12.1.2
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
|
||||||
|
|
2
iris.go
2
iris.go
|
@ -39,7 +39,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// Version is the current version number of the Iris Web Framework.
|
// Version is the current version number of the Iris Web Framework.
|
||||||
const Version = "12.1.1"
|
const Version = "12.1.2"
|
||||||
|
|
||||||
// HTTP status codes as registered with IANA.
|
// HTTP status codes as registered with IANA.
|
||||||
// See: http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml.
|
// See: http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user