Skip to content

Commit de47868

Browse files
committed
release v12.2.2
1 parent 0da32ca commit de47868

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ Developers are not forced to upgrade if they don't really need it. Upgrade whene
2323

2424
Changes apply to `master` branch.
2525

26+
# Sat, 12 Aug 2023 | v12.2.2
27+
28+
- Add new `iris.WithDynamicHandler` option (`EnableDynamicHandler` setting) to work with `iris.Application.RefreshRouter` method. It allows to change the entire router while your server is up and running. Handles [issue #2167](https://github.com/kataras/iris/issues/2167). Example at [_examples/routing/route-state/main.go](_examples/routing/route-state/main.go).
29+
2630
# Mon, 17 July 2023 | v12.2.1
2731

2832
- Add `mvc.Application.EnableStructDependents()` method to handle [#2158](https://github.com/kataras/iris/issues/2158).

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/kataras/iris/v12
22

33
go 1.21
44

5-
retract [v12.0.0, v12.1.8] // Retract older versions as only latest is to be depended upon. Please update to @latest
5+
retract [v0.0.2, v12.0.0, v12.1.8] // Retract older versions as only latest is to be depended upon. Please update to @latest
66

77
require (
88
github.com/BurntSushi/toml v1.3.2

iris.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
)
3939

4040
// Version is the current version of the Iris Web Framework.
41-
const Version = "12.2.1"
41+
const Version = "12.2.2"
4242

4343
// Byte unit helpers.
4444
const (

0 commit comments

Comments
 (0)