Skip to content
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
2 changes: 1 addition & 1 deletion .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@
},
{
"filename": "sdk/cognitivelanguage/azure-ai-language-conversations-authoring/**",
"words": [ "unassigning" ],
"words": [ "unassigning", "unassignment" ],
"caseSensitive": false
},
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Release History

## 1.0.0b2 (2025-11-14)

### Features Added
- Added support for service version 2025-11-15-preview.

### Breaking Changes
- Changed parameter type from `DeleteDeploymentDetails` to `ProjectResourceIds` when calling `begin_delete_deployment_from_resources`, with property name changed from `assigned_resource_ids` to `azure_resource_ids`.

- Changed function name from `list_deployment_Resources` to `list_project_resources`, change its return type from `AssignedDeploymentResource` to `AssignedProjectResource`.

- Changed function name from `begin_assign_deployment_resources` to `begin_assign_project_resources`, and its parameter type from `AssignDeploymentResourcesDetails` to `AssignProjectResourcesDetails`.

- Changed function name from `begin_unassign_deployment_resources` to `begin_unassign_project_resources`, changed its parameter type from `UnassignDeploymentResourcesDetails` to `ProjectResourceIds`.

- Changed function name from `get_assign_deployment_resources_status` to `get_assign_project_resources_status`, change its return type from `DeploymentResourcesState` to `ProjectResourcesState`.

- Changed function name from `get_unassign_deployment_resources_status` to `get_unassign_project_resources_status`, change its return type from `DeploymentResourcesState` to `ProjectResourcesState`.

### Other Changes
- Add samples for the following functions(sync and async):
- list_assigned_resource_deployments
- list_project_resources
- delete_deployment_from_resources
- get_assign_project_resources_status
- get_unassign_project_resources_status
- get_deployment_delete_from_resources_status

## 1.0.0b1 (2025-09-05)

### Features Added
Expand Down
Loading