Hi @PhilipWhite ,
You're correct, this is a regression in the validation code...
if (!value.All(c => (char.IsLetterOrDigit(c) && char.IsLower(c)) || c == '.' || c == '_' || c == '-' || c == '/'))
return new ValidationResults(false, $"Docker Repository names may only contain lowercase letters, digits, periods, underscores, slashes, or dashes.");
I guess we recently added char.IsLower because UpperCase characters caused all sorts of problems.... easy fix, and easy work around.
Just enter blah in the Repository name field, Click Save
Click "view all"
Click on the Docker repository in that view, edit
We'll get this fixed for teh next maintenance release via BM-3932
Cheers,
Alana