Skip to content

Releases: Azure/azure-sdk-for-python

azure-storage-file-share_12.19.0

08 Oct 15:42
9079caf

Choose a tag to compare

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

09 Oct 07:32
82983c4

Choose a tag to compare

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

08 Oct 15:37
5557c7a

Choose a tag to compare

1.19.0 (2024-10-08)

Bugs Fixed

  • Fixed the request sent in AzurePipelinesCredential so 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

08 Oct 15:47
5557c7a

Choose a tag to compare

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

08 Oct 15:14
5557c7a

Choose a tag to compare

Pre-release

11.6.0b6 (2024-10-08)

Bugs Fixed

  • Fixed the issue that encryptionKey in SearchIndexer was lost during serialization. #37521

azure-ai-generative_1.0.0b11

07 Oct 22:24
d5ad2f7

Choose a tag to compare

Pre-release

1.0.0b11 (2024-10-04)

Other Changes

  • Deprecation message added.

azure-communication-sms_1.1.0

03 Oct 14:07
147b759

Choose a tag to compare

1.1.0 (2024-10-03)

Other Changes

azure-ai-generative_1.0.0b10

03 Oct 22:50
fba637d

Choose a tag to compare

Pre-release

1.0.0b10 (2024-10-03)

Bugs Fixed

  • Bug fixes

azure-eventhub_5.12.2

02 Oct 21:03
91ba236

Choose a tag to compare

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

01 Oct 22:47
608d87d

Choose a tag to compare

Pre-release

1.0.0b3 (2024-10-01)

Features Added

  • Added type field to AzureOpenAIModelConfiguration and OpenAIModelConfiguration
  • The following evaluators now support conversation as an alternative input to their usual single-turn inputs:
    • ViolenceEvaluator
    • SexualEvaluator
    • SelfHarmEvaluator
    • HateUnfairnessEvaluator
    • ProtectedMaterialEvaluator
    • IndirectAttackEvaluator
    • CoherenceEvaluator
    • RelevanceEvaluator
    • FluencyEvaluator
    • GroundednessEvaluator
  • Surfaced RetrievalScoreEvaluator, formally an internal part of ChatEvaluator as a standalone conversation-only evaluator.

Breaking Changes

  • Removed ContentSafetyChatEvaluator and ChatEvaluator
  • The evaluator_config parameter of evaluate now maps in evaluator name to a dictionary EvaluatorConfig, which is a TypedDict. The
    column_mapping between data or target and 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