Skip to content

Releases: Azure/azure-sdk-for-python

azure-mgmt-hybridcompute_9.1.0b1

15 Nov 03:00
342d107
Compare
Choose a tag to compare
Pre-release

9.1.0b1 (2024-11-15)

Features Added

  • Client HybridComputeManagementClient added operation group machine_run_commands
  • Client HybridComputeManagementClient added operation group gateways
  • Client HybridComputeManagementClient added operation group settings
  • Model Machine added property hardware_profile
  • Model Machine added property storage_profile
  • Model Machine added property firmware_profile
  • Model NetworkInterface added property mac_address
  • Model NetworkInterface added property id
  • Model NetworkInterface added property name
  • Added model AgentVersion
  • Added model AgentVersionsList
  • Added model Disk
  • Added model ErrorDetailAutoGenerated
  • Added model ErrorResponseAutoGenerated
  • Added enum ExecutionState
  • Added model FirmwareProfile
  • Added model Gateway
  • Added enum GatewayType
  • Added model GatewayUpdate
  • Added model GatewaysListResult
  • Added model HardwareProfile
  • Added model HybridIdentityMetadata
  • Added model HybridIdentityMetadataList
  • Added model MachineRunCommand
  • Added model MachineRunCommandInstanceView
  • Added model MachineRunCommandScriptSource
  • Added model MachineRunCommandUpdate
  • Added model MachineRunCommandsListResult
  • Added model NetworkConfiguration
  • Added model Processor
  • Added model RunCommandInputParameter
  • Added model RunCommandManagedIdentity
  • Added model Settings
  • Added model StorageProfile
  • Added model TrackedResourceAutoGenerated
  • Added operation group GatewaysOperations
  • Added operation group MachineRunCommandsOperations
  • Added operation group SettingsOperations

azure-ai-projects_1.0.0b1

15 Nov 17:16
62ccd06
Compare
Choose a tag to compare
Pre-release

1.0.0b1 (2024-11-15)

Features Added

First beta version

azure-ai-ml_1.22.1

14 Nov 07:33
Compare
Choose a tag to compare

1.22.1 (2024-11-13)

Bugs Fixed

  • #38493 - Fix error NoneType object is not subscriptable

azure-storage-file-share_12.20.0

13 Nov 20:50
9f43669
Compare
Choose a tag to compare

12.20.0 (2024-11-13)

Features Added

  • Stable release of features from 12.20.0b1

azure-storage-file-datalake_12.18.0

13 Nov 21:26
9f43669
Compare
Choose a tag to compare

12.18.0 (2024-11-13)

Features Added

  • Stable release of features from 12.18.0b1

azure-storage-blob_12.24.0

13 Nov 20:27
9f43669
Compare
Choose a tag to compare

12.24.0 (2024-11-13)

Features Added

  • Stable release of features from 12.24.0b1

azure-ai-evaluation_1.0.0

13 Nov 22:31
58c158e
Compare
Choose a tag to compare

1.0.0 (2024-11-13)

Breaking Changes

  • The parallel parameter has been removed from composite evaluators: QAEvaluator, ContentSafetyChatEvaluator, and ContentSafetyMultimodalEvaluator. To control evaluator parallelism, you can now use the _parallel keyword argument, though please note that this private parameter may change in the future.
  • Parameters query_response_generating_prompty_kwargs and user_simulator_prompty_kwargs have been renamed to query_response_generating_prompty_options and user_simulator_prompty_options in the Simulator's call method.

Bugs Fixed

  • Fixed an issue where the output_path parameter in the evaluate API did not support relative path.
  • Output of adversarial simulators are of type JsonLineList and the helper function to_eval_qr_json_lines now outputs context from both user and assistant turns along with category if it exists in the conversation
  • Fixed an issue where during long-running simulations, API token expires causing "Forbidden" error. Instead, users can now set an environment variable AZURE_TOKEN_REFRESH_INTERVAL to refresh the token more frequently to prevent expiration and ensure continuous operation of the simulation.
  • Fix evaluate function not producing aggregated metrics if ANY values to be aggregated were None, NaN, or
    otherwise difficult to process. Such values are ignored fully, so the aggregated metric of [1, 2, 3, NaN]
    would be 2, not 1.5.

Other Changes

  • Refined error messages for serviced-based evaluators and simulators.
  • Tracing has been disabled due to Cosmos DB initialization issue.
  • Introduced environment variable AI_EVALS_DISABLE_EXPERIMENTAL_WARNING to disable the warning message for experimental features.
  • Changed the randomization pattern for AdversarialSimulator such that there is an almost equal number of Adversarial harm categories (e.g. Hate + Unfairness, Self-Harm, Violence, Sex) represented in the AdversarialSimulator outputs. Previously, for 200 max_simulation_results a user might see 140 results belonging to the 'Hate + Unfairness' category and 40 results belonging to the 'Self-Harm' category. Now, user will see 50 results for each of Hate + Unfairness, Self-Harm, Violence, and Sex.
  • For the DirectAttackSimulator, the prompt templates used to generate simulated outputs for each Adversarial harm category will no longer be in a randomized order by default. To override this behavior, pass randomize_order=True when you call the DirectAttackSimulator, for example:
adversarial_simulator = DirectAttackSimulator(azure_ai_project=azure_ai_project, credential=DefaultAzureCredential())
outputs = asyncio.run(
    adversarial_simulator(
        scenario=scenario,
        target=callback,
        randomize_order=True
    )
)

azure-appconfiguration-provider_2.0.0b3

14 Nov 22:06
Compare
Choose a tag to compare
Pre-release

2.0.0b3 (2024-11-13)

Breaking Changes

  • Allocation Id value changed so other providers can match the value.

azure-servicebus_7.13.0

12 Nov 20:15
38421d9
Compare
Choose a tag to compare

7.13.0 (2024-11-12)

Features Added

  • Added ssl_context parameter to the clients to allow users to pass in the SSL context, in which case, connection_verify will be ignored if specified.(#37246)

Bugs Fixed

  • Fixed a broken f-string present in a ValueError when using the async client. (37695)
  • Fixed a bug with the incorrect error being raised for larger than allowed batch size. (38260)
  • Fixed a bug with an error being raised when the fully-qualified namespace included a port, rather than ignoring the port. (37547)

Other Changes

  • Added debug logging to track received messages.

azure-eventhub_5.13.0

12 Nov 20:16
6b4022a
Compare
Choose a tag to compare

5.13.0 (2024-11-12)

Features Added

  • Added ssl_context parameter to the clients to allow users to pass in the SSL context, in which case, connection_verify will be ignored if specified.

Other Changes

  • Added debug logging to track received messages.