You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Validate that old format fields are not present
93
+
ifpkg.RegistryBaseURL!="" {
94
+
returnfmt.Errorf("OCI packages must not have 'registryBaseUrl' field - use canonical reference in 'identifier' instead (e.g., 'docker.io/owner/image:1.0.0')")
95
+
}
96
+
ifpkg.Version!="" {
97
+
returnfmt.Errorf("OCI packages must not have 'version' field - include version in 'identifier' instead (e.g., 'docker.io/owner/image:1.0.0')")
98
+
}
99
+
92
100
// Parse the canonical OCI reference from the identifier
0 commit comments