Skip to content
Closed
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,6 +1,10 @@
## 1.17.0 (Unreleased)
### 🚀 New Features

## 1.16.80 (2025-05-07)
### 🚀 New Features
- [#4151](https://github.com/Azure/azureml-assets/pull/4151) Allow model prefix for model names

## 1.16.79 (2025-04-22)
### 🚀 New Features
- [#4117](https://github.com/Azure/azureml-assets/pull/4117) Update spec with modelVariant info after validating
Expand Down
2 changes: 1 addition & 1 deletion scripts/azureml-assets/azureml/assets/validate_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
NAMING_CONVENTION_URL = "https://github.com/Azure/azureml-assets/wiki/Asset-naming-convention"
INVALID_STRINGS = [["azureml", "azure"], "aml"] # Disallow these in any asset name
NON_MODEL_INVALID_STRINGS = ["microsoft"] # Allow these in model names and other assets related to models
MODEL_NAMES_VALIDATION_OVERRIDE_PREFIX = ["Azure-AI-"] # Exception for Azure-AI models
MODEL_NAMES_VALIDATION_OVERRIDE_PREFIX = ["Azure-AI-", "model-"] # Exception for Azure-AI models
MODEL_RELATED_ASSETS = [assets.AssetType.MODEL, assets.AssetType.EVALUATIONRESULT]
NON_MODEL_NAME_PATTERN = re.compile(r"^[a-z][a-z0-9_.-]{0,254}$")

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.16.79",
version="1.16.80",
description="Utilities for publishing assets to Azure Machine Learning system registries.",
author="Microsoft Corp",
packages=find_packages(),
Expand Down
Loading