Skip to content

Latest commit

 

History

History
65 lines (38 loc) · 2.7 KB

File metadata and controls

65 lines (38 loc) · 2.7 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and adheres to a project-specific Versioning.

1.6.0 - 2025-04-24

Added

  • Added a log message to indicate which project is being used for Google Secrets. This is useful for debugging and understanding which project is being used when multiple projects are available.

1.5.0 - 2025-04-15

Added

  • Added new overload for AddGoogleSecrets to allow passing GoogleSecretsOptions.

1.4.0 - 2025-03-18

Added

  • Convention to load Google Secrets project name from environment variable GOOGLE_SECRETS_PROJECT if not specified in the options.
  • New package Neolution.Extensions.Configuration.GoogleSecrets.AspNetCore to reference in ASP.NET Core projects.

Changed

  • Update GitHub Actions to use the latest versions of the actions

1.3.1 - 2024-03-12

Fixed

  • Fixed an issue where the GoogleSecret:SecretName:SecretVersion syntax was not working as expected. Instead of using a starts with comparison, the code now uses a regular expression to match the secret name and version.
  • Fixed an issue where the GoogleSecret:SecretName:SecretVersion syntax was not working as expected. The version was parsed including the } character. The code now removes the } character from the version before calling the google api.

1.3.0 - 2024-03-12

Added

Added support for the {GoogleSecret:SecretName:SecretVersion} syntax to override the default values in the appsettings.json or appsettings.{Environment}.json files.

1.2.0 - 2023-06-29

Changed

  • Updated the Google.Cloud.SecretManager.V1 to the latest version to support workload identity federation

1.1.9 - 2023-06-29

Added

  • Changelog