Skip to content

Commit a1a5340

Browse files
committed
Merge remote-tracking branch 'origin/main' into release/v1
2 parents e0e5843 + 0863334 commit a1a5340

13 files changed

+643
-74
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Azure App Configuration - JavaScript Provider
22

3+
[![app-configuration-provider](https://img.shields.io/npm/v/@azure/app-configuration-provider?label=@azure/app-configuration-provider)](https://www.npmjs.com/package/@azure/app-configuration-provider)
4+
35
The [Azure App Configuration](https://docs.microsoft.com/en-us/azure/azure-app-configuration/overview) provider for JavaScript enables developers to configure their applications using centralized configuration located in Azure App Configuration.
46

57
## Getting started

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/app-configuration-provider",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "The JavaScript configuration provider for Azure App Configuration",
55
"main": "dist/index.js",
66
"module": "./dist-esm/index.js",
@@ -55,7 +55,7 @@
5555
"uuid": "^9.0.1"
5656
},
5757
"dependencies": {
58-
"@azure/app-configuration": "^1.6.0",
58+
"@azure/app-configuration": "^1.6.1",
5959
"@azure/identity": "^4.2.1",
6060
"@azure/keyvault-secrets": "^4.7.0"
6161
}

src/AzureAppConfiguration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export type AzureAppConfiguration = {
1010
refresh(): Promise<void>;
1111

1212
/**
13-
* API to register callback listeners, which will be called only when a refresh operation successfully updates key-values.
13+
* API to register callback listeners, which will be called only when a refresh operation successfully updates key-values or feature flags.
1414
*
1515
* @param listener - Callback function to be registered.
1616
* @param thisArg - Optional. Value to use as `this` when executing callback.

0 commit comments

Comments
 (0)