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.
The key has expired.
2.2.0
Converts "shared" container variables from var to let. - Issue #111
Add convenience reset() function to container. - Issue #111
Note that issue #111 could be a breaking change if your code attempts to "replace" a shared container. Do reset instead.
Container.shared.reset() // Do this...
Container.shared = Container() // Not this...
Removes @mainactor from @InjectedObject property wrapper variables. - Issue #107
Fix registering a new context doesn't clear existing cache as did register. - Issue #114