Former-commit-id: 4ade0db39ea5ef1521a11de044f7d9e522efc4e3
This commit is contained in:
Gerasimos (Makis) Maropoulos 2019-08-16 19:27:25 +03:00
parent 75ea978194
commit 00967408dc
4 changed files with 12 additions and 3 deletions

View File

@ -21,6 +21,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 github.com/kataras/iris@master`.
# Fr, 16 August 2019 | v11.2.8
- Set `Cookie.SameSite` to `Lax` when subdomains sessions share is enabled[*](https://github.com/kataras/iris/commit/6bbdd3db9139f9038641ce6f00f7b4bab6e62550)
- Add and update all [experimental handlers](https://github.com/kataras/iris/tree/master/_examples/experimental-handlers)
- New `XMLMap` function which wraps a `map[string]interface{}` and converts it to a valid xml content to render through `Context.XML` method
- Add new `ProblemOptions.XML` and `RenderXML` fields to render the `Problem` as XML(application/problem+xml) instead of JSON("application/problem+json) and enrich the `Negotiate` to easily accept the `application/problem+xml` mime.
Commit log: https://github.com/kataras/iris/compare/v11.2.7...v11.2.8
# Th, 15 August 2019 | v11.2.7
This minor version contains improvements on the Problem Details for HTTP APIs implemented on [v11.2.5](#mo-12-august-2019--v1125).

View File

@ -1 +1 @@
11.2.7:https://github.com/kataras/iris/releases/tag/v11.2.7
11.2.8:https://github.com/kataras/iris/releases/tag/v11.2.8

2
doc.go
View File

@ -38,7 +38,7 @@ Source code and other details for the project are available at GitHub:
Current Version
11.2.7
11.2.8
Installation

View File

@ -37,7 +37,7 @@ import (
var (
// Version is the current version number of the Iris Web Framework.
Version = "11.2.7"
Version = "11.2.8"
)
// HTTP status codes as registered with IANA.