Releases: Azure/AppConfiguration-JavaScriptProvider
Releases · Azure/AppConfiguration-JavaScriptProvider
Release list
2.5.1
What's Changed
- Fix refresh bug when response status is string by @zhiyuanliang-ms in #335
- version bump 2.5.1 by @zhiyuanliang-ms in #337
- Merge main to release/stable/v2 by @zhiyuanliang-ms in #336
Full Changelog: 2.5.0...2.5.1
2.5.0
What's Changed
- Bump uuid and @azure/identity by @dependabot[bot] in #318
- Bump vitest by @zhiyuanliang-ms in #321
- Return unknown for secret resolver by @zhiyuanliang-ms in #323
- Bump js-yaml from 4.1.1 to 4.2.0 by @dependabot[bot] in #324
- Return any for secret resolver by @linglingye001 in #327
- Fix missing type by @zhiyuanliang-ms in #329
- Version bump 2.5.0 by @linglingye001 with @Copilot in #330
- Merge main to release/stable/v2 by @linglingye001 in #332
Full Changelog: 2.4.2...2.5.0
2.4.2
Bug Fixes
- Fixed an issue where the package could not be resolved as ESM in Node.js due to a missing
"type": "module"field inpackage.json. #280
2.4.1
Bug Fixes
- Fixed a bug where calling
constructConfigurationObjectafter a configuration refresh would fail with anInvalidOperationErrorindicating ambiguity when constructing a configuration object. The issue occurred because parsed JSON values were assigned by reference instead of by deep copy, causing subsequent calls toconstructConfigurationObjectto encounter modified data from a previous call. #286
2.4.0
Enhancements
- Updated the reference of
@azure/app-configurationto1.11.0to take advantage of enhanced errors when Entra ID audience is misconfigured. #276
2.3.1
Enhancements
- Added support for enforcing a minimum secret refresh interval (60 seconds) for Key Vault references during configuration refresh. When refresh is triggered, the provider will not re-fetch a secret if it was retrieved less than 60 seconds ago, avoiding excessive requests to Key Vault. #264
2.5.0-preview
Enhancements
- Optimized refresh behavior for
loadFromAzureFrontDoorby usingHEADrequests to check for changes. #275
2.4.1-preview
- This release includes all preview functionality introduced in 2.4.0-preview and also adds the changes introduced in 2.3.1.
2.4.0-preview
- Added the
loadFromAzureFrontDoorfunction based on 2.3.0.
2.3.0
Enhancements
- Added support for snapshot references. If a configuration setting's value is a snapshot reference, loading it automatically loads all key-values from the referenced snapshot. This enables dynamically switching between snapshots at runtime. #232