Skip to content

Commit

Permalink
App Configuration Python Provider 1.1.0 Release Notes (#867)
Browse files Browse the repository at this point in the history
* Release Notes for 1.1.0 and version bump

* Reword + link

* Review changes

* Update AzureAppConfigurationProviderPython.md
  • Loading branch information
mrm9084 committed Jan 29, 2024
1 parent aed15a9 commit b787c72
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==4.1.13
whitenoise==6.4.0
azure-appconfiguration-provider==1.1.0b3
azure-appconfiguration-provider==1.1.0
azure-identity==1.12.0
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Flask==2.3.2
azure-identity==1.12.0
azure-appconfiguration-provider==1.1.0b3
azure-appconfiguration-provider==1.1.0
10 changes: 10 additions & 0 deletions releaseNotes/AzureAppConfigurationProviderPython.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

[Source code][source_code] | [Package (Pypi)][package] | [Samples][samples]

## 1.1.0 - January 29, 2024

### Features

* Added support for dynamically refreshing configuration values with the new `refresh` method on `AzureAppConfigurationProvider`. This enables the runtime change of configuration values without restarting the application. A `WatchKey` is a configuration setting, that is checked for changes. When a change in it occurs all configuration settings are refreshed. For more information see [here](https://learn.microsoft.com/azure/azure-app-configuration/enable-dynamic-configuration-python).
* Added `refresh_on` parameter to the load method, selects which key(s) changing should cause a refresh.
* Added `refresh_interval` parameter to the load method, the minimum time between refreshes.
* Added `on_refresh_success` and `on_refresh_error` parameter to the load method, callbacks for when a refresh is successful/failes.
* Added support for `keyvault_credential`, `keyvault_client_configs`, and `secret_resolver` as `kwargs` to use Key Vault references.

## 1.0.0 - March 9, 2023

### Features
Expand Down

0 comments on commit b787c72

Please sign in to comment.