v0.16.0
·
130 commits
to main
since this release
- Breaking Change:
Ydb.Sdk.Yc.Authversion <= 0.1.0 is not compatible with newer versions. - Added
IAuthClientto fetch auth token. - Added the
CachedCredentialsProviderclass, which streamlines token lifecycle management. - Breaking Change: Deleted
AnonymousProvider. Now users don't need to do anything for anonymous authentication.
Migration guide:var config = new DriverConfig(...); // Using AnonymousProvider if Credentials property is null
- Breaking Change: Deleted
StaticCredentialsProvider. Users are now recommended to use theUserandPassword
properties inDriverConfigfor configuring authentication. Migration guide:var config = new DriverConfig(...) { User = "your_username", Password = "your_password" };
Full Changelog: v0.15.4...v0.16.0