@synkro-sh/cli 1.4.57 → 1.4.58

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/dist/bootstrap.js CHANGED
@@ -2008,7 +2008,8 @@ async function main() {
2008
2008
  const pkg = f.package || '?';
2009
2009
  const ver = f.version || '?';
2010
2010
  const title = f.title || f.summary || 'vulnerable';
2011
- return '[' + id + '] ' + pkg + '@' + ver + ': ' + title;
2011
+ const fix = f.fixed ? ' (fix: >=' + f.fixed + ')' : ' (no safe version \u2014 use an alternative)';
2012
+ return '[' + id + '] ' + pkg + '@' + ver + ': ' + title + fix;
2012
2013
  }).join('; ');
2013
2014
 
2014
2015
  const count = findings.length;
@@ -5093,7 +5094,7 @@ function writeConfigEnv(opts) {
5093
5094
  `SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
5094
5095
  `SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
5095
5096
  `SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
5096
- `SYNKRO_VERSION=${shellQuoteSingle("1.4.57")}`
5097
+ `SYNKRO_VERSION=${shellQuoteSingle("1.4.58")}`
5097
5098
  ];
5098
5099
  if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
5099
5100
  if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);