Skip to content

v1.1.0

Latest
Compare
Choose a tag to compare
@wdolek wdolek released this 02 Aug 20:34
· 1 commit to main since this release
1d3e991

What's Changed

  • Add multiple secrets as source at once by @wdolek in #1
  • ⚠️ Breaking change: Remove extension methods with default isOptional parameter by @wdolek in #2
  • ⚠️ Breaking change: Require AWSSDK.SecretsManager v3.7.0 or later by @wdolek in #3

Full Changelog: v1.0.0...v1.1.0

Change detail

Fetch multiple secrets:

builder.Configuration.AddSecretsManager(["my-first-secret", "my-second-secret"]);

Instead isOptional parameter, configure options:

// removed, API no longer available
builder.Configuration.AddSecretsManager("my-secret-secrets", isOptional: true);

// replaced by use of configure callback
builder.Configuration.AddSecretsManager("my-secret-secrets", c => c.IsOptional = true);

Breaking change in minor version: package is not widely used - limited impact; loading secret as optional seems to be very niche usecase