diff --git a/lib/config/decrypt.ts b/lib/config/decrypt.ts index 5b48e76d6496cfe9e6d181727e9eb542459377c8..80fb62b524ce501d8277637c30c01788fb95c8df 100644 --- a/lib/config/decrypt.ts +++ b/lib/config/decrypt.ts @@ -177,7 +177,8 @@ export async function decryptConfig( ): Promise<RenovateConfig> { logger.trace({ config }, 'decryptConfig()'); const decryptedConfig = { ...config }; - const { privateKey, privateKeyOld } = GlobalConfig.get(); + const privateKey = GlobalConfig.get('privateKey'); + const privateKeyOld = GlobalConfig.get('privateKeyOld'); for (const [key, val] of Object.entries(config)) { if (key === 'encrypted' && is.object(val)) { logger.debug({ config: val }, 'Found encrypted config'); diff --git a/lib/config/global.ts b/lib/config/global.ts index 666645f448e733f210b2f8ed95ef961816d374ce..fca000190956f2e7370472b5f37704d8e5be2974 100644 --- a/lib/config/global.ts +++ b/lib/config/global.ts @@ -34,12 +34,17 @@ export class GlobalConfig { static get(): RepoGlobalConfig; static get<Key extends keyof RepoGlobalConfig>( - key?: Key + key: Key ): RepoGlobalConfig[Key]; static get<Key extends keyof RepoGlobalConfig>( - key?: Key + key: Key, + defaultValue: Required<RepoGlobalConfig>[Key] + ): Required<RepoGlobalConfig>[Key]; + static get<Key extends keyof RepoGlobalConfig>( + key?: Key, + defaultValue?: RepoGlobalConfig[Key] ): RepoGlobalConfig | RepoGlobalConfig[Key] { - return key ? GlobalConfig.config[key] : GlobalConfig.config; + return key ? GlobalConfig.config[key] ?? defaultValue : GlobalConfig.config; } static set(config: RenovateConfig | RepoGlobalConfig): RenovateConfig { diff --git a/lib/config/migrations/custom/extends-migration.ts b/lib/config/migrations/custom/extends-migration.ts index 64a444b9170ede0c92a77f8c2adbde5c6627197c..92d3bc8d06d07d068df43affec33fc281196d7a3 100644 --- a/lib/config/migrations/custom/extends-migration.ts +++ b/lib/config/migrations/custom/extends-migration.ts @@ -29,7 +29,7 @@ export class ExtendsMigration extends AbstractMigration { } private normalizePreset(preset: string): string | null { - const { migratePresets } = GlobalConfig.get(); + const migratePresets = GlobalConfig.get('migratePresets'); if (removedPresets[preset] !== undefined) { return removedPresets[preset]; diff --git a/lib/config/presets/local/index.ts b/lib/config/presets/local/index.ts index 6f99390a6c676d32e7819788315152dfe1aef262..3ff13e03a7e61eda0c614846e231fcd034e77e83 100644 --- a/lib/config/presets/local/index.ts +++ b/lib/config/presets/local/index.ts @@ -33,7 +33,7 @@ export function getPreset({ presetPath, tag, }: PresetConfig): Promise<Preset | undefined> { - const { platform, endpoint } = GlobalConfig.get(); + const platform = GlobalConfig.get('platform'); if (!platform) { throw new Error(`Missing platform config for local preset.`); } @@ -43,6 +43,7 @@ export function getPreset({ `The platform you're using ($platform) does not support local presets.` ); } + const endpoint = GlobalConfig.get('endpoint'); return resolver.getPresetFromEndpoint( repo, presetName, diff --git a/lib/modules/datasource/npm/get.ts b/lib/modules/datasource/npm/get.ts index 94109fcb1d2cd657d2e0c774c63b61cea92c9293..1ff4276dc029248a498f2c22e7ece29804f89371 100644 --- a/lib/modules/datasource/npm/get.ts +++ b/lib/modules/datasource/npm/get.ts @@ -104,7 +104,7 @@ export async function getDependency( const softExpireAt = DateTime.local() .plus({ minutes: cacheMinutes }) .toISO()!; - let { cacheHardTtlMinutes } = GlobalConfig.get(); + let cacheHardTtlMinutes = GlobalConfig.get('cacheHardTtlMinutes'); if (!(is.number(cacheHardTtlMinutes) && cacheHardTtlMinutes > cacheMinutes)) { cacheHardTtlMinutes = cacheMinutes; } diff --git a/lib/modules/datasource/npm/npmrc.ts b/lib/modules/datasource/npm/npmrc.ts index 6b26a338276031ae355a5e10f96bad927c18aa96..fe1ea3444693e514c7dd9dedac116f1aa48c770f 100644 --- a/lib/modules/datasource/npm/npmrc.ts +++ b/lib/modules/datasource/npm/npmrc.ts @@ -131,7 +131,7 @@ export function setNpmrc(input?: string): void { npmrcRaw = input; logger.debug('Setting npmrc'); npmrc = ini.parse(input.replace(regEx(/\\n/g), '\n')); - const { exposeAllEnv } = GlobalConfig.get(); + const exposeAllEnv = GlobalConfig.get('exposeAllEnv'); for (const [key, val] of Object.entries(npmrc)) { if ( !exposeAllEnv && diff --git a/lib/modules/manager/azure-pipelines/extract.ts b/lib/modules/manager/azure-pipelines/extract.ts index d05fb574372e9d443fcf7e7b4ff570eb17e31c8b..4125141ee879ac1062543c3a8f02686df5182220 100644 --- a/lib/modules/manager/azure-pipelines/extract.ts +++ b/lib/modules/manager/azure-pipelines/extract.ts @@ -27,7 +27,8 @@ export function extractRepository( // same project, which is not currently accessible here. It could be deduced later by exposing // the repository URL to managers. // https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/resources-repositories-repository?view=azure-pipelines#types - const { platform, endpoint } = GlobalConfig.get(); + const platform = GlobalConfig.get('platform'); + const endpoint = GlobalConfig.get('endpoint'); if (platform === 'azure' && endpoint) { if (repository.name.includes('/')) { const [projectName, repoName] = repository.name.split('/'); diff --git a/lib/modules/manager/git-submodules/extract.ts b/lib/modules/manager/git-submodules/extract.ts index 140f2697027e58c246dcd26999ebc4253ec78f1d..468a89a747ee1f61db2459cdb14cda0467894d24 100644 --- a/lib/modules/manager/git-submodules/extract.ts +++ b/lib/modules/manager/git-submodules/extract.ts @@ -95,7 +95,7 @@ export default async function extractPackageFile( packageFile: string, _config: ExtractConfig ): Promise<PackageFileContent | null> { - const { localDir } = GlobalConfig.get(); + const localDir = GlobalConfig.get('localDir'); const git = Git(localDir, simpleGitConfig()); const gitModulesPath = upath.join(localDir, packageFile); diff --git a/lib/modules/manager/git-submodules/update.ts b/lib/modules/manager/git-submodules/update.ts index 613cc6c1186c18f8f2d1014929649372bdb7a6f6..54df033376cba57c611fa2914e4284977d74126a 100644 --- a/lib/modules/manager/git-submodules/update.ts +++ b/lib/modules/manager/git-submodules/update.ts @@ -8,7 +8,7 @@ export default async function updateDependency({ fileContent, upgrade, }: UpdateDependencyConfig): Promise<string | null> { - const { localDir } = GlobalConfig.get(); + const localDir = GlobalConfig.get('localDir'); const git = Git(localDir); const submoduleGit = Git(upath.join(localDir, upgrade.depName)); diff --git a/lib/modules/manager/gitlabci-include/extract.ts b/lib/modules/manager/gitlabci-include/extract.ts index 5e3bb02b2b43c8ee9d5302c7377ff410c6b50a0a..7d2011fca0bf5120439d804f6d975302dcec6f1c 100644 --- a/lib/modules/manager/gitlabci-include/extract.ts +++ b/lib/modules/manager/gitlabci-include/extract.ts @@ -68,7 +68,8 @@ export function extractPackageFile( packageFile?: string ): PackageFileContent | null { const deps: PackageDependency[] = []; - const { platform, endpoint } = GlobalConfig.get(); + const platform = GlobalConfig.get('platform'); + const endpoint = GlobalConfig.get('endpoint'); try { const doc = load(replaceReferenceTags(content), { json: true, diff --git a/lib/modules/manager/helmfile/extract.spec.ts b/lib/modules/manager/helmfile/extract.spec.ts index 479fad453fa7800e9d545e22e5575bc1057329dd..10f9281a33e059cae321115f8bb99be56d8ae4c9 100644 --- a/lib/modules/manager/helmfile/extract.spec.ts +++ b/lib/modules/manager/helmfile/extract.spec.ts @@ -391,7 +391,7 @@ describe('modules/manager/helmfile/extract', () => { it('detects kustomize and respects relative paths', async () => { fs.localPathExists.mockImplementationOnce((path) => { - if (!path.startsWith(GlobalConfig.get('localDir') ?? '')) { + if (!path.startsWith(GlobalConfig.get('localDir', ''))) { throw new Error(FILE_ACCESS_VIOLATION_ERROR); } return Promise.resolve(true); diff --git a/lib/modules/manager/npm/extract/pnpm.ts b/lib/modules/manager/npm/extract/pnpm.ts index 2221ce8a03c890243f7ee04f84f587979b5961fa..fe0f0903b58263940358ce082797b7008fe0147a 100644 --- a/lib/modules/manager/npm/extract/pnpm.ts +++ b/lib/modules/manager/npm/extract/pnpm.ts @@ -109,7 +109,7 @@ export async function detectPnpmWorkspaces( // check if package matches workspace filter if (!packagePathCache.has(workspaceYamlPath)) { const filters = await extractPnpmFilters(workspaceYamlPath); - const { localDir } = GlobalConfig.get(); + const localDir = GlobalConfig.get('localDir'); const packages = await findPackages( upath.dirname(upath.join(localDir, workspaceYamlPath)), { diff --git a/lib/util/cache/package/decorator.ts b/lib/util/cache/package/decorator.ts index e1bcd50bbb7194d2e697334645a959a3d71979cd..560e44cb360b0e5bddde61286a939ecd178bedae 100644 --- a/lib/util/cache/package/decorator.ts +++ b/lib/util/cache/package/decorator.ts @@ -78,7 +78,7 @@ export function cache<T>({ const softTtl = ttlMinutes; - const cacheHardTtlMinutes = GlobalConfig.get().cacheHardTtlMinutes ?? 0; + const cacheHardTtlMinutes = GlobalConfig.get('cacheHardTtlMinutes', 0); let hardTtl = softTtl; if (methodName === 'getReleases' || methodName === 'getDigest') { hardTtl = Math.max(softTtl, cacheHardTtlMinutes); diff --git a/lib/util/exec/containerbase.ts b/lib/util/exec/containerbase.ts index 165d362288e0420b4cc1569e63f960bcffd00dca..60ef028828f83c5a057b34272bb25c001e496fd2 100644 --- a/lib/util/exec/containerbase.ts +++ b/lib/util/exec/containerbase.ts @@ -208,8 +208,7 @@ export function isContainerbase(): boolean { export function isDynamicInstall( toolConstraints?: Opt<ToolConstraint[]> ): boolean { - const { binarySource } = GlobalConfig.get(); - if (binarySource !== 'install') { + if (GlobalConfig.get('binarySource') !== 'install') { return false; } if (!isContainerbase()) { diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts index a2106a302b0f8d045b54458eca5e8bb3b401b528..4090231cde7b42a30ea4b3f2a094681efae105b8 100644 --- a/lib/util/exec/docker/index.ts +++ b/lib/util/exec/docker/index.ts @@ -164,13 +164,14 @@ export async function removeDockerContainer( } export async function removeDanglingContainers(): Promise<void> { - const { binarySource, dockerChildPrefix } = GlobalConfig.get(); - if (binarySource !== 'docker') { + if (GlobalConfig.get('binarySource') !== 'docker') { return; } try { - const containerLabel = getContainerLabel(dockerChildPrefix); + const containerLabel = getContainerLabel( + GlobalConfig.get('dockerChildPrefix') + ); const res = await rawExec( `docker ps --filter label=${containerLabel} -aq`, { diff --git a/lib/util/exec/hermit.ts b/lib/util/exec/hermit.ts index f28e053ad810952cba2c8c22dcc2b3a4c0af3013..11d9ba023e40f4727bc77bcb7d1ead20096db9f6 100644 --- a/lib/util/exec/hermit.ts +++ b/lib/util/exec/hermit.ts @@ -7,12 +7,11 @@ import { rawExec } from './common'; import type { RawExecOptions } from './types'; export function isHermit(): boolean { - const { binarySource } = GlobalConfig.get(); - return binarySource === 'hermit'; + return GlobalConfig.get('binarySource') === 'hermit'; } export async function findHermitCwd(cwd: string): Promise<string> { - const relativeCwd = upath.relative(GlobalConfig.get('localDir') ?? '', cwd); + const relativeCwd = upath.relative(GlobalConfig.get('localDir', ''), cwd); const hermitFile = await findUpLocal('bin/hermit', relativeCwd); if (hermitFile === null) { diff --git a/lib/util/exec/index.ts b/lib/util/exec/index.ts index c3e802ae89216822c8f18b360ee9e7fa466cb159..e54f2ef35c062f4dd3d3d78a38827db4c5e9f3ef 100644 --- a/lib/util/exec/index.ts +++ b/lib/util/exec/index.ts @@ -91,8 +91,7 @@ function getRawExecOptions(opts: ExecOptions): RawExecOptions { } function isDocker(docker: Opt<DockerOptions>): docker is DockerOptions { - const { binarySource } = GlobalConfig.get(); - return binarySource === 'docker' && !!docker; + return GlobalConfig.get('binarySource') === 'docker' && !!docker; } interface RawExecArguments { @@ -170,8 +169,7 @@ export async function exec( opts: ExecOptions = {} ): Promise<ExecResult> { const { docker } = opts; - const dockerChildPrefix = - GlobalConfig.get('dockerChildPrefix') ?? 'renovate_'; + const dockerChildPrefix = GlobalConfig.get('dockerChildPrefix', 'renovate_'); const { rawCommands, rawOptions } = await prepareRawExec(cmd, opts); const useDocker = isDocker(docker); diff --git a/lib/util/fs/index.ts b/lib/util/fs/index.ts index 2a9b2793975755cb016fda94a705f5fd6f43eb72..aa67dee18eff4e4a6e76c92beb330f704f2b22f0 100644 --- a/lib/util/fs/index.ts +++ b/lib/util/fs/index.ts @@ -206,7 +206,7 @@ export async function findUpLocal( fileName: string | string[], cwd: string ): Promise<string | null> { - const { localDir } = GlobalConfig.get(); + const localDir = GlobalConfig.get('localDir'); const absoluteCwd = upath.join(localDir, cwd); const normalizedAbsoluteCwd = upath.normalizeSafe(absoluteCwd); const res = await findUp(fileName, { diff --git a/lib/util/git/index.ts b/lib/util/git/index.ts index 0c857b7f5527f093ee3fd3849054c679689e4bfc..44b04eaf50d46414e1cb30c5e46a1906514f298e 100644 --- a/lib/util/git/index.ts +++ b/lib/util/git/index.ts @@ -238,8 +238,7 @@ export async function initRepo(args: StorageConfig): Promise<void> { config.ignoredAuthors = []; config.additionalBranches = []; config.branchIsModified = {}; - const { localDir } = GlobalConfig.get(); - git = simpleGit(localDir, simpleGitConfig()).env({ + git = simpleGit(GlobalConfig.get('localDir'), simpleGitConfig()).env({ ...process.env, LANG: 'C.UTF-8', LC_ALL: 'C.UTF-8', @@ -479,7 +478,7 @@ export async function syncGit(): Promise<void> { // istanbul ignore next export async function getRepoStatus(path?: string): Promise<StatusResult> { if (is.string(path)) { - const { localDir } = GlobalConfig.get(); + const localDir = GlobalConfig.get('localDir'); const localPath = upath.resolve(localDir, path); if (!localPath.startsWith(upath.resolve(localDir))) { logger.warn( diff --git a/lib/util/json-writer/editor-config.ts b/lib/util/json-writer/editor-config.ts index f7e63eaed0613fea01110a0f28b5ddecfb151391..27beccd5d1092d9af6da06ee027fe9fc041a6636 100644 --- a/lib/util/json-writer/editor-config.ts +++ b/lib/util/json-writer/editor-config.ts @@ -7,7 +7,7 @@ import type { IndentationType } from './indentation-type'; export class EditorConfig { public static async getCodeFormat(fileName: string): Promise<CodeFormat> { - const { localDir } = GlobalConfig.get(); + const localDir = GlobalConfig.get('localDir', 'asdf'); try { const knownProps = await parse(upath.join(localDir, fileName)); return { diff --git a/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts b/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts index be8b39f4ec65c650045edbf2fe2ebada6d672770..82803f36f49fc6a46b34cdcec265e97daacf973a 100644 --- a/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts +++ b/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts @@ -29,8 +29,12 @@ export async function postUpgradeCommandsExecutor( ): Promise<PostUpgradeCommandsExecutionResult> { let updatedArtifacts = [...(config.updatedArtifacts ?? [])]; const artifactErrors = [...(config.artifactErrors ?? [])]; - const { allowedPostUpgradeCommands, allowPostUpgradeCommandTemplating } = - GlobalConfig.get(); + const allowedPostUpgradeCommands = GlobalConfig.get( + 'allowedPostUpgradeCommands' + ); + const allowPostUpgradeCommandTemplating = GlobalConfig.get( + 'allowPostUpgradeCommandTemplating' + ); for (const upgrade of filteredUpgradeCommands) { addMeta({ dep: upgrade.depName }); @@ -158,8 +162,6 @@ export async function postUpgradeCommandsExecutor( export default async function executePostUpgradeCommands( config: BranchConfig ): Promise<PostUpgradeCommandsExecutionResult | null> { - const { allowedPostUpgradeCommands } = GlobalConfig.get(); - const hasChangedFiles = (config.updatedPackageFiles && config.updatedPackageFiles.length > 0) || (config.updatedArtifacts && config.updatedArtifacts.length > 0); @@ -167,7 +169,7 @@ export default async function executePostUpgradeCommands( if ( /* Only run post-upgrade tasks if there are changes to package files... */ !hasChangedFiles || - is.emptyArray(allowedPostUpgradeCommands) + is.emptyArray(GlobalConfig.get('allowedPostUpgradeCommands')) ) { return null; }