Skip to content

Commit 9bd0c90

Browse files
committed
acrolinx
1 parent 67230c9 commit 9bd0c90

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/machine-learning/azure-machine-learning-release-notes-cli-v2.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,22 +55,22 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
5555
### Azure Machine Learning CLI (v2) v2.27.0
5656

5757
- `az ml workspace create --system-datastores-auth-mode`
58-
- Added `--system-datastores-auth-mode` to create for AzureML workspace.
58+
- Added `--system-datastores-auth-mode` to create for Azure Machine Learning workspace.
5959

6060
- `az ml workspace update --system-datastores-auth-mode`
61-
- Added `--system-datastores-auth-mode` to update for AzureML workspace.
61+
- Added `--system-datastores-auth-mode` to update for Azure Machine Learning workspace.
6262

6363
- `az ml workspace create --allow-roleassignment-on-rg`
64-
- Added `--allow-roleassignment-on-rg` to create for AzureML workspace with allow/disallow role assignment on RG level.
64+
- Added `--allow-roleassignment-on-rg` to create for Azure Machine Learning workspace with allow/disallow role assignment on the resource group level.
6565

6666
- `az ml workspace update --allow-roleassignment-on-rg`
67-
- Added `--allow-roleassignment-on-rg` to update for AzureML workspace with allow/disallow role assignment on RG level.
67+
- Added `--allow-roleassignment-on-rg` to update for Azure Machine Learning workspace with allow/disallow role assignment on the resource group level.
6868

6969
## 2023-10-18
7070

7171
### Azure Machine Learning CLI (v2) v2.21.1
7272

73-
- pydash dependency version was upgraded to >=6.0.0 to patch [security vulnerability in versions below 6.0.0](https://github.com/advisories/GHSA-8mjr-6c96-39w8)
73+
- pydash dependency version was upgraded to >=6.0.0 to patch [security vulnerability in versions before 6.0.0](https://github.com/advisories/GHSA-8mjr-6c96-39w8)
7474

7575
## 2023-09-11
7676

@@ -86,16 +86,16 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
8686
- Added `--not-grant-permissions` to allow user to not grant materialization identity access to feature store
8787

8888
- `az ml feature-set`
89-
- Added `--feature-store-name` and deprecated `--workspace-name`, backward compatiblity will be removed in 6 month
89+
- Added `--feature-store-name` and deprecated `--workspace-name`, backward compatibility will be removed in 6 month
9090

9191
- `az ml feature-store-entity`
92-
- Added `--feature-store-name` and deprecated `--workspace-name`, backward compatiblity will be removed in 6 months
92+
- Added `--feature-store-name` and deprecated `--workspace-name`, backward compatibility will be removed in 6 months
9393

9494
- `az configure`
9595
- Added `--defaults feature-store=<name>` to allow user to configure default feature store
9696

9797
- `az ml job connect-ssh`
98-
- Added `--ssh-args/-c` to allow specifying additional ssh options + commands, eg to send signals to running processes or to attach to an interactive terminal
98+
- Added `--ssh-args/-c` to allow specifying ssh options + commands. For example, to send signals to running processes or to attach to an interactive terminal
9999

100100
## 2023-05-09
101101

@@ -198,7 +198,7 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
198198

199199
### Azure Machine Learning CLI (v2) v2.12.0
200200

201-
- Improved error message for `az ml` commands that are registry enabled, when neither workspace nor registry name is passed.
201+
- Improved error message for `az ml` commands that are registry enabled, when no workspace or registry name is passed.
202202
- `az ml compute`
203203
- Fixed issue caused by no-wait parameter.
204204

@@ -318,7 +318,7 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
318318
### Azure Machine Learning CLI (v2) v2.2.1
319319

320320
- `az ml job`
321-
- For all job types, flattened the `code` section of the YAML schema. Instead of `code.local_path` to specify the path to the source code directory, it's now just `code`
321+
- For all job types, flattened the `code` section of the YAML schema. Instead of `code.local_path` to specify the path to the source code directory, use `code`
322322
- For all job types, changed the schema for defining data inputs to the job in the job YAML. Instead of specifying the data path using either the `file` or `folder` fields, use the `path` field to specify either a local path, a URI to a cloud path containing the data, or a reference to an existing registered Azure Machine Learning data asset via `path: azureml:<data_name>:<data_version>`. Also specify the `type` field to clarify whether the data source is a single file (`uri_file`) or a folder (`uri_folder`). If `type` field is omitted, it defaults to `type: uri_folder`. For more information, see the section of any of the [job YAML references](reference-yaml-job-command.md) that discuss the schema for specifying input data.
323323
- In the [sweep job YAML schema](reference-yaml-job-sweep.md), changed the `sampling_algorithm` field from a string to an object in order to support more configurations for the random sampling algorithm type
324324
- Removed the component job YAML schema. With this release, if you want to run a command job inside a pipeline that uses a component, just specify the component to the `component` field of the command job YAML definition.
@@ -336,16 +336,16 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
336336
- For `az ml model create`, `--model-uri` and `--local-path` arguments removed and consolidated to one `--path` argument that can take either a local path or a cloud path URI
337337
- Added the `az ml model download` command to download a model's artifact files
338338
- `az ml online-deployment`
339-
- In the [online deployment YAML schema](reference-yaml-deployment-managed-online.md), flattened the `code` section of the `code_configuration` field. Instead of `code_configuration.code.local_path` to specify the path to the source code directory containing the scoring files, it's now just `code_configuration.code`
339+
- In the [online deployment YAML schema](reference-yaml-deployment-managed-online.md), flattened the `code` section of the `code_configuration` field. Instead of `code_configuration.code.local_path` to specify the path to the source code directory containing the scoring files, use `code_configuration.code`
340340
- Added an `environment_variables` field to the online deployment YAML schema to support configuring environment variables for an online deployment
341341
- `az ml batch-deployment`
342-
- In the [batch deployment YAML schema](reference-yaml-deployment-batch.md), flattened the `code` section of the `code_configuration` field. Instead of `code_configuration.code.local_path` to specify the path to the source code directory containing the scoring files, it's now just `code_configuration.code`
342+
- In the [batch deployment YAML schema](reference-yaml-deployment-batch.md), flattened the `code` section of the `code_configuration` field. Instead of `code_configuration.code.local_path` to specify the path to the source code directory containing the scoring files, use `code_configuration.code`
343343
- `az ml component`
344-
- Flattened the `code` section of the [command component YAML schema](reference-yaml-component-command.md). Instead of `code.local_path` to specify the path to the source code directory, it's now just `code`
344+
- Flattened the `code` section of the [command component YAML schema](reference-yaml-component-command.md). Instead of `code.local_path` to specify the path to the source code directory, use `code`
345345
- Added support for referencing the latest version of a registered environment to use in the component YAML configuration. When referencing a registered environment, you can alias by latest version rather than having to explicitly specify the version. For example: `environment: azureml:AzureML-Minimal@latest`
346346
- Renamed the component input and output type value from `path` to `uri_folder` for the `type` field when defining a component input or output
347347
- Removed the `delete` commands for assets (model, component, data, environment). The existing delete functionality is only a soft delete, so the `delete` commands will be reintroduced in a later release once hard delete is supported
348-
- Added support for archiving and restoring assets (model, component, data, environment) and jobs, for example, `az ml model archive` and `az ml model restore`. You can now archive assets and jobs, which will hide the archived entity from list queries (for example, `az ml model list`).
348+
- Added support for archiving and restoring assets (model, component, data, environment) and jobs, for example, `az ml model archive` and `az ml model restore`. You can now archive assets and jobs, which hides the archived entity from list queries (for example, `az ml model list`).
349349

350350
## 2021-10-04
351351

@@ -393,7 +393,7 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
393393
- Updated [batch endpoint YAML schema](reference-yaml-endpoint-batch.md)
394394
- Removed `traffic` property; replaced with a configurable default deployment property
395395
- Added support for input data URIs for `az ml batch-endpoint invoke`
396-
- Added support for VNet ingress (private link)
396+
- Added support for virtual network ingress (private link)
397397
- `az ml batch-deployment`
398398
- `az ml deployment` subgroup split into two separate groups: `az ml online-deployment` and `az ml batch-deployment`
399399
- Updated [batch deployment YAML schema](reference-yaml-deployment-batch.md)

0 commit comments

Comments
 (0)