Releases: Azure/azure-sdk-for-python
Releases · Azure/azure-sdk-for-python
azure-storage-file-share_12.19.0
12.19.0 (2024-10-08)
Features Added
- Updated type hints across the entire package and enabled MyPy to run during CI. Some public types may have been adjusted if they were previously erroneous or incomplete.
azure-ai-ml_1.21.0
1.21.0 (2024-09-30)
Features Added
- Cross subscription storage account support for workspace and feature store. Developer can provide a storage account from another subscription while creating a workspace or storage account.
Bugs Fixed
- #35820 - using compute location attribute to fill compute location to align the experience with UI.
azure-identity_1.19.0
1.19.0 (2024-10-08)
Bugs Fixed
- Fixed the request sent in
AzurePipelinesCredentialso it doesn't result in a redirect response when an invalid system access token is provided. (#37510)
Other Changes
- Deprecated
AzureAuthorityHosts.AZURE_GERMANY
azure-identity-broker_1.2.0
1.2.0 (2024-10-08)
Other Changes
- Stable release for the Proof-of-Possession (PoP) token support to
InteractiveBrowserBrokerCredential.
azure-search-documents_11.6.0b6
11.6.0b6 (2024-10-08)
Bugs Fixed
- Fixed the issue that
encryptionKeyinSearchIndexerwas lost during serialization. #37521
azure-ai-generative_1.0.0b11
1.0.0b11 (2024-10-04)
Other Changes
- Deprecation message added.
azure-communication-sms_1.1.0
1.1.0 (2024-10-03)
Other Changes
- Python 2.7 is no longer supported. Please use Python version 3.7 or later. For more details, please read our page on Azure SDK for Python version support policy.
azure-ai-generative_1.0.0b10
1.0.0b10 (2024-10-03)
Bugs Fixed
- Bug fixes
azure-eventhub_5.12.2
5.12.2 (2024-10-02)
Bugs Fixed
- Implemented backpressure for async consumer to address a memory leak issue. (#36398)
azure-ai-evaluation_1.0.0b3
1.0.0b3 (2024-10-01)
Features Added
- Added
typefield toAzureOpenAIModelConfigurationandOpenAIModelConfiguration - The following evaluators now support
conversationas an alternative input to their usual single-turn inputs:ViolenceEvaluatorSexualEvaluatorSelfHarmEvaluatorHateUnfairnessEvaluatorProtectedMaterialEvaluatorIndirectAttackEvaluatorCoherenceEvaluatorRelevanceEvaluatorFluencyEvaluatorGroundednessEvaluator
- Surfaced
RetrievalScoreEvaluator, formally an internal part ofChatEvaluatoras a standalone conversation-only evaluator.
Breaking Changes
- Removed
ContentSafetyChatEvaluatorandChatEvaluator - The
evaluator_configparameter ofevaluatenow maps in evaluator name to a dictionaryEvaluatorConfig, which is aTypedDict. The
column_mappingbetweendataortargetand evaluator field names should now be specified inside this new dictionary:
Before:
evaluate(
...,
evaluator_config={
"hate_unfairness": {
"query": "${data.question}",
"response": "${data.answer}",
}
},
...
)After
evaluate(
...,
evaluator_config={
"hate_unfairness": {
"column_mapping": {
"query": "${data.question}",
"response": "${data.answer}",
}
}
},
...
)Bugs Fixed
- Fixed issue where Entra ID authentication was not working with
AzureOpenAIModelConfiguration