From 8b200c19e6b5cd6a65ecf1cbae09901768a6810f Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Sat, 9 Oct 2021 05:29:38 +0200 Subject: [PATCH] fix(config): add missing descriptions (#12060) --- lib/config/presets/internal/compatibility.ts | 2 ++ lib/config/presets/internal/helpers.ts | 1 + lib/config/presets/internal/workarounds.ts | 1 + 3 files changed, 4 insertions(+) diff --git a/lib/config/presets/internal/compatibility.ts b/lib/config/presets/internal/compatibility.ts index ce1175f569..436846b479 100644 --- a/lib/config/presets/internal/compatibility.ts +++ b/lib/config/presets/internal/compatibility.ts @@ -2,6 +2,8 @@ import { Preset } from '../types'; export const presets: Record<string, Preset> = { additionalBranchPrefix: { + description: + 'Backwards-compatibility preset to restore additionalBranchPrefix settings for multiple managers which were removed in v25', buildkite: { additionalBranchPrefix: 'buildkite-', }, diff --git a/lib/config/presets/internal/helpers.ts b/lib/config/presets/internal/helpers.ts index 60b124c8ea..7116e175de 100644 --- a/lib/config/presets/internal/helpers.ts +++ b/lib/config/presets/internal/helpers.ts @@ -2,6 +2,7 @@ import type { Preset } from '../types'; export const presets: Record<string, Preset> = { disableTypesNodeMajor: { + description: 'Disable major updates to <code>@types/node</code>', packageRules: [ { matchPackageNames: ['@types/node'], diff --git a/lib/config/presets/internal/workarounds.ts b/lib/config/presets/internal/workarounds.ts index 4eaa35bd4d..71ea42eb68 100644 --- a/lib/config/presets/internal/workarounds.ts +++ b/lib/config/presets/internal/workarounds.ts @@ -14,6 +14,7 @@ export const presets: Record<string, Preset> = { ], }, mavenCommonsAncientVersion: { + description: 'Fix some problems with very old Maven commons versions', packageRules: [ { matchDatasources: ['maven', 'sbt-package'], -- GitLab