mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 02:31:04 +01:00
Publish version 11.2.6
Former-commit-id: 3563f65de75fe8923ceca8a4b36c8c1cd5abebe7
This commit is contained in:
parent
732a83ec6c
commit
b98bb5a870
11
HISTORY.md
11
HISTORY.md
|
@ -21,6 +21,17 @@ 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@master`.
|
||||
|
||||
# We, 14 August 2019 | v11.2.6
|
||||
|
||||
Allow [handle more than one route with the same paths and parameter types but different macro validation functions](https://github.com/kataras/iris/issues/1058#issuecomment-521110639).
|
||||
|
||||
```go
|
||||
app.Get("/{alias:string regexp(^[a-z0-9]{1,10}\\.xml$)}", PanoXML)
|
||||
app.Get("/{alias:string regexp(^[a-z0-9]{1,10}$)}", Tour)
|
||||
```
|
||||
|
||||
Commit log: https://github.com/kataras/iris/compare/v11.2.5...v11.2.6
|
||||
|
||||
# Mo, 12 August 2019 | v11.2.5
|
||||
|
||||
- [New Feature: Problem Details for HTTP APIs based](https://github.com/kataras/iris/pull/1336)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
11.2.5:https://github.com/kataras/iris/releases/tag/v11.2.5
|
||||
11.2.6:https://github.com/kataras/iris/releases/tag/v11.2.6
|
File diff suppressed because it is too large
Load Diff
2
doc.go
2
doc.go
|
@ -38,7 +38,7 @@ Source code and other details for the project are available at GitHub:
|
|||
|
||||
Current Version
|
||||
|
||||
11.2.5
|
||||
11.2.6
|
||||
|
||||
Installation
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user