From 00967408dcc4cd3675f99277748f3a9b4f2664bc Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Fri, 16 Aug 2019 19:27:25 +0300 Subject: [PATCH] Publish version 11.2.8: https://github.com/kataras/iris/releases/tag/v11.2.8 Former-commit-id: 4ade0db39ea5ef1521a11de044f7d9e522efc4e3 --- HISTORY.md | 9 +++++++++ VERSION | 2 +- doc.go | 2 +- iris.go | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index b5fb472b..5daa5ec1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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). diff --git a/VERSION b/VERSION index bc3ecc40..26eac489 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.2.7:https://github.com/kataras/iris/releases/tag/v11.2.7 \ No newline at end of file +11.2.8:https://github.com/kataras/iris/releases/tag/v11.2.8 \ No newline at end of file diff --git a/doc.go b/doc.go index 1dd70d3f..3d4e7985 100644 --- a/doc.go +++ b/doc.go @@ -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 diff --git a/iris.go b/iris.go index 4284f73f..4164e402 100644 --- a/iris.go +++ b/iris.go @@ -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.