Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App Configuration Python Provider 1.1.0 Release Notes #867

Merged
merged 4 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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