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
4 changes: 4 additions & 0 deletions scripts/azureml-assets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.17.3 (2026-05-13)
### 🚀 New Features
- [#5036](https://github.com/Azure/azureml-assets/pull/5036) Add isArchived to unsupported SDK fields list

## 1.17.2 (2026-04-17)
### 🚀 New Features
- [#4939](https://github.com/Azure/azureml-assets/pull/4939) Add HumanEvaluationTemplate AssetType
Expand Down
4 changes: 2 additions & 2 deletions scripts/azureml-assets/azureml/assets/validate_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1053,8 +1053,8 @@ def validate_assets(input_dirs: List[Path],
_log_warning(asset_config_path, e)
continue

# Extract model variant info and defaultDeploymentTemplate from spec (not supported in SDK)
unsupported_fields = ["variantInfo", "defaultDeploymentTemplate"]
# Extract fields not supported in SDK from spec
unsupported_fields = ["variantInfo", "defaultDeploymentTemplate", "isArchived"]
unsupported_fields_mapping = {}

if asset_config.type == assets.AssetType.MODEL:
Expand Down
2 changes: 1 addition & 1 deletion scripts/azureml-assets/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="azureml-assets",
version="1.17.2",
version="1.17.3",
description="Utilities for publishing assets to Azure Machine Learning system registries.",
author="Microsoft Corp",
packages=find_packages(),
Expand Down
Loading