mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
refactor: lower bazel and semver warnings to info logs
This commit is contained in:
parent
516142b687
commit
ef17430d7a
2 changed files with 4 additions and 4 deletions
|
@ -36,11 +36,11 @@ async function getPackageUpdates(config) {
|
|||
const { remote, currentVersion } = config;
|
||||
const githubHost = 'https://github.com/';
|
||||
if (!remote.startsWith(githubHost)) {
|
||||
logger.info({ remote }, 'Unsupported bazel remote');
|
||||
logger.info({ remote }, 'Bazel warning: Unsupported remote');
|
||||
return [];
|
||||
}
|
||||
if (!semver.valid(currentVersion)) {
|
||||
logger.warn({ currentVersion }, 'Unsupported bazel tag');
|
||||
logger.info({ currentVersion }, 'Bazel warning: Unsupported tag');
|
||||
return [];
|
||||
}
|
||||
const repo = remote.substring(githubHost.length).replace(/.git$/, '');
|
||||
|
@ -61,7 +61,7 @@ async function getPackageUpdates(config) {
|
|||
} else if (config.depType === 'http_archive') {
|
||||
const { repo, currentVersion } = config;
|
||||
if (!semver.valid(currentVersion)) {
|
||||
logger.warn({ currentVersion }, 'Unsupported bazel tag');
|
||||
logger.info({ currentVersion }, 'Bazel warning: Unsupported tag');
|
||||
return [];
|
||||
}
|
||||
const releases = await getRepoReleases(repo);
|
||||
|
|
|
@ -165,7 +165,7 @@ function determineUpgrades(npmDep, config) {
|
|||
if (semverParsed.length > 1) {
|
||||
// We don't know how to support complex semver ranges, so don't upgrade
|
||||
result.message = `Complex semver ranges such as "${currentVersion}" are not yet supported so won't ever be upgraded`;
|
||||
logger.warn(result.message);
|
||||
logger.info('Semver warning: ' + result.message);
|
||||
return [result];
|
||||
}
|
||||
// We know we have a simple semver, now check which operator it is
|
||||
|
|
Loading…
Reference in a new issue