Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
1c7ba08
Removes custom exception. Adds missing dictionary methods. Changed Ke…
mrm9084 Jan 6, 2023
27661f2
Update CHANGELOG.md
mrm9084 Jan 6, 2023
5296487
Merge branch 'main' into AppConfigProviderArchReviewChanges
mrm9084 Jan 6, 2023
f4f7a11
Moving load logic out of AzureAppConfigurationProvider
mrm9084 Jan 9, 2023
d74cb02
Update CHANGELOG.md
mrm9084 Jan 9, 2023
1c89e43
Updating syntax
mrm9084 Jan 10, 2023
c8b3c8f
Fixed import
mrm9084 Jan 10, 2023
3d377cd
Fixing Lint issue
mrm9084 Jan 10, 2023
78c59f6
Fixed Spaces
mrm9084 Jan 10, 2023
d263059
Temp removing TokenCredential hint
mrm9084 Jan 10, 2023
af77f6a
Adding Async
mrm9084 Jan 19, 2023
6e99a31
fixing some async issues
mrm9084 Jan 19, 2023
cf097c9
Adding close method
mrm9084 Jan 19, 2023
63fbdca
Trying to fix async
mrm9084 Jan 19, 2023
e01323a
Updated Asysnc, Added samples, fixed key vault bug
mrm9084 Jan 19, 2023
342e16b
Adding Async Tests
mrm9084 Jan 19, 2023
56c4c89
Added missing async and awaits
mrm9084 Jan 19, 2023
41591fb
Cleaned up extra code.
mrm9084 Jan 20, 2023
d469b01
Fix Async Tests running
mrm9084 Jan 23, 2023
0f1e281
Merge branch 'AppConfigAsync' of github.com:mrm9084/azure-sdk-for-pyt…
mrm9084 Jan 23, 2023
51e137b
Fixing formatting and missing secret_clients map
mrm9084 Jan 23, 2023
cc8f9b5
Updating recordings
mrm9084 Jan 25, 2023
c4b00a3
Fixing Lint, Updated Change Log
mrm9084 Jan 26, 2023
94eada3
Merge branch 'AppConfigAsync' of https://github.com/mrm9084/azure-sdk…
mrm9084 Jan 26, 2023
ab191c9
Adding keyVaultOptions validation, removed unused imports in samples
mrm9084 Jan 27, 2023
d77826e
Added some code for minimal Feature Management support to not cause f…
mrm9084 Jan 31, 2023
9143183
Moving KeyVaultOptions and SettingSelector into models
mrm9084 Jan 31, 2023
bb4845a
Update sdk/appconfiguration/azure-appconfiguration-provider/CHANGELOG.md
mrm9084 Jan 31, 2023
3642d85
Updating async usage types and removing old imports from samples
mrm9084 Jan 31, 2023
144e33d
Merge branch 'AppConfigAsync' of https://github.com/mrm9084/azure-sdk…
mrm9084 Jan 31, 2023
ee72eb9
Update sdk/appconfiguration/azure-appconfiguration-provider/azure/app…
mrm9084 Jan 31, 2023
539b1d9
Update sdk/appconfiguration/azure-appconfiguration-provider/azure/app…
mrm9084 Jan 31, 2023
806ea29
Update sdk/appconfiguration/azure-appconfiguration-provider/azure/app…
mrm9084 Jan 31, 2023
c05d5ec
Reusing __is_json_content_type
mrm9084 Jan 31, 2023
1408763
Update sdk/appconfiguration/azure-appconfiguration-provider/azure/app…
mrm9084 Jan 31, 2023
e834c26
Updating to ValueError in non-async too
mrm9084 Jan 31, 2023
b4f37ec
Fixed load_provider credential type
mrm9084 Jan 31, 2023
3a28ebf
Fixing Whitespace
mrm9084 Jan 31, 2023
0b3b19d
Adding cSpell ignore for azconfig
mrm9084 Jan 31, 2023
0fad981
Adding Context Manager methods to sync version
mrm9084 Jan 31, 2023
9b74c6b
Some typing updates
annatisch Feb 7, 2023
bdce5e7
Adding Host Type tracing
mrm9084 Feb 7, 2023
656131c
Fix kwarg name
annatisch Feb 8, 2023
ea6bb6c
Added async type hints
annatisch Feb 8, 2023
9fc48f8
Fixing test recordings
mrm9084 Feb 8, 2023
effa870
Update shared_requirements.txt
mrm9084 Feb 8, 2023
c50c20e
Pylint cleanup
annatisch Feb 8, 2023
844318e
Update setup.py
mrm9084 Feb 8, 2023
d308af2
Merge branch 'AppConfigAsync' of https://github.com/mrm9084/azure-sdk…
mrm9084 Feb 8, 2023
065e000
Updating min Azure Core dependency
mrm9084 Feb 9, 2023
1371b0f
Update shared_requirements.txt
mrm9084 Feb 9, 2023
d46d159
Removing invalid recordings
mrm9084 Feb 9, 2023
8630823
Using keys method
mrm9084 Feb 13, 2023
a0987ab
Updating to 1.4.0 version
mrm9084 Feb 13, 2023
83cf680
Updating to use isinstance
mrm9084 Feb 14, 2023
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
Expand Up @@ -3,15 +3,19 @@
## 1.0.0b2 (Unreleased)

### Features Added

* Added Async Support
* Added missing methods for Mapping API
* Made load method properties unordered.

### Breaking Changes
* Changes how load works. Moves if from AzureAppConfigurationProvider.load to load_provider.
* Removed custom Key Vault Error
* Removed unneeded __repr__ and copy methods.

### Bugs Fixed

### Other Changes

* Updated method docs
* Fixed load doc that used `selector` instead of `selects`.
* Fixed CLI link in Readme.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@
# license information.
# -------------------------------------------------------------------------

from ._azureappconfigurationprovider import AzureAppConfigurationProvider
from ._azureappconfigurationkeyvaultoptions import AzureAppConfigurationKeyVaultOptions
from ._settingselector import SettingSelector
from ._azureappconfigurationprovider import load_provider, AzureAppConfigurationProvider
from ._models import AzureAppConfigurationKeyVaultOptions, SettingSelector

from ._version import VERSION

__version__ = VERSION
__all__ = ["AzureAppConfigurationProvider", "AzureAppConfigurationKeyVaultOptions", "SettingSelector"]
__all__ = [
"load_provider",
"AzureAppConfigurationProvider",
"AzureAppConfigurationKeyVaultOptions",
"SettingSelector"
]

This file was deleted.

This file was deleted.

Loading