diff --git a/CHANGELOG.md b/CHANGELOG.md index 17ac00800..7ea43b707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 2.2.0 (2020-2-28) + +### Features + +- Support static asset routing #1201 + +### Bug Fixes + +- Fix compound authz policy short-circuit behavior #1218 +- Fix Cache-Control header format +- Fix Ignore query and fragment in validating allowed callback URLs in SSO #1211 + +### Other notes + +- Update sample yaml + ## 2.1.0 - Initial release diff --git a/pkg/core/apiversion/apiversion.go b/pkg/core/apiversion/apiversion.go index ef1fb2ac8..99e56ce80 100644 --- a/pkg/core/apiversion/apiversion.go +++ b/pkg/core/apiversion/apiversion.go @@ -11,7 +11,7 @@ import ( const MajorVersion = 2 // MinorVersion is the current minor API Version. -const MinorVersion = 1 +const MinorVersion = 2 // APIVersion is the current API Version. var APIVersion = Format(MajorVersion, MinorVersion)