You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on github.com and signed with GitHub’s verified signature.
Changelog
Added
Core NATS:
Added UserInfoHandler for dynamically setting user/password (#1713)
Added PermissionErrOnSubscribe option, causing SubscribeSync to return nats.ErrPermissionViolation on NextMsg() if there was a permission error (#1728)
Added Msgs() method on Subscription, returning an iterator (iter.Seq2[*nats.Msg, error]) for the subscription. This method is only available for go version >=1.23 (#1728)
KeyValue:
Added WatchFiltered method to watch for updates with multiple filters (#1739)
Fixed
Core NATS:
Fixed closing connections on max subscriptions exceeded (#1709)
Removed redundant nil checks. Thanks @ramonberrutti for the contribution (#1751)