renovate 43.24.3 → 43.25.1
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/config/migrations/base/abstract-migration.js.map +1 -1
- package/dist/config/options/index.js +1 -1
- package/dist/config/options/index.js.map +1 -1
- package/dist/config/types.js.map +1 -1
- package/dist/modules/platform/codecommit/index.js +2 -0
- package/dist/modules/platform/codecommit/index.js.map +1 -1
- package/dist/modules/platform/gerrit/index.js +2 -0
- package/dist/modules/platform/gerrit/index.js.map +1 -1
- package/dist/modules/platform/local/index.js +2 -0
- package/dist/modules/platform/local/index.js.map +1 -1
- package/dist/modules/platform/types.d.ts +6 -0
- package/dist/modules/versioning/generic.js.map +1 -1
- package/dist/util/github/graphql/cache-strategies/abstract-cache-strategy.js.map +1 -1
- package/dist/util/result.js.map +1 -1
- package/dist/util/yaml.js.map +1 -1
- package/dist/workers/repository/dependency-dashboard.js +19 -8
- package/dist/workers/repository/dependency-dashboard.js.map +1 -1
- package/dist/workers/repository/update/pr/index.js.map +1 -1
- package/package.json +2 -2
- package/renovate-schema.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"abstract-migration.js","names":[],"sources":["../../../../lib/config/migrations/base/abstract-migration.ts"],"sourcesContent":["import { isNullOrUndefined, isString } from '@sindresorhus/is';\nimport type { AllConfig, RenovateConfig } from '../../types.ts';\nimport type { MigratableConfig, Migration } from '../types.ts';\n\nexport abstract class AbstractMigration
|
|
1
|
+
{"version":3,"file":"abstract-migration.js","names":[],"sources":["../../../../lib/config/migrations/base/abstract-migration.ts"],"sourcesContent":["import { isNullOrUndefined, isString } from '@sindresorhus/is';\nimport type { AllConfig, RenovateConfig } from '../../types.ts';\nimport type { MigratableConfig, Migration } from '../types.ts';\n\nexport abstract class AbstractMigration<\n T extends RenovateConfig = AllConfig,\n> implements Migration {\n readonly deprecated: boolean = false;\n abstract readonly propertyName: string | RegExp;\n private readonly originalConfig: MigratableConfig<T>;\n private readonly migratedConfig: MigratableConfig<T>;\n\n constructor(\n originalConfig: MigratableConfig<T>,\n migratedConfig: MigratableConfig<T>,\n ) {\n this.originalConfig = originalConfig;\n this.migratedConfig = migratedConfig;\n }\n\n abstract run(value: unknown, key: string): void;\n\n protected get<Key extends keyof MigratableConfig<T>>(\n key: Key,\n ): MigratableConfig<T>[Key] {\n return this.migratedConfig[key] ?? this.originalConfig[key];\n }\n\n protected has<Key extends keyof T | string>(key: Key): boolean {\n return key in this.originalConfig;\n }\n\n protected setSafely<Key extends keyof MigratableConfig<T>>(\n key: Key,\n value: MigratableConfig<T>[Key],\n ): void {\n if (\n isNullOrUndefined(this.originalConfig[key]) &&\n isNullOrUndefined(this.migratedConfig[key])\n ) {\n this.migratedConfig[key] = value;\n }\n }\n\n protected setHard<Key extends keyof MigratableConfig<T>>(\n key: Key,\n value: MigratableConfig<T>[Key],\n ): void {\n this.migratedConfig[key] = value;\n }\n\n protected rewrite(value: unknown): void {\n if (!isString(this.propertyName)) {\n throw new Error();\n }\n\n // TODO: fix types\n this.setHard(\n this.propertyName as keyof MigratableConfig<T>,\n value as never,\n );\n }\n\n protected delete(property = this.propertyName): void {\n if (!isString(property)) {\n throw new Error();\n }\n\n // TODO: fix types\n delete this.migratedConfig[property as keyof MigratableConfig<T>];\n }\n}\n"],"mappings":";;;AAIA,IAAsB,oBAAtB,MAEuB;CACrB,AAAS,aAAsB;CAE/B,AAAiB;CACjB,AAAiB;CAEjB,YACE,gBACA,gBACA;AACA,OAAK,iBAAiB;AACtB,OAAK,iBAAiB;;CAKxB,AAAU,IACR,KAC0B;AAC1B,SAAO,KAAK,eAAe,QAAQ,KAAK,eAAe;;CAGzD,AAAU,IAAkC,KAAmB;AAC7D,SAAO,OAAO,KAAK;;CAGrB,AAAU,UACR,KACA,OACM;AACN,MACE,kBAAkB,KAAK,eAAe,KAAK,IAC3C,kBAAkB,KAAK,eAAe,KAAK,CAE3C,MAAK,eAAe,OAAO;;CAI/B,AAAU,QACR,KACA,OACM;AACN,OAAK,eAAe,OAAO;;CAG7B,AAAU,QAAQ,OAAsB;AACtC,MAAI,CAAC,SAAS,KAAK,aAAa,CAC9B,OAAM,IAAI,OAAO;AAInB,OAAK,QACH,KAAK,cACL,MACD;;CAGH,AAAU,OAAO,WAAW,KAAK,cAAoB;AACnD,MAAI,CAAC,SAAS,SAAS,CACrB,OAAM,IAAI,OAAO;AAInB,SAAO,KAAK,eAAe"}
|
|
@@ -605,7 +605,7 @@ const options = [
|
|
|
605
605
|
name: "dockerSidecarImage",
|
|
606
606
|
description: "Change this value to override the default Renovate sidecar image.",
|
|
607
607
|
type: "string",
|
|
608
|
-
default: "ghcr.io/renovatebot/base-image:13.10.
|
|
608
|
+
default: "ghcr.io/renovatebot/base-image:13.10.2",
|
|
609
609
|
globalOnly: true,
|
|
610
610
|
deprecationMsg: "The usage of `binarySource=docker` is deprecated, and will be removed in the future"
|
|
611
611
|
},
|