Azure / AppConfiguration-JavaScriptProvider

The configuration provider for consuming data in Azure App Configuration from JavaScript applications like Node or browser apps.
https://github.com/Azure/AppConfiguration
MIT License
7 stars 1 forks source link

update @azure/app-configuration to 1.5.0 #27

Closed Eskibear closed 10 months ago

Eskibear commented 10 months ago

As a follow-up action to fix the bug described in https://github.com/Azure/azure-sdk-for-js/issues/27607

For a configuration setting with no label, Before the fix, it has a property label: null, which doesn't match the type definition label:? string. After the fix, it has no property label, and accessing the property setting.label returns undefined, which is as expected.