unoverse 0.1.177 → 0.1.178
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -705,18 +705,20 @@ for (const orgDir of [DS, ...orgDirs]) {
|
|
|
705
705
|
if (hookYaml && !Array.isArray(readDef(mf).allowedHosts))
|
|
706
706
|
report("error", mf, `${custom} makes requests, so this manifest must declare "allowedHosts". Deny by default: no list, no network`);
|
|
707
707
|
|
|
708
|
-
// A NAME
|
|
709
|
-
//
|
|
710
|
-
//
|
|
711
|
-
//
|
|
712
|
-
//
|
|
708
|
+
// A credential is a NAME (owner ruling 2026-08-26): it references a value that
|
|
709
|
+
// exists in the universe or does not, and shipping NEVER blocks on it — the gap is
|
|
710
|
+
// a WARNING here and a loud runtime warning when the hook runs without it
|
|
711
|
+
// (resolveCredentials says so on every keyless run). A missing DEFINITION only
|
|
712
|
+
// means no package offers a pre-built entry form; the value can still be provided.
|
|
713
|
+
// This was an org-blocking error until it stopped a yasisland deploy over a form
|
|
714
|
+
// nobody needed that day.
|
|
713
715
|
if (credentialDefs.size)
|
|
714
716
|
for (const cname of Array.isArray(readDef(mf).credentials) ? readDef(mf).credentials : [])
|
|
715
717
|
if (!credentialDefs.has(String(cname)))
|
|
716
718
|
report(
|
|
717
|
-
"
|
|
719
|
+
"warn",
|
|
718
720
|
mf,
|
|
719
|
-
`credential "${cname}" has no definition in any installed node package, so
|
|
721
|
+
`credential "${cname}" has no definition in any installed node package, so no pre-built form exists to enter it — the hook will run without it until a value is provided. Installed definitions: ${[...credentialDefs].sort().join(", ")}`,
|
|
720
722
|
);
|
|
721
723
|
|
|
722
724
|
}
|