Skip to content

Commit

Permalink
release v12.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kataras committed Aug 12, 2023
1 parent 0da32ca commit de47868
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Developers are not forced to upgrade if they don't really need it. Upgrade whene

Changes apply to `master` branch.

# Sat, 12 Aug 2023 | v12.2.2

- 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).

# Mon, 17 July 2023 | v12.2.1

- Add `mvc.Application.EnableStructDependents()` method to handle [#2158](https://github.com/kataras/iris/issues/2158).
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/kataras/iris/v12

go 1.21

retract [v12.0.0, v12.1.8] // Retract older versions as only latest is to be depended upon. Please update to @latest
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

require (
github.com/BurntSushi/toml v1.3.2
Expand Down
2 changes: 1 addition & 1 deletion iris.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
)

// Version is the current version of the Iris Web Framework.
const Version = "12.2.1"
const Version = "12.2.2"

// Byte unit helpers.
const (
Expand Down

0 comments on commit de47868

Please sign in to comment.