Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: renovatebot/renovate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 39.219.0
Choose a base ref
...
head repository: renovatebot/renovate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 39.219.1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 27, 2025

  1. fix: log disabled updates count (#35024)

    rarkins authored Mar 27, 2025
    Copy the full SHA
    17d35fd View commit details
Showing with 9 additions and 2 deletions.
  1. +9 −2 lib/workers/repository/updates/flatten.ts
11 changes: 9 additions & 2 deletions lib/workers/repository/updates/flatten.ts
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ import {
mergeChildConfig,
} from '../../../config';
import type { RenovateConfig } from '../../../config/types';
import { logger } from '../../../logger';
import { getDefaultConfig } from '../../../modules/datasource';
import { get } from '../../../modules/manager';
import { detectSemanticCommits } from '../../../util/git/semantic';
@@ -216,8 +217,14 @@ export async function flattenUpdates(
update.semanticCommits = semanticCommits;
}
}
return updates
.filter((update) => update.enabled)
const filteredUpdates = updates
.filter((update) => update.enabled !== false)
.map(({ vulnerabilityAlerts, ...update }) => update)
.map((update) => filterConfig(update, 'branch'));
if (filteredUpdates.length < updates.length) {
logger.debug(
`Filtered out ${updates.length - filteredUpdates.length} disabled update(s). ${filteredUpdates.length} update(s) remaining.`,
);
}
return filteredUpdates;
}