Skip to content

Commit 3ad0fdb

Browse files
release notes and hard errors on no TOTP handler breaks partial auth event (#824)
1 parent 38d051b commit 3ad0fdb

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Release notes 1.2.10
2+
3+
## What's New
4+
5+
* HA Posture Check Support
6+
7+
## HA Posture Check Support
8+
9+
Upcoming releases of the OpenZiti controller and routers will support posture checks that are enforced at the router
10+
level. This release adds support for that workflow when it is available.
11+
12+
13+
## Issues Fixed and Dependency Updates
14+
15+
* github.com/openziti/sdk-golang: [v1.2.9 -> v1.2.10](https://github.com/openziti/sdk-golang/compare/v1.2.9...v1.2.10)
16+
117
# Release notes 1.2.9
218

319
## Issues Fixed and Dependency Updates

ziti/sdkinfo/build_info.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ziti/ziti.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1288,7 +1288,7 @@ func (context *ContextImpl) handleAuthQuery(authQuery *rest_model.AuthQueryDetai
12881288
if *authQuery.Provider == rest_model.MfaProvidersZiti {
12891289

12901290
if context.ListenerCount(EventMfaTotpCode) == 0 {
1291-
return errors.New("no MFA TOTP code providers have been added via zitiContext.Events().AddMfaTotpCodeListener()")
1291+
pfxlog.Logger().Warn("no MFA TOTP code providers have been added via zitiContext.Events().AddMfaTotpCodeListener()")
12921292
}
12931293

12941294
context.Emit(EventMfaTotpCode, authQuery, MfaCodeResponse(context.authenticateMfa))

0 commit comments

Comments
 (0)