diff --git a/.eslintrc.js b/.eslintrc.js index 7e5e79deec20ae4dabbc0fcb026b44a1e054156f..fa3c4fd191fd45a4289f1d7a31465c191c3826ab 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -100,7 +100,7 @@ module.exports = { // TODO: fix lint '@typescript-eslint/no-explicit-any': 0, - // TODO: https://github.com/renovatebot/renovate/issues/7154 + // TODO: https://github.com/renovatebot/renovate/discussions/22198 '@typescript-eslint/no-non-null-assertion': 0, '@typescript-eslint/no-unused-vars': [ 2, diff --git a/lib/config/decrypt.spec.ts b/lib/config/decrypt.spec.ts index 2fb33a08fa759bfdac2502439285521f7b7de59f..e6577739056657ea84e67242ca76b888186d4c86 100644 --- a/lib/config/decrypt.spec.ts +++ b/lib/config/decrypt.spec.ts @@ -93,7 +93,7 @@ describe('config/decrypt', () => { }, 'backend/package.json', ]; - // TODO: fix types #7154 + // TODO: fix types #22198 const res = (await decryptConfig(config, repository)) as any; expect(res.encrypted).toBeUndefined(); expect(res.packageFiles[0].devDependencies.encrypted).toBeUndefined(); diff --git a/lib/config/index.ts b/lib/config/index.ts index e612edc7de6fd4d42e42bf2b08be063fa44aa536..ae565172cf8e8ca527924be9c9e7e2167bca7a59 100644 --- a/lib/config/index.ts +++ b/lib/config/index.ts @@ -23,7 +23,7 @@ export function getManagerConfig( if (categories) { managerConfig.categories = categories; } - // TODO: fix types #7154 + // TODO: fix types #22198 managerConfig = mergeChildConfig(managerConfig, config[manager] as any); for (const i of getManagerList()) { delete managerConfig[i]; diff --git a/lib/config/migration.spec.ts b/lib/config/migration.spec.ts index 63e2e4d3ce49ac7a4a5b57e51c608d298191b40f..81beb430f6695066b59a49e20bb2563d1d3765d8 100644 --- a/lib/config/migration.spec.ts +++ b/lib/config/migration.spec.ts @@ -313,7 +313,7 @@ describe('config/migration', () => { expect(isMigrated).toBeTrue(); expect(migratedConfig).toMatchSnapshot(); expect(migratedConfig.lockFileMaintenance?.packageRules).toHaveLength(1); - // TODO: fix types #7154 + // TODO: fix types #22198 expect( (migratedConfig.lockFileMaintenance as RenovateConfig) ?.packageRules?.[0].respectLatest diff --git a/lib/config/migration.ts b/lib/config/migration.ts index 995bf55376fb0f3b6ef97e6fd8fa381773074d7e..659f0b3651eb1fee6ffe3201f60d28e7db3b8d54 100644 --- a/lib/config/migration.ts +++ b/lib/config/migration.ts @@ -137,7 +137,7 @@ export function migrateConfig(config: RenovateConfig): MigratedConfig { logger.debug('Flattening nested packageRules'); // merge each subrule and add to the parent list for (const subrule of packageRule.packageRules) { - // TODO: fix types #7154 + // TODO: fix types #22198 const combinedRule = mergeChildConfig( packageRule, subrule as PackageRule diff --git a/lib/config/presets/gitea/index.ts b/lib/config/presets/gitea/index.ts index 8728cf2027637e06eaa191d47125e2af9c97c9e3..66eef53360a26543ba4a0e98bba8c2f3a605e143 100644 --- a/lib/config/presets/gitea/index.ts +++ b/lib/config/presets/gitea/index.ts @@ -28,7 +28,7 @@ export async function fetchJSONFile( throw new Error(PRESET_DEP_NOT_FOUND); } - // TODO: null check #7154 + // TODO: null check #22198 return parsePreset(fromBase64(res.content!)); } diff --git a/lib/config/presets/index.ts b/lib/config/presets/index.ts index 4fdd4710298b6fe22ae5a8b1bb0f81ca183a8af7..b1bf1f417162a26e08fd7a09f9a916a026804c47 100644 --- a/lib/config/presets/index.ts +++ b/lib/config/presets/index.ts @@ -63,7 +63,7 @@ export function replaceArgs( ): Record<string, any>[]; /** - * TODO: fix me #7154 + * TODO: fix me #22198 * @param obj * @param argMapping */ diff --git a/lib/config/presets/local/index.ts b/lib/config/presets/local/index.ts index 3ff13e03a7e61eda0c614846e231fcd034e77e83..9cfe3555070b26b4ec06f705893bc4c7e8a5f4c1 100644 --- a/lib/config/presets/local/index.ts +++ b/lib/config/presets/local/index.ts @@ -48,7 +48,7 @@ export function getPreset({ repo, presetName, presetPath, - // TODO: fix type #7154 + // TODO: fix type #22198 endpoint!, tag ); diff --git a/lib/config/presets/npm/index.ts b/lib/config/presets/npm/index.ts index a1c038f7b120f3d7cf8609120dd36a3696ae1ad1..46bdc16847e212a6bb79e307046b424f0e73af91 100644 --- a/lib/config/presets/npm/index.ts +++ b/lib/config/presets/npm/index.ts @@ -32,7 +32,7 @@ export async function getPreset({ ); const packageUrl = resolvePackageUrl(registryUrl, pkg); const body = (await http.getJson<NpmResponse>(packageUrl)).body; - // TODO: check null #7154 + // TODO: check null #22198 dep = body.versions![body['dist-tags']!.latest]; } catch (err) { throw new Error(PRESET_DEP_NOT_FOUND); diff --git a/lib/config/presets/util.ts b/lib/config/presets/util.ts index 12550cc26ec7450a8db1a04fe8bc58203c59be50..86b899e265126af73d52f97b8a31a388bcd8df3c 100644 --- a/lib/config/presets/util.ts +++ b/lib/config/presets/util.ts @@ -20,7 +20,7 @@ export async function fetchPreset({ tag, fetch, }: FetchPresetConfig): Promise<Preset | undefined> { - // TODO: fix me, can be undefiend #7154 + // TODO: fix me, can be undefiend #22198 // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion const endpoint = ensureTrailingSlash(_endpoint!); const [fileName, presetName, subPresetName] = filePreset.split('/'); diff --git a/lib/config/secrets.spec.ts b/lib/config/secrets.spec.ts index 18656049a1e9c1ce2c11219fa79a7fa8ed31b1b5..dbd295c087f3a2506823b72ada9a45dc84901a2a 100644 --- a/lib/config/secrets.spec.ts +++ b/lib/config/secrets.spec.ts @@ -174,7 +174,7 @@ describe('config/secrets', () => { secrets: { SECRET_MANAGER: 'npm' }, allowedManagers: ['{{ secrets.SECRET_MANAGER }}'], }; - // TODO fix me? #7154 + // TODO fix me? #22198 expect(() => applySecretsToConfig(config, null as never, false)).toThrow( CONFIG_VALIDATION ); diff --git a/lib/config/validation.ts b/lib/config/validation.ts index 4684c6e8777b293bc75633574406a6b5c8990cfe..8abff1d09fa8777585a695e3d985559b9b0cf6bf 100644 --- a/lib/config/validation.ts +++ b/lib/config/validation.ts @@ -171,7 +171,7 @@ export async function validateConfig( ]; if ((key.endsWith('Template') || templateKeys.includes(key)) && val) { try { - // TODO: validate string #7154 + // TODO: validate string #22198 let res = template.compile((val as string).toString(), config, false); res = template.compile(res, config, false); template.compile(res, config, false); @@ -188,7 +188,7 @@ export async function validateConfig( optionParents[key] && optionParents[key] !== parentName ) { - // TODO: types (#7154) + // TODO: types (#22198) const message = `${key} should only be configured within a "${optionParents[key]}" object. Was found in ${parentName}`; warnings.push({ topic: `${parentPath ? `${parentPath}.` : ''}${key}`, @@ -415,7 +415,7 @@ export async function validateConfig( 'autoReplaceStringTemplate', 'depTypeTemplate', ]; - // TODO: fix types #7154 + // TODO: fix types #22198 for (const regexManager of val as any[]) { if ( Object.keys(regexManager).some( @@ -532,7 +532,7 @@ export async function validateConfig( (selectors.includes(key) || key === 'matchCurrentVersion' || key === 'matchCurrentValue') && - // TODO: can be undefined ? #7154 + // TODO: can be undefined ? #22198 !rulesRe.test(parentPath!) && // Inside a packageRule (is.string(parentPath) || !isPreset) // top level in a preset ) { diff --git a/lib/logger/utils.spec.ts b/lib/logger/utils.spec.ts index 898cd8cd05616dd38baa19c2e03eb049c8df278c..788ed5e0ee5a956e49c4e7ccd34944f42cf5d1d4 100644 --- a/lib/logger/utils.spec.ts +++ b/lib/logger/utils.spec.ts @@ -28,7 +28,7 @@ describe('logger/utils', () => { // Mock when the function exits const mockExit = jest.spyOn(process, 'exit'); mockExit.mockImplementationOnce((number) => { - // TODO: types (#7154) + // TODO: types (#22198) throw new Error(`process.exit: ${number}`); }); expect(() => { diff --git a/lib/modules/datasource/artifactory/index.ts b/lib/modules/datasource/artifactory/index.ts index d4d81689487757805b1df376320ab8c886c1e929..64779cac681fc9077b2d724c38c644111d5206f5 100644 --- a/lib/modules/datasource/artifactory/index.ts +++ b/lib/modules/datasource/artifactory/index.ts @@ -24,7 +24,7 @@ export class ArtifactoryDatasource extends Datasource { @cache({ namespace: `datasource-${datasource}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}:${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/conan/index.ts b/lib/modules/datasource/conan/index.ts index 511c9495de4f4dfb7cd108b2da5f59c0ceef0dd0..2ac31a7883e0453fe8918e06072553ec41841c81 100644 --- a/lib/modules/datasource/conan/index.ts +++ b/lib/modules/datasource/conan/index.ts @@ -71,7 +71,7 @@ export class ConanDatasource extends Datasource { @cache({ namespace: `datasource-${datasource}-revisions`, key: ({ registryUrl, packageName }: DigestConfig, newValue?: string) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl!}:${packageName}:${newValue!}`, }) override async getDigest( @@ -101,7 +101,7 @@ export class ConanDatasource extends Datasource { @cache({ namespace: `datasource-${datasource}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}:${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/conda/index.ts b/lib/modules/datasource/conda/index.ts index 4d3a34a92c5f0b75b0d12c3b3cc6c8121bf35821..b32cd4de63748b8649059d87a4563c1bd4a7c0aa 100644 --- a/lib/modules/datasource/conda/index.ts +++ b/lib/modules/datasource/conda/index.ts @@ -26,7 +26,7 @@ export class CondaDatasource extends Datasource { @cache({ namespace: `datasource-${datasource}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}:${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/crate/index.ts b/lib/modules/datasource/crate/index.ts index 196d19e9d952640c511bc88f53293da9db58721f..928dc893aea2d0f3ccc61ed7cf58def6f1becbed 100644 --- a/lib/modules/datasource/crate/index.ts +++ b/lib/modules/datasource/crate/index.ts @@ -38,7 +38,7 @@ export class CrateDatasource extends Datasource { @cache({ namespace: `datasource-${CrateDatasource.id}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}/${packageName}`, cacheable: ({ registryUrl }: GetReleasesConfig) => CrateDatasource.areReleasesCacheable(registryUrl), diff --git a/lib/modules/datasource/deno/index.ts b/lib/modules/datasource/deno/index.ts index 007d5ce83ab5c0cc7e36ef285458de4bd8be1066..3ff7139d5f7b5cdc99a71696eef4308647eb925f 100644 --- a/lib/modules/datasource/deno/index.ts +++ b/lib/modules/datasource/deno/index.ts @@ -29,7 +29,7 @@ export class DenoDatasource extends Datasource { @cache({ namespace: `datasource-${DenoDatasource.id}`, key: ({ packageName, registryUrl }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}:${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/docker/index.ts b/lib/modules/datasource/docker/index.ts index 24f842558ffdb178a2a6c48ad95d55fcf135b5db..f71c82bbb975e3848c2337bea5897f026578c69b 100644 --- a/lib/modules/datasource/docker/index.ts +++ b/lib/modules/datasource/docker/index.ts @@ -707,7 +707,7 @@ export class DockerDatasource extends Datasource { registryUrl! ); logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `getDigest(${registryHost}, ${dockerRepository}, ${newValue})` ); const newTag = newValue ?? 'latest'; @@ -800,7 +800,7 @@ export class DockerDatasource extends Datasource { } if (manifestResponse) { - // TODO: fix types (#7154) + // TODO: fix types (#22198) logger.debug(`Got docker digest ${digest!}`); } } catch (err) /* istanbul ignore next */ { diff --git a/lib/modules/datasource/endoflife-date/index.ts b/lib/modules/datasource/endoflife-date/index.ts index 3e4e14d49311f2162fd7738c7e5f65085715b4a1..036a9f3e719635b48e3d6350fae641b4675428dc 100644 --- a/lib/modules/datasource/endoflife-date/index.ts +++ b/lib/modules/datasource/endoflife-date/index.ts @@ -21,7 +21,7 @@ export class EndoflifeDatePackagesource extends Datasource { @cache({ namespace: `datasource-${datasource}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl!}:${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/galaxy-collection/index.ts b/lib/modules/datasource/galaxy-collection/index.ts index a5d156af8c0b9101331f6b3a75795c3f15e826e0..cf309f76c3f00fe0d40cdea3cb1b039418231f0c 100644 --- a/lib/modules/datasource/galaxy-collection/index.ts +++ b/lib/modules/datasource/galaxy-collection/index.ts @@ -35,7 +35,7 @@ export class GalaxyCollectionDatasource extends Datasource { }: GetReleasesConfig): Promise<ReleaseResult | null> { const [namespace, projectName] = packageName.split('.'); - // TODO: types (#7154) + // TODO: types (#22198) const baseUrl = `${registryUrl}api/v2/collections/${namespace}/${projectName}/`; let baseUrlResponse: HttpResponse<BaseProjectResult>; diff --git a/lib/modules/datasource/galaxy/index.ts b/lib/modules/datasource/galaxy/index.ts index c7610403d382d390c3553211bf9fc685baf8a2b5..143a7b64130f3a0dee8f348c049a7a2c6226b61c 100644 --- a/lib/modules/datasource/galaxy/index.ts +++ b/lib/modules/datasource/galaxy/index.ts @@ -32,7 +32,7 @@ export class GalaxyDatasource extends Datasource { const userName = lookUp[0]; const projectName = lookUp[1]; - // TODO: types (#7154) + // TODO: types (#22198) const galaxyAPIUrl = `${registryUrl}api/v1/roles/?owner__username=${userName}&name=${projectName}`; const galaxyProjectUrl = `${registryUrl}${userName}/${projectName}`; diff --git a/lib/modules/datasource/gitlab-packages/index.ts b/lib/modules/datasource/gitlab-packages/index.ts index 8dc3bda0822f46f3e868d035d06277bd144f806e..fce9566ef23f59dac21dca0286aba7c470803016 100644 --- a/lib/modules/datasource/gitlab-packages/index.ts +++ b/lib/modules/datasource/gitlab-packages/index.ts @@ -43,7 +43,7 @@ export class GitlabPackagesDatasource extends Datasource { @cache({ namespace: `datasource-${datasource}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}-${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/gitlab-releases/index.ts b/lib/modules/datasource/gitlab-releases/index.ts index c61aec49523192a23a229f2a879ffebcb5ae3c26..a6458d35e02ff2d6d3496e350c331c1d47375965 100644 --- a/lib/modules/datasource/gitlab-releases/index.ts +++ b/lib/modules/datasource/gitlab-releases/index.ts @@ -19,7 +19,7 @@ export class GitlabReleasesDatasource extends Datasource { @cache({ namespace: `datasource-${GitlabReleasesDatasource.id}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}/${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/go/base.ts b/lib/modules/datasource/go/base.ts index 98a51cdbe14b4c8c88e0ffffa25743989a744a34..fbd4b6a997b3816498e0f536eea63f82fe0825e3 100644 --- a/lib/modules/datasource/go/base.ts +++ b/lib/modules/datasource/go/base.ts @@ -1,4 +1,4 @@ -// TODO: types (#7154) +// TODO: types (#22198) import URL from 'node:url'; import { logger } from '../../../logger'; import { detectPlatform } from '../../../util/common'; diff --git a/lib/modules/datasource/go/index.ts b/lib/modules/datasource/go/index.ts index d326ed70851a8de7236434a15554876cbc664ae8..1406bb7d0dae78b887725ce59abff35910faacd5 100644 --- a/lib/modules/datasource/go/index.ts +++ b/lib/modules/datasource/go/index.ts @@ -38,7 +38,7 @@ export class GoDatasource extends Datasource { ); @cache({ namespace: `datasource-${GoDatasource.id}`, - // TODO: types (#7154) + // TODO: types (#22198) key: ({ packageName }: Partial<DigestConfig>) => `${packageName}-digest`, }) getReleases(config: GetReleasesConfig): Promise<ReleaseResult | null> { diff --git a/lib/modules/datasource/go/releases-goproxy.ts b/lib/modules/datasource/go/releases-goproxy.ts index 7439267c0c123d067cb22f68ca035dc5ce27f581..09b4a91e6676a526ca6b8202b1920baf18ae6912 100644 --- a/lib/modules/datasource/go/releases-goproxy.ts +++ b/lib/modules/datasource/go/releases-goproxy.ts @@ -310,7 +310,7 @@ export class GoProxyDatasource extends Datasource { static getCacheKey({ packageName }: GetReleasesConfig): string { const goproxy = process.env.GOPROXY; const noproxy = GoProxyDatasource.parseNoproxy(); - // TODO: types (#7154) + // TODO: types (#22198) return `${packageName}@@${goproxy}@@${noproxy?.toString()}`; } } diff --git a/lib/modules/datasource/gradle-version/index.ts b/lib/modules/datasource/gradle-version/index.ts index eaa44bdc3d9cfbefccf58c44ffab46d992595c11..7deac775b835331a58dab75bb9bd6a72a0a54162 100644 --- a/lib/modules/datasource/gradle-version/index.ts +++ b/lib/modules/datasource/gradle-version/index.ts @@ -26,7 +26,7 @@ export class GradleVersionDatasource extends Datasource { @cache({ namespace: `datasource-${GradleVersionDatasource.id}`, - // TODO: types (#7154) + // TODO: types (#22198) key: ({ registryUrl }: GetReleasesConfig) => `${registryUrl}`, }) async getReleases({ diff --git a/lib/modules/datasource/helm/index.spec.ts b/lib/modules/datasource/helm/index.spec.ts index 7a272957dc4800371f22af257ce749b00e2dc744..c00b69316d03093c3c92495acb49de2969634a9e 100644 --- a/lib/modules/datasource/helm/index.spec.ts +++ b/lib/modules/datasource/helm/index.spec.ts @@ -17,7 +17,7 @@ describe('modules/datasource/helm/index', () => { expect( await getPkgReleases({ datasource: HelmDatasource.id, - packageName: undefined as never, // #7154 + packageName: undefined as never, // #22198 registryUrls: ['https://example-repository.com'], }) ).toBeNull(); diff --git a/lib/modules/datasource/index.spec.ts b/lib/modules/datasource/index.spec.ts index a37361384a1a1dd43e06bea8589cfdd72af3a4d9..4646a4e53f8c74c2816928632fdb2417919416d5 100644 --- a/lib/modules/datasource/index.spec.ts +++ b/lib/modules/datasource/index.spec.ts @@ -171,7 +171,7 @@ describe('modules/datasource/index', () => { it('returns null for null datasource', async () => { expect( await getPkgReleases({ - datasource: null as never, // #7154 + datasource: null as never, // #22198 packageName: 'some/dep', }) ).toBeNull(); @@ -182,7 +182,7 @@ describe('modules/datasource/index', () => { expect( await getPkgReleases({ datasource, - packageName: null as never, // #7154 + packageName: null as never, // #22198 }) ).toBeNull(); }); diff --git a/lib/modules/datasource/java-version/index.ts b/lib/modules/datasource/java-version/index.ts index 9dda77f541866369ef178a82b7a8afe66c6192f6..e52d087449b651c9fe1a9df615da3d8b7693dcf9 100644 --- a/lib/modules/datasource/java-version/index.ts +++ b/lib/modules/datasource/java-version/index.ts @@ -54,7 +54,7 @@ export class JavaVersionDatasource extends Datasource { @cache({ namespace: `datasource-${datasource}`, key: ({ registryUrl, packageName }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl!}:${getImageType(packageName)}`, }) async getReleases({ @@ -66,7 +66,7 @@ export class JavaVersionDatasource extends Datasource { { registryUrl, packageName, imageType }, 'fetching java release' ); - // TODO: types (#7154) + // TODO: types (#22198) const url = `${registryUrl!}v3/info/release_versions?page_size=${pageSize}&image_type=${imageType}&project=jdk&release_type=ga&sort_method=DATE&sort_order=DESC`; const result: ReleaseResult = { diff --git a/lib/modules/datasource/maven/util.spec.ts b/lib/modules/datasource/maven/util.spec.ts index 7e973ac2080d2cb9d9dd89596a2cf0385e1ecdb7..557ab1eecd24733d3487bbdbce669a112417be40 100644 --- a/lib/modules/datasource/maven/util.spec.ts +++ b/lib/modules/datasource/maven/util.spec.ts @@ -14,7 +14,7 @@ describe('modules/datasource/maven/util', () => { describe('downloadMavenXml', () => { it('returns empty object for unsupported protocols', async () => { const res = await downloadMavenXml( - null as never, // #7154 + null as never, // #22198 parseUrl('unsupported://server.com/') ); expect(res).toEqual({}); @@ -22,7 +22,7 @@ describe('modules/datasource/maven/util', () => { it('returns empty object for invalid URLs', async () => { const res = await downloadMavenXml( - null as never, // #7154 + null as never, // #22198 null ); expect(res).toEqual({}); @@ -31,7 +31,7 @@ describe('modules/datasource/maven/util', () => { describe('downloadS3Protocol', () => { it('returns null for non-S3 URLs', async () => { - // #7154 + // #22198 const res = await downloadS3Protocol(parseUrl('http://not-s3.com/')!); expect(res).toBeNull(); }); @@ -82,7 +82,7 @@ describe('modules/datasource/maven/util', () => { describe('checkResource', () => { it('returns not found for unsupported protocols', async () => { const res = await checkResource( - null as never, // #7154 + null as never, // #22198 'unsupported://server.com/' ); expect(res).toBe('not-found'); @@ -90,7 +90,7 @@ describe('modules/datasource/maven/util', () => { it('returns error for invalid URLs', async () => { const res = await checkResource( - null as never, // #7154 + null as never, // #22198 'not-a-valid-url' ); expect(res).toBe('error'); @@ -99,7 +99,7 @@ describe('modules/datasource/maven/util', () => { describe('checkS3Resource', () => { it('returns error for non-S3 URLs', async () => { - // #7154 + // #22198 const res = await checkS3Resource(parseUrl('http://not-s3.com/')!); expect(res).toBe('error'); }); diff --git a/lib/modules/datasource/maven/util.ts b/lib/modules/datasource/maven/util.ts index 51a4acd699e2bbec77f9930da7bd951cc8da6231..a41a5b1e3bd420fb5884d224f08aba624ac243dc 100644 --- a/lib/modules/datasource/maven/util.ts +++ b/lib/modules/datasource/maven/util.ts @@ -361,12 +361,12 @@ export async function createUrlForDependencyPom( // If we were able to resolve the version, use that, otherwise fall back to using -SNAPSHOT if (fullVersion !== null) { - // TODO: types (#7154) + // TODO: types (#22198) return `${version}/${dependency.name}-${fullVersion}.pom`; } } - // TODO: types (#7154) + // TODO: types (#22198) return `${version}/${dependency.name}-${version}.pom`; } diff --git a/lib/modules/datasource/node-version/index.ts b/lib/modules/datasource/node-version/index.ts index f2b6e08e9347a99fae6617ad359377370151a631..1fc805d04d162e7f4d52843794d51e93f4018358 100644 --- a/lib/modules/datasource/node-version/index.ts +++ b/lib/modules/datasource/node-version/index.ts @@ -23,7 +23,7 @@ export class NodeVersionDatasource extends Datasource { @cache({ namespace: `datasource-${datasource}`, - // TODO: types (#7154) + // TODO: types (#22198) key: ({ registryUrl }: GetReleasesConfig) => `${registryUrl}`, }) async getReleases({ diff --git a/lib/modules/datasource/npm/npmrc.ts b/lib/modules/datasource/npm/npmrc.ts index 26bc58fbf99bf40f2fc382f628a09c50aafb892a..3cbbd0d897b4cb8145be40c53ab11084cd303fb5 100644 --- a/lib/modules/datasource/npm/npmrc.ts +++ b/lib/modules/datasource/npm/npmrc.ts @@ -173,7 +173,7 @@ export function resolveRegistryUrl(packageName: string): string { !matchPackagePrefixes || packageName.startsWith(matchPackagePrefixes[0]) ) { - // TODO: fix types #7154 + // TODO: fix types #22198 registryUrl = registryUrls![0]; } } diff --git a/lib/modules/datasource/nuget/v2.ts b/lib/modules/datasource/nuget/v2.ts index 8201e18fc62652311a3484d7e8c2fd19fb844ddc..c92db3da7fd8c2c121cee5a1239ed077ac1bfb19 100644 --- a/lib/modules/datasource/nuget/v2.ts +++ b/lib/modules/datasource/nuget/v2.ts @@ -33,7 +33,7 @@ export async function getReleases( const version = getPkgProp(pkgInfo, 'Version'); const releaseTimestamp = getPkgProp(pkgInfo, 'Published'); dep.releases.push({ - // TODO: types (#7154) + // TODO: types (#22198) version: removeBuildMeta(`${version}`), releaseTimestamp, }); diff --git a/lib/modules/datasource/nuget/v3.ts b/lib/modules/datasource/nuget/v3.ts index 957177802acdc44b0f0327bec621cda95abf686e..72db618429c52c0c3226e112ae65bad49269beb8 100644 --- a/lib/modules/datasource/nuget/v3.ts +++ b/lib/modules/datasource/nuget/v3.ts @@ -168,7 +168,7 @@ export async function getReleases( const nuspecUrl = `${ensureTrailingSlash( packageBaseAddress )}${pkgName.toLowerCase()}/${ - // TODO: types (#7154) + // TODO: types (#22198) latestStable }/${pkgName.toLowerCase()}.nuspec`; const metaresult = await http.get(nuspecUrl); diff --git a/lib/modules/datasource/pod/index.ts b/lib/modules/datasource/pod/index.ts index 33e00a0baf67260254928dd1e4a867c12cc9ce3e..6cf771fa196d5916d8d3dd515b54494673f5ccd0 100644 --- a/lib/modules/datasource/pod/index.ts +++ b/lib/modules/datasource/pod/index.ts @@ -207,7 +207,7 @@ export class PodDatasource extends Datasource { ttlMinutes: 30, namespace: `datasource-${PodDatasource.id}`, key: ({ packageName, registryUrl }: GetReleasesConfig) => - // TODO: types (#7154) + // TODO: types (#22198) `${registryUrl}:${packageName}`, }) async getReleases({ diff --git a/lib/modules/datasource/puppet-forge/index.ts b/lib/modules/datasource/puppet-forge/index.ts index 64a06296d4caec834ce7d46515fcf448670aeebe..cb2a0ca687f6d1aa3b5732c1116800669c6f42ab 100644 --- a/lib/modules/datasource/puppet-forge/index.ts +++ b/lib/modules/datasource/puppet-forge/index.ts @@ -18,7 +18,7 @@ export class PuppetForgeDatasource extends Datasource { }: GetReleasesConfig): Promise<ReleaseResult | null> { // https://forgeapi.puppet.com const moduleSlug = packageName.replace('/', '-'); - // TODO: types (#7154) + // TODO: types (#22198) const url = `${registryUrl}/v3/modules/${moduleSlug}?exclude_fields=current_release`; let module: PuppetModule; diff --git a/lib/modules/datasource/pypi/index.ts b/lib/modules/datasource/pypi/index.ts index 6757b39e5943918430120f067c25ebbeeb85d644..ddc76d5b0b1d8c4f6a5c367a79978b4a0ceb6f19 100644 --- a/lib/modules/datasource/pypi/index.ts +++ b/lib/modules/datasource/pypi/index.ts @@ -34,7 +34,7 @@ export class PypiDatasource extends Datasource { registryUrl, }: GetReleasesConfig): Promise<ReleaseResult | null> { let dependency: ReleaseResult | null = null; - // TODO: null check (#7154) + // TODO: null check (#22198) const hostUrl = ensureTrailingSlash( registryUrl!.replace('https://pypi.org/simple', 'https://pypi.org/pypi') ); diff --git a/lib/modules/datasource/ruby-version/index.ts b/lib/modules/datasource/ruby-version/index.ts index 7fea76ed8b94fada1800ae381541cd58153c72fe..60fae662e90a5ca51a52f31ac914f770153a90ba 100644 --- a/lib/modules/datasource/ruby-version/index.ts +++ b/lib/modules/datasource/ruby-version/index.ts @@ -29,7 +29,7 @@ export class RubyVersionDatasource extends Datasource { sourceUrl: 'https://github.com/ruby/ruby', releases: [], }; - // TODO: types (#7154) + // TODO: types (#22198) const rubyVersionsUrl = `${registryUrl}en/downloads/releases/`; try { const response = await this.http.get(rubyVersionsUrl); diff --git a/lib/modules/datasource/terraform-module/index.ts b/lib/modules/datasource/terraform-module/index.ts index f6ee1791bf88579b188b21b3afec40aaad700fbd..17bbf9063ac9833e4e9bca1f0dea5784fd71bf18 100644 --- a/lib/modules/datasource/terraform-module/index.ts +++ b/lib/modules/datasource/terraform-module/index.ts @@ -86,7 +86,7 @@ export class TerraformModuleDatasource extends TerraformDatasource { let pkgUrl: string; try { - // TODO: types (#7154) + // TODO: types (#22198) pkgUrl = createSDBackendURL( registryUrl, @@ -136,7 +136,7 @@ export class TerraformModuleDatasource extends TerraformDatasource { let res: TerraformModuleVersions; let pkgUrl: string; try { - // TODO: types (#7154) + // TODO: types (#22198) pkgUrl = createSDBackendURL( registryUrl, 'modules.v1', diff --git a/lib/modules/datasource/terraform-provider/index.ts b/lib/modules/datasource/terraform-provider/index.ts index 24d1d304055c42a5001586172c68c3fc0448d071..1db137f983bf4f153f6cccfa18010d350a478a27 100644 --- a/lib/modules/datasource/terraform-provider/index.ts +++ b/lib/modules/datasource/terraform-provider/index.ts @@ -1,4 +1,4 @@ -// TODO: types (#7154) +// TODO: types (#22198) import is from '@sindresorhus/is'; import { logger } from '../../../logger'; import { ExternalHostError } from '../../../types/errors/external-host-error'; diff --git a/lib/modules/manager/batect/extract.spec.ts b/lib/modules/manager/batect/extract.spec.ts index 91f1aff458f11a4b14c44c7e8d945452fa527e81..09f34966cd4d60ecede1b4cf11d704c65d2106e8 100644 --- a/lib/modules/manager/batect/extract.spec.ts +++ b/lib/modules/manager/batect/extract.spec.ts @@ -76,7 +76,7 @@ describe('modules/manager/batect/extract', () => { `${fixturesDir}/valid/batect.yml`, ]); - // TODO: #7154 + // TODO: #22198 expect( result?.sort((a, b) => a.packageFile.localeCompare(b.packageFile)) ).toEqual([ diff --git a/lib/modules/manager/batect/extract.ts b/lib/modules/manager/batect/extract.ts index abc1abac35d61d66cda5cdeca1214e39267a1041..f41ad3c1d9df5bf3b3934689bb6bb25ec28bd2bd 100644 --- a/lib/modules/manager/batect/extract.ts +++ b/lib/modules/manager/batect/extract.ts @@ -160,7 +160,7 @@ export async function extractAllPackageFiles( filesAlreadyExamined.add(packageFile); const content = await readLocalFile(packageFile, 'utf8'); - // TODO #7154 + // TODO #22198 const result = extractPackageFile(content!, packageFile); if (result !== null) { diff --git a/lib/modules/manager/bundler/extract.ts b/lib/modules/manager/bundler/extract.ts index 81b500946bd2684160385d4af613ca97f9d3d103..7380919c256c64f319149e3383d21889432eb9d0 100644 --- a/lib/modules/manager/bundler/extract.ts +++ b/lib/modules/manager/bundler/extract.ts @@ -219,7 +219,7 @@ export async function extractPackageFile( res.lockFiles = [gemfileLockPath]; const lockedEntries = extractLockFileEntries(lockContent); for (const dep of res.deps) { - // TODO: types (#7154) + // TODO: types (#22198) const lockedDepValue = lockedEntries.get(`${dep.depName!}`); if (lockedDepValue) { dep.lockedVersion = lockedDepValue; diff --git a/lib/modules/manager/bundler/host-rules.ts b/lib/modules/manager/bundler/host-rules.ts index f61d779d5d074670a42ed38dab51d32027451934..a077709d6b7fd082fc697f1fc2d17c7269c590d2 100644 --- a/lib/modules/manager/bundler/host-rules.ts +++ b/lib/modules/manager/bundler/host-rules.ts @@ -18,10 +18,10 @@ export function findAllAuthenticatable({ export function getAuthenticationHeaderValue(hostRule: HostRule): string { if (hostRule.username) { - // TODO: types (#7154) + // TODO: types (#22198) return `${hostRule.username}:${hostRule.password!}`; } - // TODO: types (#7154) + // TODO: types (#22198) return `${hostRule.token!}`; } diff --git a/lib/modules/manager/composer/utils.ts b/lib/modules/manager/composer/utils.ts index 536bf472ae2b63f7a55a6e23d45a6ce4a2628747..aa3a69aa10af7a2a32dec4d864272d2f6994940b 100644 --- a/lib/modules/manager/composer/utils.ts +++ b/lib/modules/manager/composer/utils.ts @@ -1,4 +1,4 @@ -// TODO: types (#7154) +// TODO: types (#22198) import { quote } from 'shlex'; import { GlobalConfig } from '../../../config/global'; import { logger } from '../../../logger'; @@ -20,7 +20,7 @@ export function getComposerArguments( if (config.composerIgnorePlatformReqs) { if (config.composerIgnorePlatformReqs.length === 0) { - // TODO: toolConstraint.constraint can be null or undefined? (#7154) + // TODO: toolConstraint.constraint can be null or undefined? (#22198) const major = api.getMajor(toolConstraint.constraint!); const minor = api.getMinor(toolConstraint.constraint!); args += api.matches(`${major}.${minor}`, '^2.2') diff --git a/lib/modules/manager/flux/extract.ts b/lib/modules/manager/flux/extract.ts index fb55967938c423bfe79afdd20ef3aa042f9cef72..a5b35b0bd5694d3e8999772cef1a04595675ebb4 100644 --- a/lib/modules/manager/flux/extract.ts +++ b/lib/modules/manager/flux/extract.ts @@ -302,7 +302,7 @@ export async function extractAllPackageFiles( for (const file of packageFiles) { const content = await readLocalFile(file, 'utf8'); - // TODO #7154 + // TODO #22198 const manifest = readManifest(content!, file); if (manifest) { manifests.push(manifest); diff --git a/lib/modules/manager/git-submodules/artifacts.ts b/lib/modules/manager/git-submodules/artifacts.ts index cbf28414159b1cfe69f657df54289bc805042313..531588df13c5f0a55c8b5ff35e2519bae239c337 100644 --- a/lib/modules/manager/git-submodules/artifacts.ts +++ b/lib/modules/manager/git-submodules/artifacts.ts @@ -6,7 +6,7 @@ export default function updateArtifacts({ }: UpdateArtifact): UpdateArtifactsResult[] | null { const res: UpdateArtifactsResult[] = []; updatedDeps.forEach((dep) => { - // TODO: types (#7154) + // TODO: types (#22198) logger.info(`Updating submodule ${dep.depName}`); res.push({ file: { type: 'addition', path: dep.depName!, contents: '' }, diff --git a/lib/modules/manager/gitlabci/extract.spec.ts b/lib/modules/manager/gitlabci/extract.spec.ts index 329777f9c24559ea02f6a3a96cba33b00ab30d94..b9f3b2196d05d1201ce8d9d519a3dd6980a7688f 100644 --- a/lib/modules/manager/gitlabci/extract.spec.ts +++ b/lib/modules/manager/gitlabci/extract.spec.ts @@ -86,7 +86,7 @@ describe('modules/manager/gitlabci/extract', () => { }); expect(deps).toHaveLength(8); - // TODO #7154 + // TODO #22198 expect(deps.some((dep) => dep.currentValue!.includes("'"))).toBeFalse(); }); diff --git a/lib/modules/manager/gitlabci/utils.ts b/lib/modules/manager/gitlabci/utils.ts index 9172b29fc9ccff64b603a95c24f70440d3d299a6..e09825c09569eb4a601c9956024af4ac4646f3d0 100644 --- a/lib/modules/manager/gitlabci/utils.ts +++ b/lib/modules/manager/gitlabci/utils.ts @@ -31,7 +31,7 @@ export function getGitlabDep( const match = depProxyRe.exec(imageName); if (match?.groups) { const dep = { ...getDep(match.groups.depName), replaceString: imageName }; - // TODO: types (#7154) + // TODO: types (#22198) dep.autoReplaceStringTemplate = `${match.groups.prefix}${dep.autoReplaceStringTemplate}`; return dep; } diff --git a/lib/modules/manager/gomod/artifacts.spec.ts b/lib/modules/manager/gomod/artifacts.spec.ts index 5c8d455b6e44e09808c8da7d7d7fd7d15d1c3079..9dfbf2f1f08179c108477a9e9992332091571b54 100644 --- a/lib/modules/manager/gomod/artifacts.spec.ts +++ b/lib/modules/manager/gomod/artifacts.spec.ts @@ -901,7 +901,7 @@ describe('modules/manager/gomod/artifacts', () => { }, ]); fs.readLocalFile.mockResolvedValueOnce('Current go.sum'); - // TODO: #7154 can be null + // TODO: #22198 can be null fs.readLocalFile.mockResolvedValueOnce(null); // vendor modules filename const execSnapshots = mockExecAll(); git.getRepoStatus.mockResolvedValueOnce( diff --git a/lib/modules/manager/gomod/artifacts.ts b/lib/modules/manager/gomod/artifacts.ts index 2eb6a55cc70433ef31381dae117afadba09acf65..329eeb726c1c4bd291ba7aec579b8311fcc14bb6 100644 --- a/lib/modules/manager/gomod/artifacts.ts +++ b/lib/modules/manager/gomod/artifacts.ts @@ -352,7 +352,7 @@ export async function updateArtifacts({ } } - // TODO: throws in tests (#7154) + // TODO: throws in tests (#22198) const finalGoModContent = (await readLocalFile(goModFileName, 'utf8'))! .replace(regEx(/\/\/ renovate-replace /g), '') .replace(regEx(/renovate-replace-bracket/g), ')'); diff --git a/lib/modules/manager/gomod/update.spec.ts b/lib/modules/manager/gomod/update.spec.ts index 6270bb8cc743001fdb49b669dc5ad0214baba36a..6a4db68fc3030ce6e816dc3fef53f2a11ed1b42d 100644 --- a/lib/modules/manager/gomod/update.spec.ts +++ b/lib/modules/manager/gomod/update.spec.ts @@ -144,7 +144,7 @@ describe('modules/manager/gomod/update', () => { }); it('returns null if error', () => { - // TODO: #7154 bad test, uses invalid null to throwing nullref error + // TODO: #22198 bad test, uses invalid null to throwing nullref error const res = updateDependency({ fileContent: null as never, upgrade: null as never, diff --git a/lib/modules/manager/gomod/update.ts b/lib/modules/manager/gomod/update.ts index f4ef9d374d748db1aa71659881b73dfd3bdee08e..03e80be30d5b044e94b75e2c80084899c0359e95 100644 --- a/lib/modules/manager/gomod/update.ts +++ b/lib/modules/manager/gomod/update.ts @@ -1,4 +1,4 @@ -// TODO: types (#7154) +// TODO: types (#22198) import { logger } from '../../../logger'; import { newlineRegex, regEx } from '../../../util/regex'; import type { UpdateDependencyConfig } from '../types'; @@ -81,13 +81,13 @@ export function updateDependency({ 'gomod: need to update digest' ); newLine = lineToChange.replace( - // TODO: can be undefined? (#7154) + // TODO: can be undefined? (#22198) updateLineExp!, `$<depPart>$<divider>${newDigestRightSized}` ); } else { newLine = lineToChange.replace( - // TODO: can be undefined? (#7154) + // TODO: can be undefined? (#22198) updateLineExp!, `$<depPart>$<divider>${upgrade.newValue}` ); diff --git a/lib/modules/manager/gradle-wrapper/util.spec.ts b/lib/modules/manager/gradle-wrapper/util.spec.ts index 6a49b9eb86e61f7766c30fa77b241a7618ff432c..09234235e99086e9a28404de05b12eead0fbca1a 100644 --- a/lib/modules/manager/gradle-wrapper/util.spec.ts +++ b/lib/modules/manager/gradle-wrapper/util.spec.ts @@ -49,7 +49,7 @@ describe('modules/manager/gradle-wrapper/util', () => { describe('extractGradleVersion()', () => { it('works for undefined', () => { - // TODO #7154 + // TODO #22198 expect(extractGradleVersion(undefined as never)).toBeNull(); }); }); diff --git a/lib/modules/manager/gradle/artifacts.spec.ts b/lib/modules/manager/gradle/artifacts.spec.ts index 15f6f35a9c6d8f1cd7e1ca49cefef783edf09567..9000078c12f3e6d60ca887db11affa20e187b165 100644 --- a/lib/modules/manager/gradle/artifacts.spec.ts +++ b/lib/modules/manager/gradle/artifacts.spec.ts @@ -78,7 +78,7 @@ describe('modules/manager/gradle/artifacts', () => { }) ); - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) fs.readLocalFile.mockImplementation((fileName: string): Promise<any> => { let content = ''; if (fileName === 'gradle.lockfile') { diff --git a/lib/modules/manager/gradle/extract.spec.ts b/lib/modules/manager/gradle/extract.spec.ts index d54aa0c92141b29156d2d47f081f4daf6f7b6b5a..d007dd7ff3ff51a4a9a69507085a8c5d5b270f39 100644 --- a/lib/modules/manager/gradle/extract.spec.ts +++ b/lib/modules/manager/gradle/extract.spec.ts @@ -8,7 +8,7 @@ import { extractAllPackageFiles } from '.'; jest.mock('../../../util/fs'); function mockFs(files: Record<string, string>): void { - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) fs.getLocalFiles.mockImplementation((fileNames: string[]): Promise<any> => { const fileContentMap: Record<string, string | null> = {}; for (const fileName of fileNames) { diff --git a/lib/modules/manager/gradle/extract.ts b/lib/modules/manager/gradle/extract.ts index 3d96e836915ca8ddd484c4114d0c7e7b451e26db..010a24de8105095ee35f2e1f06551792fb32b0b3 100644 --- a/lib/modules/manager/gradle/extract.ts +++ b/lib/modules/manager/gradle/extract.ts @@ -78,7 +78,7 @@ async function parsePackageFiles( }; try { - // TODO #7154 + // TODO #22198 const content = fileContents[packageFile]!; const packageFileDir = upath.dirname(toAbsolutePath(packageFile)); diff --git a/lib/modules/manager/gradle/parser.spec.ts b/lib/modules/manager/gradle/parser.spec.ts index 4dbcba1e7aa9b748d10c0e785a85c846023ad706..6fc134df8387d0a4005f698c82cd967876f6e09f 100644 --- a/lib/modules/manager/gradle/parser.spec.ts +++ b/lib/modules/manager/gradle/parser.spec.ts @@ -756,7 +756,7 @@ describe('modules/manager/gradle/parser', () => { const { deps } = parseGradle(content); const [res] = deps; const idx = content - // TODO #7154 + // TODO #22198 .slice(res.managerData!.fileReplacePosition) .indexOf('1.2.3'); expect(idx).toBe(0); @@ -766,7 +766,7 @@ describe('modules/manager/gradle/parser', () => { const content = Fixtures.get('build.gradle.example1'); const { deps } = parseGradle(content, {}, 'build.gradle'); const replacementIndices = deps.map(({ managerData, currentValue }) => - // TODO #7154 + // TODO #22198 content.slice(managerData!.fileReplacePosition).indexOf(currentValue!) ); expect(replacementIndices.every((idx) => idx === 0)).toBeTrue(); diff --git a/lib/modules/manager/gradle/parser/handlers.ts b/lib/modules/manager/gradle/parser/handlers.ts index 15501cadbecdc0975edd7b7cbc733b031a79b57f..b4d68412a62a459eaea0dbd1744c1772f6c588c4 100644 --- a/lib/modules/manager/gradle/parser/handlers.ts +++ b/lib/modules/manager/gradle/parser/handlers.ts @@ -370,7 +370,7 @@ export function handleApplyFrom(ctx: Ctx): Ctx { } const matchResult = parseGradle( - // TODO #7154 + // TODO #22198 ctx.fileContents[scriptFilePath]!, ctx.globalVars, scriptFilePath, diff --git a/lib/modules/manager/gradle/update.ts b/lib/modules/manager/gradle/update.ts index 27736ce1c632a7087a33a4d1ff216ed3dcf5fb8e..0839c2c7e20bb36ec181f86de2ca97dce6e26ed6 100644 --- a/lib/modules/manager/gradle/update.ts +++ b/lib/modules/manager/gradle/update.ts @@ -12,7 +12,7 @@ export function updateDependency({ logger.warn('gradle manager does not support replacement updates yet'); return null; } - // TODO check null (#7154) + // TODO check null (#22198) const offset = managerData!.fileReplacePosition; const leftPart = fileContent.slice(0, offset); const rightPart = fileContent.slice(offset); @@ -24,7 +24,7 @@ export function updateDependency({ return fileContent; } if (version === currentValue || upgrade.groupName) { - // TODO: types (#7154) + // TODO: types (#22198) return `${leftPart}${newValue}${restPart}`; } logger.debug({ depName, version, currentValue, newValue }, 'Unknown value'); diff --git a/lib/modules/manager/helmv3/utils.spec.ts b/lib/modules/manager/helmv3/utils.spec.ts index a83ce2d38ded8ec465745f485c5103fba7065dc6..fd207a6aa34747a0c900495244066eb76137b323 100644 --- a/lib/modules/manager/helmv3/utils.spec.ts +++ b/lib/modules/manager/helmv3/utils.spec.ts @@ -41,7 +41,7 @@ describe('modules/manager/helmv3/utils', () => { }); it('return repository parameter if repository is null', () => { - // TODO #7154 + // TODO #22198 const repository = resolveAlias(null as never, { anotherRepository: 'https://charts.helm.sh/stable', }); @@ -49,7 +49,7 @@ describe('modules/manager/helmv3/utils', () => { }); it('return repository parameter if repository is undefined', () => { - // TODO #7154 + // TODO #22198 const repository = resolveAlias(undefined as never, { anotherRepository: 'https://charts.helm.sh/stable', }); @@ -59,13 +59,13 @@ describe('modules/manager/helmv3/utils', () => { describe('.isAlias()', () => { it('return false if repository is null', () => { - // TODO #7154 + // TODO #22198 const repository = isAlias(null as never); expect(repository).toBeFalse(); }); it('return false if repository is undefined', () => { - // TODO #7154 + // TODO #22198 const repository = isAlias(undefined as never); expect(repository).toBeFalse(); }); diff --git a/lib/modules/manager/homebrew/extract.ts b/lib/modules/manager/homebrew/extract.ts index fb93484ba79766b4ba86366cd680acff5ffbae7c..9564de28ffa0bfe0c97eeefce5ee863e96e867fe 100644 --- a/lib/modules/manager/homebrew/extract.ts +++ b/lib/modules/manager/homebrew/extract.ts @@ -166,7 +166,7 @@ export function extractPackageFile(content: string): PackageFileContent | null { skipReason = 'invalid-sha256'; } const dep: PackageDependency = { - // TODO: types (#7154) + // TODO: types (#22198) depName: `${ownerName}/${repoName}`, managerData: { ownerName, repoName, sha256, url }, currentValue, diff --git a/lib/modules/manager/homebrew/update.ts b/lib/modules/manager/homebrew/update.ts index a43dd4f84569a4cc06003853337bbb69ec8bd1da..96c6be3d958424bb2371ab55c605e7e873ee3cac 100644 --- a/lib/modules/manager/homebrew/update.ts +++ b/lib/modules/manager/homebrew/update.ts @@ -1,4 +1,4 @@ -// TODO: types (#7154) +// TODO: types (#22198) import hasha from 'hasha'; import semver from 'semver'; import { logger } from '../../../logger'; diff --git a/lib/modules/manager/kustomize/extract.ts b/lib/modules/manager/kustomize/extract.ts index 079c7486340f12856a157b150ab066d30d6157a9..8c7e85f4dced64f5ebe1f8ab8021d0fe4380a7e8 100644 --- a/lib/modules/manager/kustomize/extract.ts +++ b/lib/modules/manager/kustomize/extract.ts @@ -110,7 +110,7 @@ export function extractImage(image: Image): PackageDependency | null { }; } - // TODO: types (#7154) + // TODO: types (#22198) const dep = splitImageParts(`${depName}:${newTag}`); return { ...dep, diff --git a/lib/modules/manager/maven/index.spec.ts b/lib/modules/manager/maven/index.spec.ts index 91fd88621e49ee2d4251ecc7ab207f3226b5e3a8..06de022c0b9d1a90cb7def90ea275fb967d79672 100644 --- a/lib/modules/manager/maven/index.spec.ts +++ b/lib/modules/manager/maven/index.spec.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { Fixtures } from '../../../../test/fixtures'; import { fs } from '../../../../test/util'; import type { PackageDependency, PackageFileContent } from '../types'; diff --git a/lib/modules/manager/maven/update.spec.ts b/lib/modules/manager/maven/update.spec.ts index 6e735018fe466824f1acb02af70143a58f0a535b..0e949fe284ef3f26df4b67977017b4c194e691c3 100644 --- a/lib/modules/manager/maven/update.spec.ts +++ b/lib/modules/manager/maven/update.spec.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { XmlDocument } from 'xmldoc'; import { Fixtures } from '../../../../test/fixtures'; import * as pomUpdater from '.'; diff --git a/lib/modules/manager/maven/update.ts b/lib/modules/manager/maven/update.ts index 77b6b90f35a9eeca5406487ac71bd4161c4582a2..23ebe518383b9b163c9b67de3e34995f19050a44 100644 --- a/lib/modules/manager/maven/update.ts +++ b/lib/modules/manager/maven/update.ts @@ -24,7 +24,7 @@ export function updateAtPosition( return fileContent; } if (version === currentValue || upgrade.groupName) { - // TODO: validate newValue (#7154) + // TODO: validate newValue (#22198) const replacedPart = versionPart.replace(version, newValue!); return leftPart + replacedPart + restPart; } diff --git a/lib/modules/manager/mix/artifacts.spec.ts b/lib/modules/manager/mix/artifacts.spec.ts index 63a5576810aec469ebbc8e9a090b6756c2c84cdb..c9c02f022decfcbb41fff644c9b57bae9797eeaa 100644 --- a/lib/modules/manager/mix/artifacts.spec.ts +++ b/lib/modules/manager/mix/artifacts.spec.ts @@ -215,7 +215,7 @@ describe('modules/manager/mix/artifacts', () => { expect(result).toMatchSnapshot(); expect(execSnapshots).toMatchSnapshot(); - // TODO #7154 + // TODO #22198 const [updateResult] = result!; expect(updateResult).toEqual({ file: { type: 'addition', path: 'mix.lock', contents: 'New mix.lock' }, diff --git a/lib/modules/manager/npm/extract/index.ts b/lib/modules/manager/npm/extract/index.ts index 61431443be10e5139fb545dba08cf4d97b48a4d0..82b769d775841fa476903a6a263e9d19d3b2bb5e 100644 --- a/lib/modules/manager/npm/extract/index.ts +++ b/lib/modules/manager/npm/extract/index.ts @@ -179,7 +179,7 @@ export async function extractPackageFile( | undefined; try { lernaJsonFile = getSiblingFileName(packageFile, 'lerna.json'); - // TODO #7154 + // TODO #22198 lernaJson = JSON.parse((await readLocalFile(lernaJsonFile, 'utf8'))!); } catch (err) /* istanbul ignore next */ { logger.debug({ err, lernaJsonFile }, 'Could not parse lerna.json'); @@ -447,7 +447,7 @@ export async function extractPackageFile( dep.managerData = { key }; } if (depType === 'overrides' && !is.string(val)) { - // TODO: fix type #7154 + // TODO: fix type #22198 deps.push( ...extractOverrideDepsRec( [depName], @@ -455,7 +455,7 @@ export async function extractPackageFile( ) ); } else { - // TODO: fix type #7154 + // TODO: fix type #22198 dep = { ...dep, ...extractDependency(depType, depName, val!) }; setNodeCommitTopic(dep); dep.prettyDepType = depTypes[depType]; diff --git a/lib/modules/manager/npm/extract/locked-versions.ts b/lib/modules/manager/npm/extract/locked-versions.ts index 6d86c69fa33126f9c4e56963c71f87e8f2f0ff9c..6195f9589739896923046b571fe006dd6d56f410 100644 --- a/lib/modules/manager/npm/extract/locked-versions.ts +++ b/lib/modules/manager/npm/extract/locked-versions.ts @@ -45,7 +45,7 @@ export async function getLockedVersions( for (const dep of packageFile.deps) { dep.lockedVersion = lockFileCache[yarnLock].lockedVersions?.[ - // TODO: types (#7154) + // TODO: types (#22198) `${dep.depName}@${dep.currentValue}` ]; if ( @@ -111,7 +111,7 @@ export async function getLockedVersions( } for (const dep of packageFile.deps) { - // TODO: types (#7154) + // TODO: types (#22198) dep.lockedVersion = semver.valid( lockFileCache[npmLock].lockedVersions?.[dep.depName!] )!; @@ -130,7 +130,7 @@ export async function getLockedVersions( for (const dep of packageFile.deps) { const { depName, depType } = dep; - // TODO: types (#7154) + // TODO: types (#22198) const lockedVersion = semver.valid( lockFileCache[pnpmShrinkwrap].lockedVersionsWithPath?.[relativeDir]?.[ depType! diff --git a/lib/modules/manager/npm/extract/pnpm.ts b/lib/modules/manager/npm/extract/pnpm.ts index fe0f0903b58263940358ce082797b7008fe0147a..fbfea660e96ef29cc34113291db51f6f70dfa4d6 100644 --- a/lib/modules/manager/npm/extract/pnpm.ts +++ b/lib/modules/manager/npm/extract/pnpm.ts @@ -23,7 +23,7 @@ export async function extractPnpmFilters( fileName: string ): Promise<string[] | undefined> { try { - // TODO #7154 + // TODO #22198 const contents = load((await readLocalFile(fileName, 'utf8'))!, { json: true, }) as PnpmWorkspaceFile; @@ -99,7 +99,7 @@ export async function detectPnpmWorkspaces( } // search for corresponding pnpm workspace - // TODO #7154 + // TODO #22198 const pnpmWorkspace = await findPnpmWorkspace(packageFile!); if (pnpmWorkspace === null) { continue; diff --git a/lib/modules/manager/npm/extract/yarn.ts b/lib/modules/manager/npm/extract/yarn.ts index 0465a9ce529ddf69d9baa9ae9ecfc38a4c679f19..4a0bf63484224dfa4150e236bc97a03b0c48ebf0 100644 --- a/lib/modules/manager/npm/extract/yarn.ts +++ b/lib/modules/manager/npm/extract/yarn.ts @@ -10,7 +10,7 @@ import { import type { LockFile } from './types'; export async function getYarnLock(filePath: string): Promise<LockFile> { - // TODO #7154 + // TODO #22198 const yarnLockRaw = (await readLocalFile(filePath, 'utf8'))!; try { const parsed = parseSyml(yarnLockRaw); diff --git a/lib/modules/manager/npm/post-update/index.spec.ts b/lib/modules/manager/npm/post-update/index.spec.ts index 341e42c9c36fc1a4e871a8471d99150df62975b2..c8b883d84f43d7607d1cf685cec7fc90057fd869 100644 --- a/lib/modules/manager/npm/post-update/index.spec.ts +++ b/lib/modules/manager/npm/post-update/index.spec.ts @@ -425,7 +425,7 @@ describe('modules/manager/npm/post-update/index', () => { it('works for npm', async () => { spyNpm.mockResolvedValueOnce({ error: false, lockFile: '{}' }); - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) fs.readLocalFile.mockImplementation((f): Promise<any> => { if (f === '.npmrc') { return Promise.resolve('# dummy'); diff --git a/lib/modules/manager/npm/post-update/index.ts b/lib/modules/manager/npm/post-update/index.ts index 3aeb61ed5d5de47a9acf9d8cc0cf274cf11a923e..7e78008887b2ecf3170166b3d76f2f6623612dd1 100644 --- a/lib/modules/manager/npm/post-update/index.ts +++ b/lib/modules/manager/npm/post-update/index.ts @@ -1,4 +1,4 @@ -// TODO: types (#7154) +// TODO: types (#22198) import is from '@sindresorhus/is'; import deepmerge from 'deepmerge'; import detectIndent from 'detect-indent'; @@ -100,7 +100,7 @@ export function determineLockFileDirs( return {}; } - // TODO #7154 + // TODO #22198 for (const p of config.updatedPackageFiles!) { logger.trace(`Checking ${String(p.path)} for lock files`); const packageFile = getPackageFile(p.path); @@ -154,7 +154,7 @@ export async function writeExistingFiles( if (!packageFile.managerData) { continue; } - // TODO #7154 + // TODO #22198 const basedir = upath.dirname(packageFile.packageFile!); const npmrc = packageFile.npmrc; const npmrcFilename = upath.join(basedir, '.npmrc'); @@ -203,7 +203,7 @@ export async function writeExistingFiles( upgrade.rangeStrategy === 'widen' && upgrade.managerData.npmLock === npmLock ) { - // TODO #7154 + // TODO #22198 widens.push(upgrade.depName!); } const { depName } = upgrade; @@ -230,7 +230,7 @@ export async function writeExistingFiles( npmLockParsed.dependencies ) { widens.forEach((depName) => { - // TODO #7154 + // TODO #22198 delete npmLockParsed.dependencies![depName]; }); } @@ -281,7 +281,7 @@ export async function writeUpdatedPackageFiles( supportedLockFiles.some((fileName) => packageFile.path.endsWith(fileName)) ) { logger.debug(`Writing lock file: ${packageFile.path}`); - // TODO #7154 + // TODO #22198 await writeLocalFile(packageFile.path, packageFile.contents!); continue; @@ -291,11 +291,11 @@ export async function writeUpdatedPackageFiles( } logger.debug(`Writing ${packageFile.path}`); const detectedIndent = - // TODO #7154 + // TODO #22198 detectIndent(packageFile.contents!.toString()).indent || ' '; - // TODO #7154 + // TODO #22198 const massagedFile = JSON.parse(packageFile.contents!.toString()); try { @@ -604,7 +604,7 @@ export async function getAdditionalFiles( updatedArtifacts.push({ type: 'addition', path: npmLock, - // TODO: can this be undefined? (#7154) + // TODO: can this be undefined? (#22198) contents: res.lockFile!.replace(tokenRe, ''), }); @@ -687,7 +687,7 @@ export async function getAdditionalFiles( updatedArtifacts.push({ type: 'addition', path: lockFileName, - // TODO #7154 + // TODO #22198 contents: res.lockFile!, }); await updateYarnOffline(lockFileDir, updatedArtifacts); @@ -705,7 +705,7 @@ export async function getAdditionalFiles( await resetNpmrcContent(lockFileDir, npmrcContent); // istanbul ignore if: needs test if (existingYarnrcYmlContent) { - // TODO #7154 + // TODO #22198 await writeLocalFile(yarnRcYmlFilename!, existingYarnrcYmlContent); } } @@ -758,7 +758,7 @@ export async function getAdditionalFiles( updatedArtifacts.push({ type: 'addition', path: pnpmShrinkwrap, - // TODO: can be undefined? (#7154) + // TODO: can be undefined? (#22198) contents: res.lockFile!, }); } @@ -770,7 +770,7 @@ export async function getAdditionalFiles( let lockFile: string; logger.debug(`Finding package.json for lerna location "${lernaJsonFile}"`); const lernaPackageFile = packageFiles.npm.find( - // TODO #7154 + // TODO #22198 (p) => getParentDir(p.packageFile!) === getParentDir(lernaJsonFile) ); // istanbul ignore if: not sure how to test @@ -856,13 +856,13 @@ export async function getAdditionalFiles( } logger.trace(`Checking for ${filename}`); const existingContent = await getFile( - // TODO #7154 + // TODO #22198 filename, config.reuseExistingBranch ? config.branchName : config.baseBranch ); if (existingContent) { logger.trace('Found lock file'); - // TODO #7154 + // TODO #22198 const lockFilePath = filename; logger.trace('Checking against ' + lockFilePath); try { @@ -882,7 +882,7 @@ export async function getAdditionalFiles( logger.debug('File is updated: ' + lockFilePath); updatedArtifacts.push({ type: 'addition', - // TODO #7154 + // TODO #22198 path: filename, contents: newContent, }); diff --git a/lib/modules/manager/npm/post-update/lerna.ts b/lib/modules/manager/npm/post-update/lerna.ts index 8c9f6c364a393ca6394b0465b0a3798b9e5e5df0..89e825e0daf69ede480c170acb092994fa1db095 100644 --- a/lib/modules/manager/npm/post-update/lerna.ts +++ b/lib/modules/manager/npm/post-update/lerna.ts @@ -30,7 +30,7 @@ export function getLernaConstraint( lazyPkgJson.dependencies?.lerna ?? lazyPkgJson.devDependencies?.lerna; if (!constraint || !semver.validRange(constraint)) { logger.warn( - // TODO: types (#7154) + // TODO: types (#22198) `Could not detect lerna version in ${lernaPackageFile.packageFile}, using 'latest'` ); return null; diff --git a/lib/modules/manager/npm/post-update/node-version.ts b/lib/modules/manager/npm/post-update/node-version.ts index 4fb88b4cf3f21da80503e30548f7e5fd46993f29..1852d2507d5fab9664d541323c12a971c0ac3062 100644 --- a/lib/modules/manager/npm/post-update/node-version.ts +++ b/lib/modules/manager/npm/post-update/node-version.ts @@ -9,7 +9,7 @@ import type { LazyPackageJson } from './utils'; async function getNodeFile(filename: string): Promise<string | null> { try { - // TODO #7154 + // TODO #22198 const constraint = (await readLocalFile(filename, 'utf8'))! .split(newlineRegex)[0] .replace(regEx(/^v/), ''); diff --git a/lib/modules/manager/npm/post-update/npm.ts b/lib/modules/manager/npm/post-update/npm.ts index d2587236de1bc44f3e3b06ce4a83642f6dd437af..00e08311f1a8eb1dc026d2db8ea321854530912c 100644 --- a/lib/modules/manager/npm/post-update/npm.ts +++ b/lib/modules/manager/npm/post-update/npm.ts @@ -1,4 +1,4 @@ -// TODO: types (#7154) +// TODO: types (#22198) import is from '@sindresorhus/is'; import upath from 'upath'; import { GlobalConfig } from '../../../../config/global'; @@ -164,7 +164,7 @@ export async function generateLockFile( } // Read the result - // TODO #7154 + // TODO #22198 lockFile = (await readLocalFile( upath.join(lockFileDir, filename), 'utf8' @@ -183,7 +183,7 @@ export async function generateLockFile( | 'dependencies' | 'optionalDependencies'; - // TODO #7154 + // TODO #22198 if ( lockFileParsed.packages?.['']?.[depType]?.[lockUpdate.packageName!] ) { diff --git a/lib/modules/manager/npm/post-update/rules.ts b/lib/modules/manager/npm/post-update/rules.ts index dc01a820da0914f624adbb32cbde91248d56dd7f..116704478acffd5231d5678209bfe50150914bd3 100644 --- a/lib/modules/manager/npm/post-update/rules.ts +++ b/lib/modules/manager/npm/post-update/rules.ts @@ -23,7 +23,7 @@ export function processHostRules(): HostRulesResult { uri = is.string(uri) && validateUrl(uri) ? uri.replace(regEx(/^https?:/), '') - : // TODO: types (#7154) + : // TODO: types (#22198) `//${uri}/`; if (hostRule.token) { const key = hostRule.authType === 'Basic' ? '_auth' : '_authToken'; diff --git a/lib/modules/manager/npm/post-update/yarn.ts b/lib/modules/manager/npm/post-update/yarn.ts index 5652c1f5f904639c1520bf0016d7fc07b994e9b3..99a1aa110ba82937fd932032fb1ae9c2b9112905 100644 --- a/lib/modules/manager/npm/post-update/yarn.ts +++ b/lib/modules/manager/npm/post-update/yarn.ts @@ -204,7 +204,7 @@ export async function generateLockFile( if (yarnUpdate && !isYarn1) { logger.debug('Updating Yarn binary'); - // TODO: types (#7154) + // TODO: types (#22198) commands.push(`yarn set version ${quote(yarnUpdate.newValue!)}`); } @@ -230,7 +230,7 @@ export async function generateLockFile( // `yarn up -R` updates to the latest release in each range commands.push( `yarn up -R ${lockUpdates - // TODO: types (#7154) + // TODO: types (#22198) .map((update) => `${update.depName!}`) .filter(uniqueStrings) .map(quote) diff --git a/lib/modules/manager/npm/range.ts b/lib/modules/manager/npm/range.ts index 91d8ceca3be5acee6ba718d2cde7026cc43da43a..fdca40b6784ab522f2781226faced31c54bee84c 100644 --- a/lib/modules/manager/npm/range.ts +++ b/lib/modules/manager/npm/range.ts @@ -5,7 +5,7 @@ import type { RangeConfig } from '../types'; export function getRangeStrategy(config: RangeConfig): RangeStrategy { const { depType, currentValue, rangeStrategy } = config; - // TODO #7154 + // TODO #22198 const isComplexRange = parseRange(currentValue!).length > 1; if (rangeStrategy === 'bump' && isComplexRange) { logger.debug( diff --git a/lib/modules/manager/npm/update/dependency/index.ts b/lib/modules/manager/npm/update/dependency/index.ts index 01448995db7abe9e89a47396d65848c8d2f048c4..dcd8c7bf7756e8e613ec364a37f1c824359dcdf9 100644 --- a/lib/modules/manager/npm/update/dependency/index.ts +++ b/lib/modules/manager/npm/update/dependency/index.ts @@ -47,7 +47,7 @@ function replaceAsString( } else if (depType === 'dependenciesMeta') { if (oldValue !== newValue) { parsedContents.dependenciesMeta = renameObjKey( - // TODO #7154 + // TODO #22198 parsedContents.dependenciesMeta!, oldValue, newValue @@ -117,7 +117,7 @@ export function updateDependency({ logger.debug('Updating package.json git digest'); newValue = upgrade.currentRawValue.replace( upgrade.currentDigest, - // TODO #7154 + // TODO #22198 upgrade.newDigest!.substring(0, upgrade.currentDigest.length) ); @@ -130,10 +130,10 @@ export function updateDependency({ } } if (upgrade.npmPackageAlias) { - // TODO: types (#7154) + // TODO: types (#22198) newValue = `npm:${upgrade.packageName}@${newValue}`; } - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`npm.updateDependency(): ${depType}.${depName} = ${newValue}`); try { const parsedContents: NpmPackage = JSON.parse(fileContent); @@ -142,7 +142,7 @@ export function updateDependency({ let oldVersion: string | undefined; if (depType === 'packageManager') { oldVersion = parsedContents[depType]; - // TODO: types (#7154) + // TODO: types (#22198) newValue = `${depName}@${newValue}`; } else if (isOverrideObject(upgrade)) { overrideDepParents = managerData?.parents; @@ -166,7 +166,7 @@ export function updateDependency({ return fileContent; } - // TODO #7154 + // TODO #22198 let newFileContent = replaceAsString( parsedContents, fileContent, @@ -221,9 +221,9 @@ export function updateDependency({ newFileContent, 'resolutions', depKey, - // TODO #7154 + // TODO #22198 parsedContents.resolutions[depKey]!, - // TODO #7154 + // TODO #22198 newValue! ); if (upgrade.newName) { @@ -251,7 +251,7 @@ export function updateDependency({ 'dependenciesMeta', depName, depKey, - // TODO: types (#7154) + // TODO: types (#22198) `${depName}@${newValue}` ); } diff --git a/lib/modules/manager/npm/update/locked-dependency/package-lock/index.ts b/lib/modules/manager/npm/update/locked-dependency/package-lock/index.ts index 9e5afe5a644cdf4f5862e22eaefa222e6a255e57..0bd1e9a04ba28f5cacf4546a481de5003ec33176 100644 --- a/lib/modules/manager/npm/update/locked-dependency/package-lock/index.ts +++ b/lib/modules/manager/npm/update/locked-dependency/package-lock/index.ts @@ -30,11 +30,11 @@ export async function updateLockedDependency( try { let packageJson: PackageJson; let packageLockJson: PackageLockOrEntry; - // TODO #7154 + // TODO #22198 const detectedIndent = detectIndent(lockFileContent!).indent || ' '; let newPackageJsonContent: string | null | undefined; try { - // TODO #7154 + // TODO #22198 packageJson = JSON.parse(packageFileContent!); packageLockJson = JSON.parse(lockFileContent!); } catch (err) { @@ -68,7 +68,7 @@ export async function updateLockedDependency( } else { if (lockfileVersion !== 1) { logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `Found lockfileVersion ${packageLockJson.lockfileVersion!}` ); status = 'update-failed'; @@ -150,7 +150,7 @@ export async function updateLockedDependency( // Parent dependency is compatible with the new version we want logger.debug( `${depName} can be updated to ${newVersion} in-range with matching constraint "${constraint}" in ${ - // TODO: types (#7154) + // TODO: types (#22198) parentDepName ? `${parentDepName}@${parentVersion!}` : packageFile }` ); @@ -202,7 +202,7 @@ export async function updateLockedDependency( newVersion, })!; newPackageJsonContent = updateDependency({ - // TODO #7154 + // TODO #22198 fileContent: packageFileContent!, upgrade: { depName, depType, newValue }, }); @@ -234,7 +234,7 @@ export async function updateLockedDependency( // istanbul ignore if: hard to test due to recursion if (!parentUpdateResult.files) { logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `Update of ${depName} to ${newVersion} impossible due to failed update of parent ${parentUpdate.depName} to ${parentUpdate.newVersion}` ); return { status: 'update-failed' }; diff --git a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/index.ts b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/index.ts index 5badee7fc5c7eec893d852efa83bc49c7707b70d..6aba66c95c639bc518ec7994c335acf042576cf5 100644 --- a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/index.ts +++ b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/index.ts @@ -16,7 +16,7 @@ export function updateLockedDependency( ); let yarnLock: YarnLock; try { - // TODO #7154 + // TODO #22198 yarnLock = parseSyml(lockFileContent!); } catch (err) { logger.warn({ err }, 'Failed to parse yarn files'); @@ -64,7 +64,7 @@ export function updateLockedDependency( ); return { status: 'update-failed' }; } - // TODO #7154 + // TODO #22198 let newLockFileContent = lockFileContent!; for (const dependency of updateLockedDeps) { const { depName, constraint, newVersion } = dependency; diff --git a/lib/modules/manager/npm/update/package-version/index.ts b/lib/modules/manager/npm/update/package-version/index.ts index ed0a4a376e0412ba12272452706f754637a8c519..3e72b93c5d1cd86a060da341754221175ccf4e39 100644 --- a/lib/modules/manager/npm/update/package-version/index.ts +++ b/lib/modules/manager/npm/update/package-version/index.ts @@ -20,7 +20,7 @@ export function bumpPackageVersion( { bumpVersion, currentValue }, 'Checking if we should bump package.json version' ); - // TODO: types (#7154) + // TODO: types (#22198) let newPjVersion: string | null; let bumpedContent = content; @@ -40,7 +40,7 @@ export function bumpPackageVersion( } else { newPjVersion = semver.inc(currentValue, bumpVersion); } - // TODO: fix types (#7154) + // TODO: fix types (#22198) logger.debug(`newPjVersion: ${newPjVersion!}`); bumpedContent = content.replace( regEx(`(?<version>"version":\\s*")[^"]*`), diff --git a/lib/modules/manager/npm/utils.spec.ts b/lib/modules/manager/npm/utils.spec.ts index 60c7752659ab072e4df95d2ed26a97497ca0e5ff..039b520e8c641a1a04fec0e7fffe82b2cef325f2 100644 --- a/lib/modules/manager/npm/utils.spec.ts +++ b/lib/modules/manager/npm/utils.spec.ts @@ -57,7 +57,7 @@ describe('modules/manager/npm/utils', () => { it('adds trailing newline to match npms behaviour and avoid diffs', () => { const lockFile = Fixtures.get('lockfile-parsing/package-lock.json'); const { detectedIndent, lockFileParsed } = parseLockFile(lockFile); - // TODO #7154 + // TODO #22198 const lockFileComposed = composeLockFile(lockFileParsed!, detectedIndent); expect(lockFileComposed).toBe(lockFile); }); diff --git a/lib/modules/manager/nuget/util.ts b/lib/modules/manager/nuget/util.ts index b9463b118d7a6de680f9ef74a4c5ee3d622dc0d3..9309f6813649c01c667cc9a8f769b6b38ec46737 100644 --- a/lib/modules/manager/nuget/util.ts +++ b/lib/modules/manager/nuget/util.ts @@ -10,7 +10,7 @@ export async function readFileAsXmlDocument( file: string ): Promise<XmlDocument | undefined> { try { - // TODO #7154 + // TODO #22198 const doc = new XmlDocument((await readLocalFile(file, 'utf8'))!); // don't return empty documents return doc?.firstChild ? doc : undefined; diff --git a/lib/modules/manager/pip_setup/extract.ts b/lib/modules/manager/pip_setup/extract.ts index d27a391f401e0ca0ea5097f5a95750915a852159..f9c99eabff32b4c44856df6d82ddaf2eb1079771 100644 --- a/lib/modules/manager/pip_setup/extract.ts +++ b/lib/modules/manager/pip_setup/extract.ts @@ -40,7 +40,7 @@ function depStringHandler( ): Context { const depStr = token.value; const match = extractRegex.exec(depStr); - // TODO #7154 + // TODO #22198 const { depName, currentValue } = match!.groups!; const dep: PackageDependency<ManagerData> = { diff --git a/lib/modules/manager/pipenv/artifacts.spec.ts b/lib/modules/manager/pipenv/artifacts.spec.ts index 0cea65686f7720c3ca74cec159f15a0441ee1038..97659619601515ead83abd6985fa3de471d7d452 100644 --- a/lib/modules/manager/pipenv/artifacts.spec.ts +++ b/lib/modules/manager/pipenv/artifacts.spec.ts @@ -46,7 +46,7 @@ const config: UpdateArtifactsConfig = {}; const lockMaintenanceConfig = { ...config, isLockFileMaintenance: true }; describe('modules/manager/pipenv/artifacts', () => { - // TODO: #7154 + // TODO: #22198 let pipFileLock: any; beforeEach(() => { diff --git a/lib/modules/manager/pipenv/extract.ts b/lib/modules/manager/pipenv/extract.ts index 6ccc6612152687b7dbe5b6eeb75b44793f5d7681..a48f4da3fac3a3a05bf9a663616309779aeb4403 100644 --- a/lib/modules/manager/pipenv/extract.ts +++ b/lib/modules/manager/pipenv/extract.ts @@ -82,7 +82,7 @@ function extractFromSection( dep.datasource = PypiDatasource.id; } if (nestedVersion) { - // TODO #7154 + // TODO #22198 dep.managerData!.nestedVersion = nestedVersion; } if (requirements.index) { diff --git a/lib/modules/manager/poetry/extract.ts b/lib/modules/manager/poetry/extract.ts index 98fe897162ecefdcb4158623995ed0d3a5f18fed..86e1a70227bb163428a57cf2c1c6be8633903c7c 100644 --- a/lib/modules/manager/poetry/extract.ts +++ b/lib/modules/manager/poetry/extract.ts @@ -163,7 +163,7 @@ export async function extractPackageFile( // handle the lockfile const lockfileName = getSiblingFileName(packageFile, 'poetry.lock'); - // TODO #7154 + // TODO #22198 const lockContents = (await readLocalFile(lockfileName, 'utf8'))!; const lockfileMapping = extractLockFileEntries(lockContents); diff --git a/lib/modules/manager/pre-commit/extract.spec.ts b/lib/modules/manager/pre-commit/extract.spec.ts index 1939f50b1cb11cc88ddd97b504b73ae523ca2f70..73d8d7d8d104a0b027fbafca91e366128b4ccebb 100644 --- a/lib/modules/manager/pre-commit/extract.spec.ts +++ b/lib/modules/manager/pre-commit/extract.spec.ts @@ -37,7 +37,7 @@ describe('modules/manager/pre-commit/extract', () => { }); it('returns null for no file content', () => { - // TODO #7154 + // TODO #22198 const result = extractPackageFile(null as never, filename); expect(result).toBeNull(); }); diff --git a/lib/modules/manager/terraform/base.ts b/lib/modules/manager/terraform/base.ts index e9bb8a67dd01bd74870760926ccdf6fa7f4a156d..242a6ca617db48c4bd8190179fcb81bebfd4ca6f 100644 --- a/lib/modules/manager/terraform/base.ts +++ b/lib/modules/manager/terraform/base.ts @@ -40,7 +40,7 @@ export abstract class TerraformProviderExtractor extends DependencyExtractor { dep.datasource = TerraformProviderDatasource.id; if (is.nonEmptyString(dep.managerData?.source)) { - // TODO #7154 + // TODO #22198 const source = this.sourceExtractionRegex.exec(dep.managerData!.source); if (!source?.groups) { dep.skipReason = 'unsupported-url'; diff --git a/lib/modules/manager/terraform/extractors/others/modules.ts b/lib/modules/manager/terraform/extractors/others/modules.ts index a80351f126306e53a6e7be3b95ea6d726fdc9e48..012add6e899a5fbb8e09189698809fe6d0ef20c7 100644 --- a/lib/modules/manager/terraform/extractors/others/modules.ts +++ b/lib/modules/manager/terraform/extractors/others/modules.ts @@ -59,7 +59,7 @@ export class ModuleExtractor extends DependencyExtractor { } private analyseTerraformModule(dep: PackageDependency): PackageDependency { - // TODO #7154 + // TODO #22198 const source = dep.managerData!.source as string; const githubRefMatch = githubRefMatchRegex.exec(source); const bitbucketRefMatch = bitbucketRefMatchRegex.exec(source); diff --git a/lib/modules/manager/terraform/lockfile/index.ts b/lib/modules/manager/terraform/lockfile/index.ts index e036638d2621b651f7df14d3a9972d3e31c1cbc3..36cc975097dde674877b46c7cdaa4518d2efd684 100644 --- a/lib/modules/manager/terraform/lockfile/index.ts +++ b/lib/modules/manager/terraform/lockfile/index.ts @@ -95,7 +95,7 @@ export async function updateArtifacts({ updates.push(...maintenanceUpdates); } else { const providerDeps = updatedDeps.filter((dep) => - // TODO #7154 + // TODO #22198 ['provider', 'required_provider'].includes(dep.depType!) ); for (const dep of providerDeps) { @@ -114,7 +114,7 @@ export async function updateArtifacts({ continue; } const update: ProviderLockUpdate = { - // TODO #7154 + // TODO #22198 newVersion: newVersion!, newConstraint: newConstraint!, newHashes: diff --git a/lib/modules/manager/terraform/lockfile/update-locked.ts b/lib/modules/manager/terraform/lockfile/update-locked.ts index 6a00d7f6b57a150158c59a455546b5e377fc72fc..5d0988dab9e408f453fa1279eae56514ba513f7f 100644 --- a/lib/modules/manager/terraform/lockfile/update-locked.ts +++ b/lib/modules/manager/terraform/lockfile/update-locked.ts @@ -7,7 +7,7 @@ export function updateLockedDependency( ): UpdateLockedResult { const { depName, currentVersion, newVersion, lockFile, lockFileContent } = config; - // TODO: fix types (#7154) + // TODO: fix types (#22198) logger.debug( `terraform.updateLockedDependency: ${depName}@${currentVersion} -> ${newVersion} [${lockFile}]` ); diff --git a/lib/modules/manager/terraform/lockfile/util.ts b/lib/modules/manager/terraform/lockfile/util.ts index 22c78f1bb773d9a849fd4ebf286306830317a57a..5054f950ebb59b35d3546b6cca2f565316382839 100644 --- a/lib/modules/manager/terraform/lockfile/util.ts +++ b/lib/modules/manager/terraform/lockfile/util.ts @@ -139,7 +139,7 @@ export function writeLockUpdates( const sections: string[][] = []; // sort updates in order of appearance in the lockfile - // TODO #7154 + // TODO #22198 updates.sort( (a, b) => a.lineNumbers.block!.start - b.lineNumbers.block!.start ); @@ -148,18 +148,18 @@ export function writeLockUpdates( let startWhitespace: number | undefined; if (index > 0) { // get end of the - // TODO #7154 + // TODO #22198 startWhitespace = array[index - 1].lineNumbers.block!.end; } const leadingNonRelevantLines = lines.slice( startWhitespace, - // TODO #7154 + // TODO #22198 update.lineNumbers.block!.start ); sections.push(leadingNonRelevantLines); const providerBlockLines = lines.slice( - // TODO #7154 + // TODO #22198 update.lineNumbers.block!.start, update.lineNumbers.block!.end ); @@ -199,7 +199,7 @@ export function writeLockUpdates( (value) => `${hashLinePrefix}${value}${hashLineSuffix}` ); newProviderBlockLines.splice( - // TODO #7154 + // TODO #22198 update.lineNumbers.hashes.start!, 0, ...hashesWithWhitespace diff --git a/lib/modules/manager/terraform/util.ts b/lib/modules/manager/terraform/util.ts index a1644e3057217c14afd3e43cf328999dc441cf71..7400949c66c2cfca247b8311c6b63290aa530f34 100644 --- a/lib/modules/manager/terraform/util.ts +++ b/lib/modules/manager/terraform/util.ts @@ -23,13 +23,13 @@ export function massageProviderLookupName(dep: PackageDependency): void { dep.packageName = dep.depName; } - // TODO #7154 + // TODO #22198 if (!dep.packageName!.includes('/')) { dep.packageName = `hashicorp/${dep.packageName!}`; } // handle cases like `Telmate/proxmox` - // TODO #7154 + // TODO #22198 dep.packageName = dep.packageName!.toLowerCase(); } diff --git a/lib/modules/manager/terragrunt/extract.ts b/lib/modules/manager/terragrunt/extract.ts index 6b919a21e1d3fef182c63505262d7a6329294efd..3f3e704b42f77bb759ce58664ad5e4484a39b9ef 100644 --- a/lib/modules/manager/terragrunt/extract.ts +++ b/lib/modules/manager/terragrunt/extract.ts @@ -56,7 +56,7 @@ export function extractPackageFile( logger.debug({ err, packageFile }, 'Error extracting terragrunt plugins'); } deps.forEach((dep) => { - // TODO #7154 + // TODO #22198 switch (dep.managerData!.terragruntDependencyType) { case 'terraform': analyseTerragruntModule(dep); diff --git a/lib/modules/manager/terragrunt/modules.ts b/lib/modules/manager/terragrunt/modules.ts index 43a0987735f3efb9c8fac02b7e7e2326bed05b08..6b6004a1628c8d6073c4940ef12e37f088ebcc17 100644 --- a/lib/modules/manager/terragrunt/modules.ts +++ b/lib/modules/manager/terragrunt/modules.ts @@ -22,7 +22,7 @@ export function extractTerragruntModule( const moduleName = 'terragrunt'; const result = extractTerragruntProvider(startingLine, lines, moduleName); result.dependencies.forEach((dep) => { - // TODO #7154 + // TODO #22198 dep.managerData!.terragruntDependencyType = 'terraform'; }); return result; @@ -31,7 +31,7 @@ export function extractTerragruntModule( export function analyseTerragruntModule( dep: PackageDependency<TerraformManagerData> ): void { - // TODO #7154 + // TODO #22198 const source = dep.managerData!.source; const githubRefMatch = githubRefMatchRegex.exec(source ?? ''); const gitTagsRefMatch = gitTagsRefMatchRegex.exec(source ?? ''); diff --git a/lib/modules/platform/azure/azure-got-wrapper.ts b/lib/modules/platform/azure/azure-got-wrapper.ts index 67c2ab51b6b21d2f6a25ec86410bbd246dd61118..d9628cba856daeb4fce50305ffb1c67f4b3ec19f 100644 --- a/lib/modules/platform/azure/azure-got-wrapper.ts +++ b/lib/modules/platform/azure/azure-got-wrapper.ts @@ -14,7 +14,7 @@ function getAuthenticationHandler(config: HostRule): IRequestHandler { if (!config.token && config.username && config.password) { return getBasicHandler(config.username, config.password, true); } - // TODO: token can be undefined here (#7154) + // TODO: token can be undefined here (#22198) return getHandlerFromToken(config.token!, true); } diff --git a/lib/modules/platform/azure/azure-helper.ts b/lib/modules/platform/azure/azure-helper.ts index 491bb1bf54d7b43cb94332d467ba9c4eb888948c..55233bc61d492c42ea4d0d4963038bb23cdc8308 100644 --- a/lib/modules/platform/azure/azure-helper.ts +++ b/lib/modules/platform/azure/azure-helper.ts @@ -50,7 +50,7 @@ export async function getAzureBranchObj( }; } return { - // TODO: fix undefined (#7154) + // TODO: fix undefined (#22198) name: getNewBranchName(branchName)!, oldObjectId: refs[0].objectId!, }; @@ -129,7 +129,7 @@ export async function getMergeMethod( const isRelevantScope = (scope: Scope): boolean => { if ( scope.matchKind === 'DefaultBranch' && - // TODO: types (#7154) + // TODO: types (#22198) (!branchRef || branchRef === `refs/heads/${defaultBranch!}`) ) { return true; @@ -140,7 +140,7 @@ export async function getMergeMethod( if (!branchRef) { return true; } - // TODO #7154 + // TODO #22198 return scope.matchKind === 'Exact' ? scope.refName === branchRef : branchRef.startsWith(scope.refName!); @@ -155,7 +155,7 @@ export async function getMergeMethod( .map((p) => p.settings)[0]; logger.trace( - // TODO: types (#7154) + // TODO: types (#22198) `getMergeMethod(${repoId}, ${project}, ${branchRef!}) determining mergeMethod from matched policy:\n${JSON.stringify( policyConfigurations, null, diff --git a/lib/modules/platform/azure/index.spec.ts b/lib/modules/platform/azure/index.spec.ts index 28c9879836b6d18dc7bfb2a69c85ac1016c85bd9..29405f450156d3a1b8dcf8942942579dba7cd4fa 100644 --- a/lib/modules/platform/azure/index.spec.ts +++ b/lib/modules/platform/azure/index.spec.ts @@ -1100,7 +1100,7 @@ describe('modules/platform/azure/index', () => { }); describe('ensureCommentRemoval', () => { - // TODO: fix types #7154 + // TODO: fix types #22198 let gitApiMock: any; beforeEach(() => { diff --git a/lib/modules/platform/azure/index.ts b/lib/modules/platform/azure/index.ts index 6080912f68a6d8c8f92e75dab6f27dd60f9cce56..7bad0dd1d2b8e7a8f01d80aceb278662192ae0ac 100644 --- a/lib/modules/platform/azure/index.ts +++ b/lib/modules/platform/azure/index.ts @@ -189,7 +189,7 @@ export async function initRepo({ logger.debug('Repo is empty'); throw new Error(REPOSITORY_EMPTY); } - // TODO #7154 + // TODO #22198 config.repoId = repo.id!; config.project = repo.project!.name!; @@ -206,7 +206,7 @@ export async function initRepo({ hostType: defaults.hostType, url: defaults.endpoint, }); - // TODO: types (#7154) + // TODO: types (#22198) const manualUrl = `${defaults.endpoint!}${encodeURIComponent( projectName )}/_git/${encodeURIComponent(repoName)}`; @@ -334,12 +334,12 @@ async function getStatusCheck(branchName: string): Promise<GitStatus[]> { const branch = await azureApiGit.getBranch( config.repoId, - // TODO: fix undefined (#7154) + // TODO: fix undefined (#22198) getBranchNameWithoutRefsheadsPrefix(branchName)! ); // only grab the latest statuses, it will group any by context return azureApiGit.getStatuses( - // TODO #7154 + // TODO #22198 branch.commit!.commitId!, config.repoId, undefined, @@ -365,7 +365,7 @@ export async function getBranchStatusCheck( const res = await getStatusCheck(branchName); for (const check of res) { if (getGitStatusContextCombinedName(check.context) === context) { - // TODO #7154 + // TODO #22198 return azureToRenovateStatusMapping[check.state!] ?? 'yellow'; } } @@ -463,7 +463,7 @@ export async function createPr({ pr = await azureApiGit.updatePullRequest( { autoCompleteSetBy: { - // TODO #7154 + // TODO #22198 id: pr.createdBy!.id, }, completionOptions: { @@ -473,7 +473,7 @@ export async function createPr({ }, }, config.repoId, - // TODO #7154 + // TODO #22198 pr.pullRequestId! ); } @@ -486,7 +486,7 @@ export async function createPr({ isRequired: false, }, config.repoId, - // TODO #7154 + // TODO #22198 pr.pullRequestId!, pr.createdBy!.id! ); @@ -498,7 +498,7 @@ export async function createPr({ name: label, }, config.repoId, - // TODO #7154 + // TODO #22198 pr.pullRequestId! ) ) @@ -550,7 +550,7 @@ export async function updatePr({ isRequired: false, }, config.repoId, - // TODO #7154 + // TODO #22198 pr.pullRequestId!, pr.createdBy!.id! ); @@ -606,7 +606,7 @@ export async function ensureComment({ config.repoId, number, threadIdFound, - // TODO #7154 + // TODO #22198 commentIdFound! ); logger.debug( @@ -694,7 +694,7 @@ export async function setBranchStatus({ }; await azureApiGit.createCommitStatus( statusToCreate, - // TODO #7154 + // TODO #22198 branch.commit!.commitId!, config.repoId ); @@ -725,7 +725,7 @@ export async function mergePr({ `Updating PR ${pullRequestId} to status ${PullRequestStatus.Completed} (${ PullRequestStatus[PullRequestStatus.Completed] }) with lastMergeSourceCommit ${ - // TODO: types (#7154) + // TODO: types (#22198) pr.lastMergeSourceCommit?.commitId } using mergeStrategy ${mergeStrategy} (${ GitPullRequestMergeStrategy[mergeStrategy] @@ -759,7 +759,7 @@ export async function mergePr({ { pullRequestId, status: pr.status }, `Expected PR to have status ${ PullRequestStatus[PullRequestStatus.Completed] - // TODO #7154 + // TODO #22198 }. However, it is ${PullRequestStatus[pr.status!]}.` ); } @@ -816,13 +816,13 @@ async function getUserIds(users: string[]): Promise<User[]> { const repo = repos.filter((c) => c.id === config.repoId)[0]; const requiredReviewerPrefix = 'required:'; - // TODO #7154 + // TODO #22198 const teams = await azureApiCore.getTeams(repo.project!.id!); const members = await Promise.all( teams.map( async (t) => await azureApiCore.getTeamMembersWithExtendedProperties( - // TODO #7154 + // TODO #22198 repo.project!.id!, t.id! ) @@ -844,7 +844,7 @@ async function getUserIds(users: string[]): Promise<User[]> { reviewer.toLowerCase() === m.identity?.uniqueName?.toLowerCase() ) { if (ids.filter((c) => c.id === m.identity?.id).length === 0) { - // TODO #7154 + // TODO #22198 ids.push({ id: m.identity.id!, name: reviewer, @@ -866,7 +866,7 @@ async function getUserIds(users: string[]): Promise<User[]> { } if (reviewer.toLowerCase() === t.name?.toLowerCase()) { if (ids.filter((c) => c.id === t.id).length === 0) { - // TODO #7154 + // TODO #22198 ids.push({ id: t.id!, name: reviewer, isRequired }); } } diff --git a/lib/modules/platform/azure/util.spec.ts b/lib/modules/platform/azure/util.spec.ts index b89395683ca68383766457356f7b511984449e71..38755391de04b60679fd603e0310613726186dfe 100644 --- a/lib/modules/platform/azure/util.spec.ts +++ b/lib/modules/platform/azure/util.spec.ts @@ -222,7 +222,7 @@ describe('modules/platform/azure/util', () => { }); it('throws when repo name is invalid', () => { - // TODO: better error handling #7154 + // TODO: better error handling #22198 expect(() => getRepoByName(undefined as never, [])).toThrow(); expect(() => getRepoByName(null as never, [])).toThrow(); expect(() => getRepoByName('foo/bar/baz', [])).toThrow(); diff --git a/lib/modules/platform/azure/util.ts b/lib/modules/platform/azure/util.ts index 4e15b5454fcf864154206a92f072e248662e49c2..de52dd46cc9bc17ea8be05fff2799d43761a191e 100644 --- a/lib/modules/platform/azure/util.ts +++ b/lib/modules/platform/azure/util.ts @@ -19,7 +19,7 @@ export function getGitStatusContextCombinedName( return undefined; } const combinedName = `${context.genre ? `${context.genre}/` : ''}${ - // TODO: types (#7154) + // TODO: types (#22198) context.name! }`; logger.trace(`Got combined context name of ${combinedName}`); @@ -95,7 +95,7 @@ export function getRenovatePRFormat(azurePr: GitPullRequest): AzurePr { const createdAt = azurePr.creationDate?.toISOString(); - // TODO #7154 + // TODO #22198 const state = stateMap[azurePr.status!] ?? 'open'; const sourceRefName = azurePr.sourceRefName; diff --git a/lib/modules/platform/bitbucket-server/index.ts b/lib/modules/platform/bitbucket-server/index.ts index f82d891865b292bd157ba88fcb5fe65c459ff73f..eea3911b79d835993dcc6e6e2b23865ff3e17357 100644 --- a/lib/modules/platform/bitbucket-server/index.ts +++ b/lib/modules/platform/bitbucket-server/index.ts @@ -145,7 +145,7 @@ export async function getJsonFile( repoName?: string, branchOrTag?: string ): Promise<any> { - // TODO #7154 + // TODO #22198 const raw = (await getRawFile(fileName, repoName, branchOrTag)) as string; return JSON5.parse(raw); } @@ -193,7 +193,7 @@ export async function initRepo({ const url = utils.getRepoGitUrl( config.repositorySlug, - // TODO #7154 + // TODO #22198 defaults.endpoint!, gitUrl, info, @@ -265,7 +265,7 @@ export async function getPr( ...utils.prInfo(res.body), reviewers: res.body.reviewers.map((r) => r.user.name), }; - // TODO #7154 + // TODO #22198 pr.version = updatePrVersion(pr.number, pr.version!); return pr; @@ -362,7 +362,7 @@ async function getStatus( return ( await bitbucketServerHttp.getJson<utils.BitbucketCommitStatus>( - // TODO: types (#7154) + // TODO: types (#22198) `./rest/build-status/1.0/commits/stats/${branchCommit!}`, { memCache } ) @@ -407,7 +407,7 @@ function getStatusCheck( const branchCommit = git.getBranchCommit(branchName); return utils.accumulateValues( - // TODO: types (#7154) + // TODO: types (#22198) `./rest/build-status/1.0/commits/${branchCommit!}`, 'get', { memCache } @@ -481,7 +481,7 @@ export async function setBranchStatus({ } await bitbucketServerHttp.postJson( - // TODO: types (#7154) + // TODO: types (#22198) `./rest/build-status/1.0/commits/${branchCommit!}`, { body } ); @@ -564,7 +564,7 @@ export async function addReviewers( throw new Error(REPOSITORY_NOT_FOUND); } - // TODO: can `reviewers` be undefined? (#7154) + // TODO: can `reviewers` be undefined? (#22198) const reviewersSet = new Set([...pr.reviewers!, ...reviewers]); await bitbucketServerHttp.putJson( @@ -834,7 +834,7 @@ export async function createPr({ ...utils.prInfo(prInfoRes.body), }; - // TODO #7154 + // TODO #22198 updatePrVersion(pr.number, pr.version!); // istanbul ignore if @@ -889,7 +889,7 @@ export async function updatePr({ updatePrVersion(prNo, updatedPr.version); const currentState = updatedPr.state; - // TODO #7154 + // TODO #22198 const newState = { ['open']: 'OPEN', ['closed']: 'DECLINED', @@ -946,7 +946,7 @@ export async function mergePr({ throw Object.assign(new Error(REPOSITORY_NOT_FOUND), { statusCode: 404 }); } const { body } = await bitbucketServerHttp.postJson<{ version: number }>( - // TODO: types (#7154) + // TODO: types (#22198) `./rest/api/1.0/projects/${config.projectKey}/repos/${ config.repositorySlug }/pull-requests/${prNo}/merge?version=${pr.version!}` diff --git a/lib/modules/platform/bitbucket-server/utils.ts b/lib/modules/platform/bitbucket-server/utils.ts index 8d793d93e23efae5e6752d11628ec5a9f516866f..c083785d13bc2ffe1f86d0a091ee984f63ae54ee 100644 --- a/lib/modules/platform/bitbucket-server/utils.ts +++ b/lib/modules/platform/bitbucket-server/utils.ts @@ -157,7 +157,7 @@ function generateUrlFromEndpoint( const url = new URL(defaultEndpoint); const generatedUrl = git.getUrl({ protocol: url.protocol as GitProtocol, - // TODO: types (#7154) + // TODO: types (#22198) auth: `${opts.username}:${opts.password}`, host: `${url.host}${url.pathname}${ url.pathname.endsWith('/') ? '' : /* istanbul ignore next */ '/' @@ -174,7 +174,7 @@ function injectAuth(url: string, opts: HostRule): string { logger.debug(`Invalid url: ${url}`); throw new Error(CONFIG_GIT_URL_UNAVAILABLE); } - // TODO: null checks (#7154) + // TODO: null checks (#22198) repoUrl.username = opts.username!; repoUrl.password = opts.password!; return repoUrl.toString(); diff --git a/lib/modules/platform/bitbucket/index.ts b/lib/modules/platform/bitbucket/index.ts index f57c625b029e812a7426aeb9b970ec65b0fa677a..b0343723d6edc38f781e47ff546db7d77a9411d6 100644 --- a/lib/modules/platform/bitbucket/index.ts +++ b/lib/modules/platform/bitbucket/index.ts @@ -157,7 +157,7 @@ export async function getJsonFile( repoName?: string, branchOrTag?: string ): Promise<any> { - // TODO #7154 + // TODO #22198 const raw = (await getRawFile(fileName, repoName, branchOrTag)) as string; return JSON5.parse(raw); } @@ -228,7 +228,7 @@ export async function initRepo({ // Converts API hostnames to their respective HTTP git hosts: // `api.bitbucket.org` to `bitbucket.org` // `api-staging.<host>` to `staging.<host>` - // TODO #7154 + // TODO #22198 const hostnameWithoutApiPrefix = regEx(/api[.|-](.+)/).exec(hostname!)?.[1]; const auth = opts.token @@ -464,7 +464,7 @@ export async function getBranchStatusCheck( ): Promise<BranchStatus | null> { const statuses = await getStatus(branchName); const bbState = statuses.find((status) => status.key === context)?.state; - // TODO #7154 + // TODO #22198 return bbToRenovateStatusMapping[bbState!] || null; } @@ -691,7 +691,7 @@ export async function addReviewers( ): Promise<void> { logger.debug(`Adding reviewers '${reviewers.join(', ')}' to #${prId}`); - // TODO #7154 + // TODO #22198 const { title } = (await getPr(prId))!; const body = { diff --git a/lib/modules/platform/gitea/index.ts b/lib/modules/platform/gitea/index.ts index a07fccbbed4ebca43614f5e35b8af8ea199c4d27..55ce4fefafb16309c5b6f5308e4467695c8b563c 100644 --- a/lib/modules/platform/gitea/index.ts +++ b/lib/modules/platform/gitea/index.ts @@ -89,7 +89,7 @@ function toRenovateIssue(data: Issue): Issue { }; } -// TODO #7154 +// TODO #22198 function toRenovatePR(data: PR): Pr | null { if (!data) { return null; @@ -255,7 +255,7 @@ const platform: Platform = { repoName?: string, branchOrTag?: string ): Promise<any> { - // TODO #7154 + // TODO #22198 const raw = (await platform.getRawFile(fileName, repoName, branchOrTag))!; return JSON5.parse(raw); }, @@ -474,7 +474,7 @@ const platform: Platform = { // Add pull request to cache for further lookups / queries if (config.prList !== null) { - // TODO #7154 + // TODO #22198 (await config.prList).push(pr!); } } @@ -692,9 +692,9 @@ const platform: Platform = { if (!issue) { return null; } - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`Found Issue #${issue.number!}`); - // TODO #7154 + // TODO #22198 return getIssue!(issue.number!); }, @@ -743,9 +743,9 @@ const platform: Platform = { // Close any duplicate issues for (const issue of issues) { if (issue.state === 'open' && issue.number !== activeIssue.number) { - // TODO: types (#7154) + // TODO: types (#22198) logger.warn({ issueNo: issue.number! }, 'Closing duplicate issue'); - // TODO #7154 + // TODO #22198 await helper.closeIssue(config.repository, issue.number!); } } @@ -757,18 +757,18 @@ const platform: Platform = { activeIssue.state === 'open' ) { logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `Issue #${activeIssue.number!} is open and up to date - nothing to do` ); return null; } // Update issue body and re-open if enabled - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`Updating Issue #${activeIssue.number!}`); const existingIssue = await helper.updateIssue( config.repository, - // TODO #7154 + // TODO #22198 activeIssue.number!, { body, @@ -789,7 +789,7 @@ const platform: Platform = { ) { await helper.updateIssueLabels( config.repository, - // TODO #7154 + // TODO #22198 activeIssue.number!, { labels, @@ -823,7 +823,7 @@ const platform: Platform = { for (const issue of issueList) { if (issue.state === 'open' && issue.title === title) { logger.debug(`Closing issue...issueNo: ${issue.number!}`); - // TODO #7154 + // TODO #22198 await helper.closeIssue(config.repository, issue.number!); } } diff --git a/lib/modules/platform/github/index.ts b/lib/modules/platform/github/index.ts index 29db5631d98758b9ad1770541bd754875e398738..422318a66169ba4d34afb382a4a967f1e016a17b 100644 --- a/lib/modules/platform/github/index.ts +++ b/lib/modules/platform/github/index.ts @@ -258,7 +258,7 @@ export async function getJsonFile( repoName?: string, branchOrTag?: string ): Promise<any> { - // TODO #7154 + // TODO #22198 const raw = (await getRawFile(fileName, repoName, branchOrTag)) as string; return JSON5.parse(raw); } @@ -383,7 +383,7 @@ export async function initRepo({ let infoQuery = repoInfoQuery; // GitHub Enterprise Server <3.3.0 doesn't support autoMergeAllowed and hasIssuesEnabled objects - // TODO #7154 + // TODO #22198 if ( platformConfig.isGhe && // semver not null safe, accepts null and undefined @@ -590,7 +590,7 @@ export async function initRepo({ logger.debug(`Using ${tokenType} token for git init`); parsedEndpoint.auth = opts.token ?? null; } - // TODO: null checks (#7154) + // TODO: null checks (#22198) parsedEndpoint.host = parsedEndpoint.host!.replace( 'api.github.com', 'github.com' @@ -712,7 +712,7 @@ export async function getPrList(): Promise<GhPr[]> { !config.forkToken && !config.ignorePrAuthor && config.renovateUsername ? config.renovateUsername : null; - // TODO: check null `repo` (#7154) + // TODO: check null `repo` (#22198) const prCache = await getPrCache(githubApi, repo!, username); config.prList = Object.values(prCache).sort( ({ number: a }, { number: b }) => (a > b ? -1 : 1) @@ -1136,7 +1136,7 @@ export async function findIssue(title: string): Promise<Issue | null> { return null; } logger.debug(`Found issue ${issue.number}`); - // TODO: can number be required? (#7154) + // TODO: can number be required? (#22198) return getIssue(issue.number!); } @@ -1191,7 +1191,7 @@ export async function ensureIssue({ for (const i of issues) { if (i.state === 'open' && i.number !== issue.number) { logger.warn({ issueNo: i.number }, 'Closing duplicate issue'); - // TODO #7154 + // TODO #22198 await closeIssue(i.number!); } } @@ -1264,7 +1264,7 @@ export async function ensureIssueClosing(title: string): Promise<void> { const issueList = await getIssueList(); for (const issue of issueList) { if (issue.state === 'open' && issue.title === title) { - // TODO #7154 + // TODO #22198 await closeIssue(issue.number!); logger.debug(`Issue closed, issueNo: ${issue.number}`); } @@ -1498,7 +1498,7 @@ async function tryPrAutomerge( } // If GitHub Enterprise Server <3.3.0 it doesn't support automerge - // TODO #7154 + // TODO #22198 if (platformConfig.isGhe) { // semver not null safe, accepts null and undefined if (semver.satisfies(platformConfig.gheVersion!, '<3.3.0')) { @@ -1537,7 +1537,7 @@ async function tryPrAutomerge( } logger.debug(`GitHub-native automerge: success...PrNo: ${prNumber}`); - } catch (err) /* istanbul ignore next: missing test #7154 */ { + } catch (err) /* istanbul ignore next: missing test #22198 */ { logger.warn({ prNumber, err }, 'GitHub-native automerge: REST API error'); } } @@ -1555,7 +1555,7 @@ export async function createPr({ const body = sanitize(rawBody); const base = targetBranch; // Include the repository owner to handle forkToken and regular mode - // TODO: can `repository` be null? (#7154) + // TODO: can `repository` be null? (#22198) const head = `${config.repository!.split('/')[0]}:${sourceBranch}`; const options: any = { @@ -1754,7 +1754,7 @@ export function massageMarkdown(input: string): string { export async function getVulnerabilityAlerts(): Promise<VulnerabilityAlert[]> { let vulnerabilityAlerts: { node: VulnerabilityAlert }[] | undefined; - // TODO #7154 + // TODO #22198 const gheSupportsStateFilter = semver.satisfies( // semver not null safe, accepts null and undefined diff --git a/lib/modules/platform/gitlab/index.ts b/lib/modules/platform/gitlab/index.ts index ae5ffaab111b4217f520ff5af8db530b640062a9..addc0dc1f36e7c8b38113dceb127401c8dc6c836 100644 --- a/lib/modules/platform/gitlab/index.ts +++ b/lib/modules/platform/gitlab/index.ts @@ -202,7 +202,7 @@ export async function getJsonFile( repoName?: string, branchOrTag?: string ): Promise<any> { - // TODO #7154 + // TODO #22198 const raw = (await getRawFile(fileName, repoName, branchOrTag)) as string; return JSON5.parse(raw); } @@ -239,12 +239,12 @@ function getRepoUrl( ); } - // TODO: null check (#7154) + // TODO: null check (#22198) const { protocol, host, pathname } = parseUrl(defaults.endpoint)!; const newPathname = pathname.slice(0, pathname.indexOf('/api')); const url = URL.format({ protocol: protocol.slice(0, -1) || 'https', - // TODO: types (#7154) + // TODO: types (#22198) auth: `oauth2:${opts.token!}`, host, pathname: newPathname + '/' + repository + '.git', @@ -255,7 +255,7 @@ function getRepoUrl( logger.debug(`Using http URL: ${res.body.http_url_to_repo}`); const repoUrl = URL.parse(`${res.body.http_url_to_repo}`); - // TODO: types (#7154) + // TODO: types (#22198) repoUrl.auth = `oauth2:${opts.token!}`; return URL.format(repoUrl); } @@ -383,7 +383,7 @@ async function getStatus( ): Promise<GitlabBranchStatus[]> { const branchSha = git.getBranchCommit(branchName); try { - // TODO: types (#7154) + // TODO: types (#22198) const url = `projects/${ config.repository }/repository/commits/${branchSha!}/statuses`; @@ -730,7 +730,7 @@ export async function updatePr({ const newState = { ['closed']: 'close', ['open']: 'reopen', - // TODO: null check (#7154) + // TODO: null check (#22198) }[state!]; const body: any = { @@ -868,7 +868,7 @@ export async function setBranchStatus({ // First, get the branch commit SHA const branchSha = git.getBranchCommit(branchName); // Now, check the statuses for that commit - // TODO: types (#7154) + // TODO: types (#22198) const url = `projects/${config.repository}/statuses/${branchSha!}`; let state = 'success'; if (renovateState === 'yellow') { @@ -1217,7 +1217,7 @@ export async function ensureComment({ let body: string; let commentId: number | undefined; let commentNeedsUpdating: boolean | undefined; - // TODO: types (#7154) + // TODO: types (#22198) if (topic) { logger.debug(`Ensuring comment "${massagedTopic!}" in #${number}`); body = `### ${topic}\n\n${sanitizedContent}`; diff --git a/lib/modules/platform/index.ts b/lib/modules/platform/index.ts index ed94583cf352dc38c7f4b4c5c936cedbd5a1ef94..7b2a3f20cf08bec2206fbfe021ed9069d26ea8f4 100644 --- a/lib/modules/platform/index.ts +++ b/lib/modules/platform/index.ts @@ -43,7 +43,7 @@ export function setPlatformApi(name: PlatformId): void { export async function initPlatform(config: AllConfig): Promise<AllConfig> { setPrivateKey(config.gitPrivateKey); setNoVerify(config.gitNoVerify ?? []); - // TODO: `platform` (#7154) + // TODO: `platform` (#22198) setPlatformApi(config.platform!); // TODO: types const platformInfo = await platform.initPlatform(config); @@ -59,7 +59,7 @@ export async function initPlatform(config: AllConfig): Promise<AllConfig> { // This is done for validation and will be overridden later once repo config is incorporated setGitAuthor(returnConfig.gitAuthor); const platformRule: HostRule = { - // TODO: null check (#7154) + // TODO: null check (#22198) matchHost: URL.parse(returnConfig.endpoint).hostname!, }; // There might have been platform-specific modifications to the token @@ -70,7 +70,7 @@ export async function initPlatform(config: AllConfig): Promise<AllConfig> { ['token', 'username', 'password'] as ('token' | 'username' | 'password')[] ).forEach((field) => { if (config[field]) { - // TODO: types #7154 + // TODO: types #22198 platformRule[field] = config[field] as string; delete returnConfig[field]; } diff --git a/lib/modules/platform/types.ts b/lib/modules/platform/types.ts index 3962a08b8dee2a691d2086e52d13db9188466dfe..bab9f39a061528df156a3360aab2b1e34fae34f1 100644 --- a/lib/modules/platform/types.ts +++ b/lib/modules/platform/types.ts @@ -203,7 +203,7 @@ export interface Platform { setBranchStatus(branchStatusConfig: BranchStatusConfig): Promise<void>; getBranchStatusCheck( branchName: string, - // TODO: can be undefined or null ? #7154 + // TODO: can be undefined or null ? #22198 context: string | null | undefined ): Promise<BranchStatus | null>; ensureCommentRemoval( diff --git a/lib/modules/versioning/composer/index.ts b/lib/modules/versioning/composer/index.ts index c411c97b52bc4c572a1fdae1d0cec2380b6dbbae..f3de82dcd19a442c96b784b44e64c45bdda389a6 100644 --- a/lib/modules/versioning/composer/index.ts +++ b/lib/modules/versioning/composer/index.ts @@ -215,16 +215,16 @@ function getNewValue({ const operator = currentValue.substring(0, 1); // handle ~0.4 case first if (toMajor === 0) { - // TODO: types (#7154) + // TODO: types (#22198) newValue = `${operator}0.${toMinor!}`; } else { - // TODO: types (#7154) + // TODO: types (#22198) newValue = `${operator}${toMajor!}.0`; } } else if (regEx(/^[~^]([0-9]*)$/).test(currentValue)) { // handle ~4 case const operator = currentValue.substring(0, 1); - // TODO: types (#7154) + // TODO: types (#22198) newValue = `${operator}${toMajor!}`; } else if ( toMajor && diff --git a/lib/modules/versioning/node/schedule.ts b/lib/modules/versioning/node/schedule.ts index c8311c19395a69ff53a0fee91f11a77438264b82..db9328a7ef9ec5dd4e91cc56208e5817d19f7692 100644 --- a/lib/modules/versioning/node/schedule.ts +++ b/lib/modules/versioning/node/schedule.ts @@ -36,7 +36,7 @@ export function findScheduleForCodename( export function findScheduleForVersion(version: string): NodeJsSchedule | null { const major = semver.getMajor(version); - // TODO: types (#7154) + // TODO: types (#22198) const schedule = nodeSchedule[`v${major!}`]; return schedule; } diff --git a/lib/modules/versioning/npm/range.ts b/lib/modules/versioning/npm/range.ts index ed6dd7cd0ccb536e5ea2d6b3d584dd55e9ab84a6..d87a4ad6e73d01c0d2598566d2a4285e0e0b6047 100644 --- a/lib/modules/versioning/npm/range.ts +++ b/lib/modules/versioning/npm/range.ts @@ -57,7 +57,7 @@ function replaceCaretValue(oldValue: string, newValue: string): string { return needReplace ? resultTuple.join('.') : oldValue; } -// TODO: #7154 +// TODO: #22198 export function getNewValue({ currentValue, rangeStrategy, @@ -100,7 +100,7 @@ export function getNewValue({ // TODO fix this const splitCurrent = currentValue.split(element.operator); splitCurrent.pop(); - // TODO: types (#7154) + // TODO: types (#22198) return `${splitCurrent.join(element.operator)}${newValue!}`; } if (parsedRange.length > 1) { @@ -108,7 +108,7 @@ export function getNewValue({ if (previousElement.operator === '-') { const splitCurrent = currentValue.split('-'); splitCurrent.pop(); - // TODO: types (#7154) + // TODO: types (#22198) return `${splitCurrent.join('-')}- ${newValue!}`; } if (element.operator?.startsWith('>')) { @@ -116,7 +116,7 @@ export function getNewValue({ return null; } } - // TODO: types (#7154) + // TODO: types (#22198) return `${currentValue} || ${newValue!}`; } const toVersionMajor = major(newVersion); @@ -221,7 +221,7 @@ export function getNewValue({ const newMajor = toVersionMajor + 1; res = `<${newMajor}.0.0`; } else if (element.patch) { - // TODO: types (#7154) + // TODO: types (#22198) res = `<${increment(newVersion, 'patch')!}`; } else if (element.minor) { res = `<${toVersionMajor}.${toVersionMinor + 1}`; diff --git a/lib/util/exec/common.spec.ts b/lib/util/exec/common.spec.ts index c877ca146c9811f5c2f7315ae569206882df73cc..4100750c52c2ae31137cfcf221416bfb7a19c4ab 100644 --- a/lib/util/exec/common.spec.ts +++ b/lib/util/exec/common.spec.ts @@ -57,7 +57,7 @@ function getReadable( return readable; } -// TODO: fix types, jest is using wrong overload (#7154) +// TODO: fix types, jest is using wrong overload (#22198) function getSpawnStub(args: StubArgs): any { const { cmd, diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts index a49ce0d8467bec4e542bde4fd029f5acb30db193..d853a1a1bc2f91eeb8ee496ff098db6994f0d31e 100644 --- a/lib/util/exec/docker/index.ts +++ b/lib/util/exec/docker/index.ts @@ -257,7 +257,7 @@ export async function generateDockerCommand( result.push(`-w "${cwd}"`); } - // TODO: #7154 + // TODO: #22198 image = dockerSidecarImage!; // TODO: add constraint: const tag = getDockerTag(image, sideCarImageVersion, 'semver'); diff --git a/lib/util/git/auth.ts b/lib/util/git/auth.ts index 91b7fd44cfb055c72d111d80ecb269998d0b3119..97017ab4ee5f9e2138dbf67cc2cfe1a4b491ff3e 100644 --- a/lib/util/git/auth.ts +++ b/lib/util/git/auth.ts @@ -36,7 +36,7 @@ export function getGitAuthenticatedEnvironmentVariables( ): NodeJS.ProcessEnv { if (!token) { logger.warn( - // TODO: types (#7154) + // TODO: types (#22198) `Could not create environment variable for ${matchHost!} as token was empty` ); return { ...environmentVariables }; diff --git a/lib/util/git/index.ts b/lib/util/git/index.ts index 34c85c9b7ce05cd6519b709926542d53c4cba8ba..c919e559efeb1b14c745435263413f590caa44e9 100644 --- a/lib/util/git/index.ts +++ b/lib/util/git/index.ts @@ -2,7 +2,7 @@ import URL from 'node:url'; import { setTimeout } from 'timers/promises'; import is from '@sindresorhus/is'; import fs from 'fs-extra'; -// TODO: check if bug is fixed (#7154) +// TODO: check if bug is fixed (#22198) // eslint-disable-next-line import/no-named-as-default import simpleGit, { Options, @@ -204,7 +204,7 @@ async function fetchBranchCommits(): Promise<void> { const opts = ['ls-remote', '--heads', config.url]; if (config.extraCloneOpts) { Object.entries(config.extraCloneOpts).forEach((e) => - // TODO: types (#7154) + // TODO: types (#22198) opts.unshift(e[0], `${e[1]!}`) ); } @@ -426,7 +426,7 @@ export async function syncGit(): Promise<void> { } if (config.extraCloneOpts) { Object.entries(config.extraCloneOpts).forEach((e) => - // TODO: types (#7154) + // TODO: types (#22198) opts.push(e[0], `${e[1]!}`) ); } @@ -1163,7 +1163,7 @@ export function getUrl({ repository: string; }): string { if (protocol === 'ssh') { - // TODO: types (#7154) + // TODO: types (#22198) return `git@${hostname!}:${repository}.git`; } return URL.format({ diff --git a/lib/util/git/private-key.ts b/lib/util/git/private-key.ts index c04504105ef726ea1c1d195b1e3b8dcb77f45307..32f3db0a47424d50d6eea3adc9b4bb24fa4f33e7 100644 --- a/lib/util/git/private-key.ts +++ b/lib/util/git/private-key.ts @@ -57,7 +57,7 @@ export async function configSigningKey(cwd: string): Promise<void> { return; } logger.debug('gitPrivateKey: configuring commit signing'); - // TODO: types (#7154) + // TODO: types (#22198) await exec(`git config user.signingkey ${keyId!}`, { cwd }); await exec(`git config commit.gpgsign true`, { cwd }); } diff --git a/lib/util/host-rules.ts b/lib/util/host-rules.ts index 501d32edeb15435d0b781cb7a38abd1d5fec613f..e70c08d10dc544f1d321ee75e5bcc74bd9831ce4 100644 --- a/lib/util/host-rules.ts +++ b/lib/util/host-rules.ts @@ -49,7 +49,7 @@ export function add(params: HostRule): void { confidentialFields.forEach((field) => { if (rule[field]) { logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `Adding ${field} authentication for ${rule.matchHost!} to hostRules` ); } diff --git a/lib/util/http/dns.ts b/lib/util/http/dns.ts index abe9fb9353ddfcb1ca507d9ed3bf1dd863e8d1c5..bd46ddeb0cb5c45b47f2458c43cc1919d8c09b82 100644 --- a/lib/util/http/dns.ts +++ b/lib/util/http/dns.ts @@ -47,7 +47,7 @@ function lookup( ] ): void { let opts: LookupOneOptions | LookupAllOptions; - // TODO: strict null incompatible types (#7154) + // TODO: strict null incompatible types (#22198) let cb: any; if (typeof options === 'function') { diff --git a/lib/util/http/index.ts b/lib/util/http/index.ts index 741de3c7741f2636d9453aa1a4aecfe0fa1c5454..1e51ee201504fd45a9baf68a5be80789e4279760 100644 --- a/lib/util/http/index.ts +++ b/lib/util/http/index.ts @@ -457,7 +457,7 @@ export class Http<Opts extends HttpOptions = HttpOptions> { } stream(url: string, options?: HttpOptions): NodeJS.ReadableStream { - // TODO: fix types (#7154) + // TODO: fix types (#22198) let combinedOptions: any = { method: 'get', ...this.options, diff --git a/lib/workers/global/config/parse/index.ts b/lib/workers/global/config/parse/index.ts index 0ec0fb6c75292f0c3c0fa9323d116fce7ae85a91..070d52561d3c8fbf21e123f2699d7f40b4063712 100644 --- a/lib/workers/global/config/parse/index.ts +++ b/lib/workers/global/config/parse/index.ts @@ -69,7 +69,7 @@ export async function parseConfigs( // istanbul ignore if if (config.logFile) { logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `Enabling ${config.logFileLevel!} logging to ${config.logFile}` ); await ensureDir(getParentDir(config.logFile)); diff --git a/lib/workers/global/index.ts b/lib/workers/global/index.ts index 80869a7426c87e1c586dfc8c737d982d5d6bfe9c..bf40c5e674b3cbc46930cf75cab779ecaecc19a2 100644 --- a/lib/workers/global/index.ts +++ b/lib/workers/global/index.ts @@ -35,7 +35,7 @@ export async function getRepositoryConfig( globalConfig, is.string(repository) ? { repository } : repository ); - // TODO: types (#7154) + // TODO: types (#22198) const platform = GlobalConfig.get('platform')!; repoConfig.localDir = platform === 'local' diff --git a/lib/workers/repository/config-migration/branch/index.spec.ts b/lib/workers/repository/config-migration/branch/index.spec.ts index e9c88a0b49141028616317e8b0842c7a4c286751..9b1dab3e4ec6fceaf3888f0bc3934bd1633f0379 100644 --- a/lib/workers/repository/config-migration/branch/index.spec.ts +++ b/lib/workers/repository/config-migration/branch/index.spec.ts @@ -54,7 +54,7 @@ describe('workers/repository/config-migration/branch/index', () => { platform.refreshPr = jest.fn().mockResolvedValueOnce(null); mockedFunction(rebaseMigrationBranch).mockResolvedValueOnce('committed'); const res = await checkConfigMigrationBranch(config, migratedData); - // TODO: types (#7154) + // TODO: types (#22198) expect(res).toBe(`${config.branchPrefix!}migrate-config`); expect(scm.checkoutBranch).toHaveBeenCalledTimes(1); expect(git.commitFiles).toHaveBeenCalledTimes(0); @@ -70,7 +70,7 @@ describe('workers/repository/config-migration/branch/index', () => { platform.getBranchPr.mockResolvedValueOnce(mock<Pr>()); mockedFunction(rebaseMigrationBranch).mockResolvedValueOnce('committed'); const res = await checkConfigMigrationBranch(config, migratedData); - // TODO: types (#7154) + // TODO: types (#22198) expect(res).toBe(`${config.branchPrefix!}migrate-config`); expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(git.commitFiles).toHaveBeenCalledTimes(0); @@ -81,7 +81,7 @@ describe('workers/repository/config-migration/branch/index', () => { 'committed' ); const res = await checkConfigMigrationBranch(config, migratedData); - // TODO: types (#7154) + // TODO: types (#22198) expect(res).toBe(`${config.branchPrefix!}migrate-config`); expect(scm.checkoutBranch).toHaveBeenCalledTimes(1); expect(git.commitFiles).toHaveBeenCalledTimes(0); @@ -96,7 +96,7 @@ describe('workers/repository/config-migration/branch/index', () => { 'committed' ); const res = await checkConfigMigrationBranch(config, migratedData); - // TODO: types (#7154) + // TODO: types (#22198) expect(res).toBe(`${config.branchPrefix!}migrate-config`); expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(git.commitFiles).toHaveBeenCalledTimes(0); diff --git a/lib/workers/repository/config-migration/branch/migrated-data.spec.ts b/lib/workers/repository/config-migration/branch/migrated-data.spec.ts index 3f1b32301a0d611ed079ee242b7c206f90aa0532..541d7e7cfdaf5d9cf0a8f2ed6f28aa63f853c84c 100644 --- a/lib/workers/repository/config-migration/branch/migrated-data.spec.ts +++ b/lib/workers/repository/config-migration/branch/migrated-data.spec.ts @@ -87,7 +87,7 @@ describe('workers/repository/config-migration/branch/migrated-data', () => { const indent = { type: undefined, amount: 0, - // TODO: incompatible types (#7154) + // TODO: incompatible types (#22198) indent: null as never, }; mockedFunction(detectIndent).mockReturnValueOnce(indent); diff --git a/lib/workers/repository/config-migration/branch/migrated-data.ts b/lib/workers/repository/config-migration/branch/migrated-data.ts index 1961a817ad96d5a8a4e0b92019474c0490324a37..fc74fc1722a67ba2f31406cbe20b21a405d2c948 100644 --- a/lib/workers/repository/config-migration/branch/migrated-data.ts +++ b/lib/workers/repository/config-migration/branch/migrated-data.ts @@ -125,7 +125,7 @@ export class MigratedDataFactory { delete migratedConfig.warnings; // indent defaults to 2 spaces - // TODO #7154 + // TODO #22198 const indent = detectIndent(raw!); const indentSpace = indent.indent ?? ' '; const filename = configFileName!; diff --git a/lib/workers/repository/config-migration/pr/index.ts b/lib/workers/repository/config-migration/pr/index.ts index 3152227b8b781c9e2e4419ec68e4e25c07060ca1..53fe6427a9d0b3821a2f0a65eabd001e81bfdbe7 100644 --- a/lib/workers/repository/config-migration/pr/index.ts +++ b/lib/workers/repository/config-migration/pr/index.ts @@ -96,7 +96,7 @@ ${ } else { const pr = await platform.createPr({ sourceBranch: branchName, - // TODO #7154 + // TODO #22198 targetBranch: config.defaultBranch!, prTitle, prBody, diff --git a/lib/workers/repository/dependency-dashboard.ts b/lib/workers/repository/dependency-dashboard.ts index 25dc19c08f038557a811d18fa172884b5a5238fb..bf1b0542ecd92200694d78b0eac5d9efb57c101b 100644 --- a/lib/workers/repository/dependency-dashboard.ts +++ b/lib/workers/repository/dependency-dashboard.ts @@ -140,13 +140,13 @@ function getListItem(branch: BranchConfig, type: string): string { let item = ' - [ ] '; item += `<!-- ${type}-branch=${branch.branchName} -->`; if (branch.prNo) { - // TODO: types (#7154) + // TODO: types (#22198) item += `[${branch.prTitle!}](../pull/${branch.prNo})`; } else { item += branch.prTitle; } const uniquePackages = [ - // TODO: types (#7154) + // TODO: types (#22198) ...new Set(branch.upgrades.map((upgrade) => `\`${upgrade.depName!}\``)), ]; if (uniquePackages.length < 2) { diff --git a/lib/workers/repository/error-config.ts b/lib/workers/repository/error-config.ts index b580d909f490789b1216bfddfc46263c0a150391..38ba2b17e4bfb21f0d9bca0fbff8558df334e62a 100644 --- a/lib/workers/repository/error-config.ts +++ b/lib/workers/repository/error-config.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { GlobalConfig } from '../../config/global'; import type { RenovateConfig } from '../../config/types'; import { logger } from '../../logger'; diff --git a/lib/workers/repository/errors-warnings.ts b/lib/workers/repository/errors-warnings.ts index 516c74a5aa8117f80c5fd307518e5ed99c22dbc1..b60ebb687723cf33cb6cbde1309aeaa0dc6d9c1f 100644 --- a/lib/workers/repository/errors-warnings.ts +++ b/lib/workers/repository/errors-warnings.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import type { RenovateConfig } from '../../config/types'; import { logger } from '../../logger'; import type { PackageFile } from '../../modules/manager/types'; @@ -39,7 +39,7 @@ function getDepWarnings( const warningFiles: string[] = []; for (const files of Object.values(packageFiles ?? {})) { for (const file of files ?? []) { - // TODO: remove condition when type is fixed (#7154) + // TODO: remove condition when type is fixed (#22198) if (file.packageFile) { for (const dep of file.deps ?? []) { for (const w of dep.warnings ?? []) { diff --git a/lib/workers/repository/extract/file-match.ts b/lib/workers/repository/extract/file-match.ts index 1cc6940feff7fb434e8bc6caae8bc4a4f3f1b8a9..c9a078ecbf6263aaa5ad5f161c3a6b3ca75f14aa 100644 --- a/lib/workers/repository/extract/file-match.ts +++ b/lib/workers/repository/extract/file-match.ts @@ -41,7 +41,7 @@ export function getFilteredFileList( fileList: string[] ): string[] { const { includePaths, ignorePaths } = config; - // TODO #7154 + // TODO #22198 let filteredList = getIncludedFiles(fileList, includePaths!); filteredList = filterIgnoredFiles(filteredList, ignorePaths!); @@ -55,7 +55,7 @@ export function getMatchingFiles( const fileList = getFilteredFileList(config, allFiles); const { fileMatch, manager } = config; let matchedFiles: string[] = []; - // TODO: types (#7154) + // TODO: types (#22198) for (const match of fileMatch!) { logger.debug(`Using file match: ${match} for manager ${manager!}`); const re = regEx(match); diff --git a/lib/workers/repository/finalize/prune.ts b/lib/workers/repository/finalize/prune.ts index 88115d6daf50408aa62befba1418db94c3aa2409..22cb17f7af56f21f75f655d4b4db0056f6877506 100644 --- a/lib/workers/repository/finalize/prune.ts +++ b/lib/workers/repository/finalize/prune.ts @@ -101,13 +101,13 @@ export async function pruneStaleBranches( ): Promise<void> { logger.debug('Removing any stale branches'); logger.trace({ config }, `pruneStaleBranches`); - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`config.repoIsOnboarded=${config.repoIsOnboarded!}`); if (!branchList) { logger.debug('No branchList'); return; } - // TODO: types (#7154) + // TODO: types (#22198) let renovateBranches = getBranchList().filter((branchName) => branchName.startsWith(config.branchPrefix!) ); @@ -122,7 +122,7 @@ export async function pruneStaleBranches( }, 'Branch lists' ); - // TODO: types (#7154) + // TODO: types (#22198) const lockFileBranch = `${config.branchPrefix!}lock-file-maintenance`; renovateBranches = renovateBranches.filter( (branch) => branch !== lockFileBranch diff --git a/lib/workers/repository/index.ts b/lib/workers/repository/index.ts index 3fb1ccbf51cbbd1b8b84e91bfcd9e8196af499eb..e8023a7172a51e8d2773b0f2a8da991c6a1d3152 100644 --- a/lib/workers/repository/index.ts +++ b/lib/workers/repository/index.ts @@ -92,7 +92,7 @@ export async function renovateRepository( await ensureDependencyDashboard(config, branches, packageFiles); } await finalizeRepo(config, branchList); - // TODO #7154 + // TODO #22198 repoResult = processResult(config, res!); } runBranchSummary(config, branches); diff --git a/lib/workers/repository/init/apis.ts b/lib/workers/repository/init/apis.ts index 1eec1212a139db334323742b58d6c65f7bd7a966..823f2fdf0fe9551b85ad0e1dc3c5690871d2f2ab 100644 --- a/lib/workers/repository/init/apis.ts +++ b/lib/workers/repository/init/apis.ts @@ -7,12 +7,12 @@ import { import { logger } from '../../../logger'; import { RepoParams, RepoResult, platform } from '../../../modules/platform'; -// TODO: fix types (#7154) +// TODO: fix types (#22198) export type WorkerPlatformConfig = RepoResult & RenovateConfig & Record<string, any>; -// TODO #7154 +// TODO #22198 const defaultConfigFile = (config: RenovateConfig): string => configFileNames.includes(config.onboardingConfigFileName!) ? config.onboardingConfigFileName! @@ -50,7 +50,7 @@ async function validateIncludeForks(config: RenovateConfig): Promise<void> { } } -// TODO: fix types (#7154) +// TODO: fix types (#22198) async function getPlatformConfig( config: RepoParams ): Promise<WorkerPlatformConfig> { @@ -61,7 +61,7 @@ async function getPlatformConfig( }; } -// TODO: fix types (#7154) +// TODO: fix types (#22198) export async function initApis( input: RenovateConfig ): Promise<WorkerPlatformConfig> { diff --git a/lib/workers/repository/init/index.ts b/lib/workers/repository/init/index.ts index 8f5754b44b80781016f69271a5b153c1daab9313..77cef2b149143d0f5d7f553a79e648c3f0bed22e 100644 --- a/lib/workers/repository/init/index.ts +++ b/lib/workers/repository/init/index.ts @@ -24,7 +24,7 @@ function initializeConfig(config: RenovateConfig): RenovateConfig { function warnOnUnsupportedOptions(config: RenovateConfig): void { if (config.filterUnavailableUsers && !platform.filterUnavailableUsers) { - // TODO: types (#7154) + // TODO: types (#22198) const platform = GlobalConfig.get('platform')!; logger.warn( `Configuration option 'filterUnavailableUsers' is not supported on the current platform '${platform}'.` diff --git a/lib/workers/repository/init/merge.ts b/lib/workers/repository/init/merge.ts index 54ae0f63f266d3de5f9b0922a4cadabb6abc38f1..a244b768ae54527fb9eb8415ee4eddb5564623ce 100644 --- a/lib/workers/repository/init/merge.ts +++ b/lib/workers/repository/init/merge.ts @@ -93,7 +93,7 @@ export async function detectRepoFileConfig(): Promise<RepoFileConfig> { } cache.configFileName = configFileName; logger.debug(`Found ${configFileName} config file`); - // TODO #7154 + // TODO #22198 let configFileParsed: any; let configFileRaw: string | undefined | null; @@ -109,7 +109,7 @@ export async function detectRepoFileConfig(): Promise<RepoFileConfig> { if (configFileName === 'package.json') { // We already know it parses configFileParsed = JSON.parse( - // TODO #7154 + // TODO #22198 (await readLocalFile('package.json', 'utf8'))! ).renovate; if (is.string(configFileParsed)) { @@ -246,7 +246,7 @@ export async function mergeRenovateConfig( } delete migratedConfig.errors; delete migratedConfig.warnings; - // TODO #7154 + // TODO #22198 const repository = config.repository!; // Decrypt before resolving in case we need npm authentication for any presets const decryptedConfig = await decryptConfig(migratedConfig, repository); diff --git a/lib/workers/repository/init/vulnerability.spec.ts b/lib/workers/repository/init/vulnerability.spec.ts index a5edda9408f63c86dfc2a15a4f28e4e5223c3e85..ee99bb3a1493f5fa1ef734e5f388544ee37c98ad 100644 --- a/lib/workers/repository/init/vulnerability.spec.ts +++ b/lib/workers/repository/init/vulnerability.spec.ts @@ -19,13 +19,13 @@ describe('workers/repository/init/vulnerability', () => { }); it('returns if alerts are disabled', async () => { - // TODO #7154 + // TODO #22198 config.vulnerabilityAlerts!.enabled = false; expect(await detectVulnerabilityAlerts(config)).toEqual(config); }); it('returns if no alerts', async () => { - // TODO #7154 + // TODO #22198 delete config.vulnerabilityAlerts!.enabled; platform.getVulnerabilityAlerts.mockResolvedValue([]); expect(await detectVulnerabilityAlerts(config)).toEqual(config); @@ -41,7 +41,7 @@ describe('workers/repository/init/vulnerability', () => { it('returns alerts and remediations', async () => { config.transitiveRemediation = true; - // TODO #7154 + // TODO #22198 delete config.vulnerabilityAlerts!.enabled; delete config.packageRules; // test coverage platform.getVulnerabilityAlerts.mockResolvedValue([ diff --git a/lib/workers/repository/init/vulnerability.ts b/lib/workers/repository/init/vulnerability.ts index 69a5cc44c46c39099a9def9a07da474159b4cece..39bae817a78559d9333d6e5fb89df79c4d7ccefb 100644 --- a/lib/workers/repository/init/vulnerability.ts +++ b/lib/workers/repository/init/vulnerability.ts @@ -45,7 +45,7 @@ type CombinedAlert = Record< > >; -// TODO can return `null` and `undefined` (#7154) +// TODO can return `null` and `undefined` (#22198) export async function detectVulnerabilityAlerts( input: RenovateConfig ): Promise<RenovateConfig> { @@ -114,7 +114,7 @@ export async function detectVulnerabilityAlerts( const firstPatchedVersion = alert.securityVulnerability.firstPatchedVersion.identifier; const advisory = alert.securityAdvisory; - // TODO #7154 + // TODO #22198 let vulnerableRequirements = alert.vulnerableRequirements!; // istanbul ignore if if (!vulnerableRequirements.length) { @@ -203,7 +203,7 @@ export async function detectVulnerabilityAlerts( } catch (err) /* istanbul ignore next */ { logger.warn({ err }, 'Error generating vulnerability PR notes'); } - // TODO: types (#7154) + // TODO: types (#22198) const allowedVersions = datasource === PypiDatasource.id ? `==${val.firstPatchedVersion!}` diff --git a/lib/workers/repository/onboarding/branch/check.ts b/lib/workers/repository/onboarding/branch/check.ts index 526254c1a578ad479d8c09c504818bca08a8f79d..5f7c0e2f4c78ae91040d4e91687d1a876991bb1b 100644 --- a/lib/workers/repository/onboarding/branch/check.ts +++ b/lib/workers/repository/onboarding/branch/check.ts @@ -30,7 +30,7 @@ async function configFileExists(): Promise<boolean> { async function packageJsonConfigExists(): Promise<boolean> { try { - // TODO #7154 + // TODO #22198 const pJson = JSON.parse((await readLocalFile('package.json', 'utf8'))!); if (pJson.renovate) { return true; diff --git a/lib/workers/repository/onboarding/branch/config.ts b/lib/workers/repository/onboarding/branch/config.ts index 18f42ca5817afa8bcd61f6866cdc8025f216468c..b6cabbe4abda14aacdbd2850b87992b0964d48a0 100644 --- a/lib/workers/repository/onboarding/branch/config.ts +++ b/lib/workers/repository/onboarding/branch/config.ts @@ -20,7 +20,7 @@ async function getOnboardingConfig( 'Checking if this org/owner has a default Renovate preset which can be used.' ); - // TODO #7154 + // TODO #22198 const orgName = config.repository!.split('/')[0]; // Check for org/renovate-config @@ -40,7 +40,7 @@ async function getOnboardingConfig( if (!orgPreset) { // Check for org/.{{platform}} - // TODO: types (#7154) + // TODO: types (#22198) const platform = GlobalConfig.get('platform')!; try { const repo = `${orgName}/.${platform}`; diff --git a/lib/workers/repository/onboarding/branch/create.ts b/lib/workers/repository/onboarding/branch/create.ts index ed32a675603159a91e3e691f8e6d0e5766590267..e9a8e41e5b3d85c2bc0cc6ef48ec5b2f15b73f2d 100644 --- a/lib/workers/repository/onboarding/branch/create.ts +++ b/lib/workers/repository/onboarding/branch/create.ts @@ -11,13 +11,13 @@ const defaultConfigFile = configFileNames[0]; export async function createOnboardingBranch( config: Partial<RenovateConfig> ): Promise<string | null> { - // TODO #7154 + // TODO #22198 const configFile = configFileNames.includes(config.onboardingConfigFileName!) ? config.onboardingConfigFileName : defaultConfigFile; logger.debug('createOnboardingBranch()'); - // TODO #7154 + // TODO #22198 const contents = await getOnboardingConfigContents(config, configFile!); logger.debug('Creating onboarding branch'); @@ -39,7 +39,7 @@ export async function createOnboardingBranch( files: [ { type: 'addition', - // TODO #7154 + // TODO #22198 path: configFile!, contents, }, diff --git a/lib/workers/repository/onboarding/branch/index.spec.ts b/lib/workers/repository/onboarding/branch/index.spec.ts index c739f57c44961029f2c6ec276faae7f6fef3fefa..9b8f248de9dfa9c82f453b0f57e1ff9e793b8ee3 100644 --- a/lib/workers/repository/onboarding/branch/index.spec.ts +++ b/lib/workers/repository/onboarding/branch/index.spec.ts @@ -94,7 +94,7 @@ describe('workers/repository/onboarding/branch/index', () => { .files[0] as FileAddition; const contents = file.contents?.toString(); expect(contents).toBeJsonString(); - // TODO #7154 + // TODO #22198 expect(JSON.parse(contents!)).toEqual({ $schema: 'https://docs.renovatebot.com/renovate-schema.json', }); @@ -130,7 +130,7 @@ describe('workers/repository/onboarding/branch/index', () => { const file = scm.commitAndPush.mock.calls[0][0].files[0] as FileAddition; const contents = file.contents?.toString(); expect(contents).toBeJsonString(); - // TODO #7154 + // TODO #22198 expect(JSON.parse(contents!)).toEqual({ $schema: 'https://docs.renovatebot.com/renovate-schema.json', extends: ['some/renovate-config'], diff --git a/lib/workers/repository/onboarding/branch/index.ts b/lib/workers/repository/onboarding/branch/index.ts index af7c2cd71d20377f4ae25e66f05767edc91521a0..fc4ddbe2a87f94d75ae4fe5b19adca07edd0b6b0 100644 --- a/lib/workers/repository/onboarding/branch/index.ts +++ b/lib/workers/repository/onboarding/branch/index.ts @@ -48,7 +48,7 @@ export async function checkOnboardingBranch( // global gitAuthor will need to be used setGitAuthor(config.gitAuthor); const onboardingPr = await getOnboardingPr(config); - // TODO #7154 + // TODO #22198 const branchList = [onboardingBranch!]; if (onboardingPr) { if (config.onboardingRebaseCheckbox) { @@ -108,7 +108,7 @@ export async function checkOnboardingBranch( } } if (!GlobalConfig.get('dryRun')) { - // TODO #7154 + // TODO #22198 if (!isConflicted) { logger.debug('Merge onboarding branch in default branch'); await scm.mergeToLocal(onboardingBranch!); diff --git a/lib/workers/repository/onboarding/pr/config-description.ts b/lib/workers/repository/onboarding/pr/config-description.ts index 6babae29a9c5a570fac6017e8038a630f830e83e..2209cc3d87b212b79bb2d97fd8921e5303cfa0d8 100644 --- a/lib/workers/repository/onboarding/pr/config-description.ts +++ b/lib/workers/repository/onboarding/pr/config-description.ts @@ -33,7 +33,7 @@ export function getConfigDesc( config: RenovateConfig, packageFiles?: Record<string, PackageFile[]> ): string { - // TODO: type (#7154) + // TODO: type (#22198) const configFile = configFileNames.includes(config.onboardingConfigFileName!) ? config.onboardingConfigFileName! : defaultConfigFile; diff --git a/lib/workers/repository/onboarding/pr/index.ts b/lib/workers/repository/onboarding/pr/index.ts index 3c1609893e14682a780927a470689eb9f363ee43..e82ace88124301070f957c0327efd88e01f06705 100644 --- a/lib/workers/repository/onboarding/pr/index.ts +++ b/lib/workers/repository/onboarding/pr/index.ts @@ -40,7 +40,7 @@ export async function ensureOnboardingPr( } logger.debug('ensureOnboardingPr()'); logger.trace({ config }); - // TODO #7154 + // TODO #22198 const existingPr = await platform.getBranchPr(config.onboardingBranch!); if (existingPr) { // skip pr-update if branch is conflicted @@ -76,7 +76,7 @@ export async function ensureOnboardingPr( : emojify( `:vertical_traffic_light: Renovate will begin keeping your dependencies up-to-date only once you merge or close this Pull Request.\n\n` ); - // TODO #7154 + // TODO #22198 prTemplate += emojify( ` @@ -117,7 +117,7 @@ If you need any further assistance then you can also [request help here](${ } let configDesc = ''; if (GlobalConfig.get('dryRun')) { - // TODO: types (#7154) + // TODO: types (#22198) logger.info(`DRY-RUN: Would check branch ${config.onboardingBranch!}`); } else { configDesc = getConfigDesc(config, packageFiles!); @@ -170,7 +170,7 @@ If you need any further assistance then you can also [request help here](${ if (GlobalConfig.get('dryRun')) { logger.info('DRY-RUN: Would create onboarding PR'); } else { - // TODO #7154 + // TODO #22198 const pr = await platform.createPr({ sourceBranch: config.onboardingBranch!, targetBranch: config.defaultBranch!, diff --git a/lib/workers/repository/onboarding/pr/pr-list.ts b/lib/workers/repository/onboarding/pr/pr-list.ts index 257453f8437f4777099f48999c1a2a7285dd7b7e..6c596e74baf95df4f2a87d3b13c7f15fb07a329c 100644 --- a/lib/workers/repository/onboarding/pr/pr-list.ts +++ b/lib/workers/repository/onboarding/pr/pr-list.ts @@ -19,7 +19,7 @@ export function getPrList( for (const branch of branches) { const prTitleRe = regEx(/@([a-z]+\/[a-z]+)/); - // TODO #7154 + // TODO #22198 prDesc += `<details>\n<summary>${branch.prTitle!.replace( prTitleRe, '@​$1' @@ -43,12 +43,12 @@ export function getPrList( text += ' - Upgrade '; } if (upgrade.sourceUrl) { - // TODO: types (#7154) + // TODO: types (#22198) text += `[${upgrade.depName!}](${upgrade.sourceUrl})`; } else { text += upgrade.depName!.replace(prTitleRe, '@​$1'); } - // TODO: types (#7154) + // TODO: types (#22198) text += upgrade.isLockfileUpdate ? ` to \`${upgrade.newVersion!}\`` : ` to \`${upgrade.newDigest ?? upgrade.newValue!}\``; @@ -62,7 +62,7 @@ export function getPrList( prDesc += '\n\n'; prDesc += '</details>\n\n'; } - // TODO: type (#7154) + // TODO: type (#22198) const prHourlyLimit = config.prHourlyLimit!; if ( prHourlyLimit > 0 && diff --git a/lib/workers/repository/package-files.ts b/lib/workers/repository/package-files.ts index 02887c20c9ca2b50c0427a3c898e5d71315b81f7..3d1d5a8b39bd3cc30b42e2e081e5e65285372a12 100644 --- a/lib/workers/repository/package-files.ts +++ b/lib/workers/repository/package-files.ts @@ -111,7 +111,7 @@ export class PackageFiles { const digest = dep.currentDigest; const version = ver && digest ? `${ver}@${digest}` : `${digest ?? ver!}`; - // TODO: types (#7154) + // TODO: types (#22198) deps += ` - \`${dep.depName!} ${version}\`\n`; } deps += '\n</details>\n\n'; diff --git a/lib/workers/repository/process/deprecated.ts b/lib/workers/repository/process/deprecated.ts index 4849f721e3356eb2c7784576c289ae87463f9642..40d6d6e445bd82dbcc74f8c1da6edd1c6d554846 100644 --- a/lib/workers/repository/process/deprecated.ts +++ b/lib/workers/repository/process/deprecated.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { GlobalConfig } from '../../../config/global'; import type { RenovateConfig } from '../../../config/types'; import { logger } from '../../../logger'; diff --git a/lib/workers/repository/process/extract-update.ts b/lib/workers/repository/process/extract-update.ts index f384283e0bcc56e219fb92af6ea0e3ee3c9e2a2f..85bb18cbf1d6b9513ad41cf7d56e9b90e5b6fc56 100644 --- a/lib/workers/repository/process/extract-update.ts +++ b/lib/workers/repository/process/extract-update.ts @@ -140,7 +140,7 @@ export async function extract( const extractResult = (await extractAllDependencies(config)) || {}; packageFiles = extractResult.packageFiles; const { extractionFingerprints } = extractResult; - // TODO: fix types (#7154) + // TODO: fix types (#22198) cache.scan[baseBranch!] = { sha: baseBranchSha!, configHash, diff --git a/lib/workers/repository/process/fetch.ts b/lib/workers/repository/process/fetch.ts index b6914823932f67407a9675afc82f518b55ce1783..e60fdf05f857dc21c9cafbbd923db7e845578305 100644 --- a/lib/workers/repository/process/fetch.ts +++ b/lib/workers/repository/process/fetch.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import is from '@sindresorhus/is'; import { getManagerConfig, mergeChildConfig } from '../../../config'; import type { RenovateConfig } from '../../../config/types'; @@ -60,7 +60,7 @@ async function fetchDepUpdates( depConfig = applyPackageRules(depConfig); depConfig.packageName ??= depConfig.depName; if (depConfig.ignoreDeps!.includes(depName!)) { - // TODO: fix types (#7154) + // TODO: fix types (#22198) logger.debug(`Dependency: ${depName!}, is ignored`); dep.skipReason = 'ignored'; } else if (depConfig.enabled === false) { @@ -85,7 +85,7 @@ async function fetchDepUpdates( dep.warnings ??= []; dep.warnings.push({ topic: 'Lookup Error', - // TODO: types (#7154) + // TODO: types (#22198) message: `${depName!}: ${cause.message}`, }); } diff --git a/lib/workers/repository/process/index.ts b/lib/workers/repository/process/index.ts index cf4d87c7f67725f732ccc55ca3fccdc1445af1d2..39b8e76fa894922ea073b4fdecfdaae6650498b0 100644 --- a/lib/workers/repository/process/index.ts +++ b/lib/workers/repository/process/index.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { mergeChildConfig } from '../../../config'; import { GlobalConfig } from '../../../config/global'; import { resolveConfigPresets } from '../../../config/presets'; @@ -37,7 +37,7 @@ async function getBaseBranchConfig( // Retrieve config file name autodetected for this repo const cache = getCache(); - // TODO: types (#7154) + // TODO: types (#22198) const configFileName = cache.configFileName!; try { diff --git a/lib/workers/repository/process/limits.spec.ts b/lib/workers/repository/process/limits.spec.ts index 7c3f43136317cd09dc782b0aae65b927da665140..a3a2e19794d8c882ef1420fcbf22c28236f49380 100644 --- a/lib/workers/repository/process/limits.spec.ts +++ b/lib/workers/repository/process/limits.spec.ts @@ -131,7 +131,7 @@ describe('workers/repository/process/limits', () => { it('returns prConcurrentLimit if errored', async () => { config.branchConcurrentLimit = 2; - // TODO: #7154 + // TODO: #22198 const res = await limits.getConcurrentBranchesRemaining( config, null as never diff --git a/lib/workers/repository/process/limits.ts b/lib/workers/repository/process/limits.ts index 41a96644ddd8a77cd4c805a9b04103d70a2dc092..2dcfe15a4a5844c14e9db49919ab54a1ea4682cd 100644 --- a/lib/workers/repository/process/limits.ts +++ b/lib/workers/repository/process/limits.ts @@ -119,7 +119,7 @@ export async function getConcurrentBranchesRemaining( return concurrentRemaining; } catch (err) { - // TODO: #7154 should never throw + // TODO: #22198 should never throw logger.error({ err }, 'Error checking concurrent branches'); return limit; } diff --git a/lib/workers/repository/process/lookup/filter-checks.ts b/lib/workers/repository/process/lookup/filter-checks.ts index 83b625cffdf00f8c0aafe4dc4787b28c38e0db13..74c02cc24ea0b226a9514df87bf0e5cf7796de55 100644 --- a/lib/workers/repository/process/lookup/filter-checks.ts +++ b/lib/workers/repository/process/lookup/filter-checks.ts @@ -42,7 +42,7 @@ export async function filterInternalChecks( releaseConfig.updateType = getUpdateType( releaseConfig, versioning, - // TODO #7154 + // TODO #22198 currentVersion!, candidateRelease.version ); @@ -72,7 +72,7 @@ export async function filterInternalChecks( } } - // TODO #7154 + // TODO #22198 if (isActiveConfidenceLevel(minimumConfidence!)) { const confidenceLevel = (await getMergeConfidenceLevel( @@ -82,7 +82,7 @@ export async function filterInternalChecks( newVersion, updateType! )) ?? 'neutral'; - // TODO #7154 + // TODO #22198 if (!satisfiesConfidenceLevel(confidenceLevel, minimumConfidence!)) { logger.trace( { depName, check: 'minimumConfidence' }, @@ -113,6 +113,6 @@ export async function filterInternalChecks( } } - // TODO #7154 + // TODO #22198 return { release: release!, pendingChecks, pendingReleases }; } diff --git a/lib/workers/repository/process/lookup/filter.ts b/lib/workers/repository/process/lookup/filter.ts index e94cfbca158e2f7bfc744c4e0111a7970a8bf20c..d78ce787c8d8fca98240902b9202407fb29e9093 100644 --- a/lib/workers/repository/process/lookup/filter.ts +++ b/lib/workers/repository/process/lookup/filter.ts @@ -50,7 +50,7 @@ export function filterVersions( const versionRelease = releases.find( (release) => release.version === v.version ); - // TODO: types (#7154) + // TODO: types (#22198) if (versionRelease!.isDeprecated) { logger.trace( `Skipping ${config.depName!}@${v.version} because it is deprecated` diff --git a/lib/workers/repository/process/lookup/generate.ts b/lib/workers/repository/process/lookup/generate.ts index 5ad3cefff1d30d2e0fbb0d06ca1ebb840dc50440..b7d2f93e6e58c586385778fabcf31b0453d9ec96 100644 --- a/lib/workers/repository/process/lookup/generate.ts +++ b/lib/workers/repository/process/lookup/generate.ts @@ -97,7 +97,7 @@ export async function generateUpdate( } if ( rangeStrategy === 'bump' && - // TODO #7154 + // TODO #22198 versioning.matches(newVersion, currentValue!) ) { update.isBump = true; diff --git a/lib/workers/repository/process/lookup/index.spec.ts b/lib/workers/repository/process/lookup/index.spec.ts index 1a1b1a02f19fc6d51158ff577ddcf0f404dad2f7..f5d7f3c285a99389922ed3f2c84db7018f2436a6 100644 --- a/lib/workers/repository/process/lookup/index.spec.ts +++ b/lib/workers/repository/process/lookup/index.spec.ts @@ -61,7 +61,7 @@ describe('workers/repository/process/lookup/index', () => { beforeEach(() => { // TODO: fix wrong tests jest.resetAllMocks(); - // TODO: fix types #7154 + // TODO: fix types #22198 config = partial<LookupUpdateConfig>(getConfig() as never); config.manager = 'npm'; config.versioning = npmVersioningId; diff --git a/lib/workers/repository/process/lookup/index.ts b/lib/workers/repository/process/lookup/index.ts index 77f6dd5b59a7e481f56a20584839318308300cf1..09ad2c90b896b050fa377fe794a937d0cd4ad4a0 100644 --- a/lib/workers/repository/process/lookup/index.ts +++ b/lib/workers/repository/process/lookup/index.ts @@ -76,7 +76,7 @@ export async function lookupUpdates( if (unconstrainedValue || isValid) { if ( !updatePinnedDependencies && - // TODO #7154 + // TODO #22198 versioning.isSingleVersion(currentValue!) ) { res.skipReason = 'is-pinned'; @@ -158,7 +158,7 @@ export async function lookupUpdates( // Check that existing constraint can be satisfied const allSatisfyingVersions = allVersions.filter( (v) => - // TODO #7154 + // TODO #22198 unconstrainedValue || versioning.matches(v.version, currentValue!) ); if (rollbackPrs && !allSatisfyingVersions.length) { @@ -167,7 +167,7 @@ export async function lookupUpdates( if (!rollback) { res.warnings.push({ topic: packageName, - // TODO: types (#7154) + // TODO: types (#22198) message: `Can't find version matching ${currentValue!} for ${datasource} package ${packageName}`, }); return res; @@ -191,7 +191,7 @@ export async function lookupUpdates( if (rangeStrategy === 'update-lockfile') { currentVersion = lockedVersion!; } - // TODO #7154 + // TODO #22198 currentVersion ??= getCurrentVersion( currentValue!, @@ -223,7 +223,7 @@ export async function lookupUpdates( res.updates.push({ updateType: 'pin', isPin: true, - // TODO: newValue can be null! (#7154) + // TODO: newValue can be null! (#22198) newValue: versioning.getNewValue({ currentValue, rangeStrategy, @@ -244,7 +244,7 @@ export async function lookupUpdates( return res; } // Filter latest, unstable, etc - // TODO #7154 + // TODO #22198 let filteredReleases = filterVersions( config, currentVersion!, @@ -265,7 +265,7 @@ export async function lookupUpdates( for (const release of filteredReleases) { const bucket = getBucket( config, - // TODO #7154 + // TODO #22198 currentVersion!, release.version, versioning @@ -298,7 +298,7 @@ export async function lookupUpdates( const update = await generateUpdate( config, versioning, - // TODO #7154 + // TODO #22198 rangeStrategy!, lockedVersion ?? currentVersion!, @@ -309,7 +309,7 @@ export async function lookupUpdates( update.pendingChecks = pendingChecks; } - // TODO #7154 + // TODO #22198 if (pendingReleases!.length) { update.pendingVersions = pendingReleases!.map((r) => r.version); } @@ -365,7 +365,7 @@ export async function lookupUpdates( // digest update res.updates.push({ updateType: 'digest', - // TODO #7154 + // TODO #22198 newValue: currentValue!, }); } @@ -376,23 +376,23 @@ export async function lookupUpdates( res.updates.push({ isPinDigest: true, updateType: 'pinDigest', - // TODO #7154 + // TODO #22198 newValue: currentValue!, }); } } if (versioning.valueToVersion) { - // TODO #7154 + // TODO #22198 res.currentVersion = versioning.valueToVersion(res.currentVersion!); for (const update of res.updates || /* istanbul ignore next*/ []) { - // TODO #7154 + // TODO #22198 update.newVersion = versioning.valueToVersion(update.newVersion!); } } // update digest for all for (const update of res.updates) { if (pinDigests === true || currentDigest) { - // TODO #7154 + // TODO #22198 update.newDigest = update.newDigest ?? (await getDigest(config, update.newValue))!; @@ -443,7 +443,7 @@ export async function lookupUpdates( update.isReplacement === true || update.newValue !== currentValue || update.isLockfileUpdate === true || - // TODO #7154 + // TODO #22198 (update.newDigest && !update.newDigest.startsWith(currentDigest!)) ); // If range strategy specified in config is 'in-range-only', also strip out updates where currentValue !== newValue diff --git a/lib/workers/repository/process/lookup/rollback.ts b/lib/workers/repository/process/lookup/rollback.ts index 28f1c729b7acf70bb1ed388524d9e421e542d589..3f6ce4dfb3486b61aba0d1b1fd3f565fc126d449 100644 --- a/lib/workers/repository/process/lookup/rollback.ts +++ b/lib/workers/repository/process/lookup/rollback.ts @@ -63,14 +63,14 @@ export function getRollbackUpdate( return null; } const newValue = version.getNewValue({ - // TODO #7154 + // TODO #22198 currentValue: currentValue!, rangeStrategy: 'replace', newVersion, }); return { bucket: 'rollback', - // TODO #7154 + // TODO #22198 newMajor: version.getMajor(newVersion)!, newValue: newValue!, newVersion, diff --git a/lib/workers/repository/process/lookup/utils.ts b/lib/workers/repository/process/lookup/utils.ts index 537c62a0085ad2649e42c2f85f84daac9c7828fd..2142e3a04e43cc2c7d4476027d3772ab40512f1a 100644 --- a/lib/workers/repository/process/lookup/utils.ts +++ b/lib/workers/repository/process/lookup/utils.ts @@ -52,7 +52,7 @@ export function determineNewReplacementValue( if (!is.nullOrUndefined(config.replacementVersion)) { return versioning.getNewValue({ - // TODO #7154 + // TODO #22198 currentValue: config.currentValue!, newVersion: config.replacementVersion, rangeStrategy: rangeStrategy!, diff --git a/lib/workers/repository/process/sort.ts b/lib/workers/repository/process/sort.ts index bd12206188317a1b4b5c5b2784681c961213b3db..76f461b3ab20a4fa32f28220fc341d4b1d52bd6c 100644 --- a/lib/workers/repository/process/sort.ts +++ b/lib/workers/repository/process/sort.ts @@ -20,17 +20,17 @@ export function sortBranches(branches: Partial<BranchConfig>[]): void { return 1; } - // TODO #7154 + // TODO #22198 if (a.prPriority !== b.prPriority) { return b.prPriority! - a.prPriority!; } - // TODO #7154 + // TODO #22198 const sortDiff = sortOrder.indexOf(a.updateType!) - sortOrder.indexOf(b.updateType!); if (sortDiff !== 0) { return sortDiff; } - // TODO #7154 + // TODO #22198 // Sort by prTitle if updateType is the same return a.prTitle! < b.prTitle! ? -1 : 1; }); diff --git a/lib/workers/repository/process/vulnerabilities.ts b/lib/workers/repository/process/vulnerabilities.ts index fe177051e269a5f136f217e37dce9d5f969bb2e7..a51ecd0590017c6916b75c715642b2c308f55742 100644 --- a/lib/workers/repository/process/vulnerabilities.ts +++ b/lib/workers/repository/process/vulnerabilities.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { Ecosystem, Osv, OsvOffline } from '@renovatebot/osv-offline'; import is from '@sindresorhus/is'; import type { CvssScore } from 'vuln-vects'; diff --git a/lib/workers/repository/result.ts b/lib/workers/repository/result.ts index c228db0ed8e3d9c41eb0a9028f89a8ab38b17667..f5abb9cc70e97c6f840c1d0ca3933dff1ec09c22 100644 --- a/lib/workers/repository/result.ts +++ b/lib/workers/repository/result.ts @@ -84,7 +84,7 @@ export function processResult( status = 'unknown'; } logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `Repository result: ${res}, status: ${status}, enabled: ${enabled!}, onboarded: ${onboarded!}` ); return { res, status, enabled, onboarded }; diff --git a/lib/workers/repository/stats.spec.ts b/lib/workers/repository/stats.spec.ts index 1b3d0cf4f408de2b8d887c5b44834fada3d72406..ba92008ccf28f9193b5b83a1bfbf94d0a5333af4 100644 --- a/lib/workers/repository/stats.spec.ts +++ b/lib/workers/repository/stats.spec.ts @@ -52,10 +52,10 @@ describe('workers/repository/stats', () => { describe('printRequestStats()', () => { it('runs', () => { const getStats: number[] = [30, 100, 10, 20]; - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) memCache.get.mockImplementationOnce(() => getStats as any); const setStats: number[] = [110, 80, 20]; - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) memCache.get.mockImplementationOnce(() => setStats as any); const httpStats: RequestStats[] = [ { @@ -101,7 +101,7 @@ describe('workers/repository/stats', () => { statusCode: 401, }, ]; - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) memCache.get.mockImplementationOnce(() => httpStats as any); expect(printRequestStats()).toBeUndefined(); expect(log.trace).toHaveBeenCalledOnce(); diff --git a/lib/workers/repository/update/branch/auto-replace.spec.ts b/lib/workers/repository/update/branch/auto-replace.spec.ts index b455ceb3e0942c942c4b3b43ea54ac1069f89bef..1ca2bbe6d9a0ef93e6a0bc3be8087e200e95969a 100644 --- a/lib/workers/repository/update/branch/auto-replace.spec.ts +++ b/lib/workers/repository/update/branch/auto-replace.spec.ts @@ -26,7 +26,7 @@ describe('workers/repository/update/branch/auto-replace', () => { }); beforeEach(() => { - // TODO: fix types (#7154) + // TODO: fix types (#22198) upgrade = getConfig() as BranchUpgradeConfig; upgrade.packageFile = 'test'; upgrade.manager = 'html'; diff --git a/lib/workers/repository/update/branch/auto-replace.ts b/lib/workers/repository/update/branch/auto-replace.ts index 2d8138c6098ea7c084ed13078e208088827ce70a..607f4468e5620cbcb5fe42e2db6130ffa7140de4 100644 --- a/lib/workers/repository/update/branch/auto-replace.ts +++ b/lib/workers/repository/update/branch/auto-replace.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import is from '@sindresorhus/is'; import { WORKER_FILE_UPDATE_FAILED } from '../../../../constants/error-messages'; import { logger } from '../../../../logger'; @@ -25,7 +25,7 @@ export async function confirmIfDepUpdated( ); // istanbul ignore if if (!newExtract) { - // TODO: fix types (#7154) + // TODO: fix types (#22198) logger.debug(`Could not extract ${packageFile!}`); return false; } @@ -102,7 +102,7 @@ export async function confirmIfDepUpdated( } function getDepsSignature(deps: PackageDependency[]): string { - // TODO: types (#7154) + // TODO: types (#22198) return deps .map( (dep) => @@ -154,7 +154,7 @@ async function checkExistingBranch( ); return null; } - // TODO: fix types (#7154) + // TODO: fix types (#22198) logger.debug(`Branch dep ${depName!} in ${packageFile!} is already updated`); return existingContent; } diff --git a/lib/workers/repository/update/branch/automerge.ts b/lib/workers/repository/update/branch/automerge.ts index e355a4cf141b122498a2ba646cafd3656d8d563b..e6242838401a45316dc91dd9866fabc755179741 100644 --- a/lib/workers/repository/update/branch/automerge.ts +++ b/lib/workers/repository/update/branch/automerge.ts @@ -39,7 +39,7 @@ export async function tryBranchAutomerge( logger.debug(`Automerging branch`); try { if (GlobalConfig.get('dryRun')) { - // TODO: types (#7154) + // TODO: types (#22198) logger.info(`DRY-RUN: Would automerge branch ${config.branchName!}`); } else { await scm.checkoutBranch(config.baseBranch!); diff --git a/lib/workers/repository/update/branch/check-existing.ts b/lib/workers/repository/update/branch/check-existing.ts index e0c2bae0f722aa46ae8331e94106866184fe15c0..0892c608684e8f61f88a6b8e77ca22a15043486a 100644 --- a/lib/workers/repository/update/branch/check-existing.ts +++ b/lib/workers/repository/update/branch/check-existing.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { REPOSITORY_CHANGED } from '../../../../constants/error-messages'; import { logger } from '../../../../logger'; import { Pr, platform } from '../../../../modules/platform'; diff --git a/lib/workers/repository/update/branch/commit.ts b/lib/workers/repository/update/branch/commit.ts index a7f4c04eefabbc0669eefd9f1060dde6f0070795..7a50801e06fec6eb23b4f614f8bcf7fe0e3969c2 100644 --- a/lib/workers/repository/update/branch/commit.ts +++ b/lib/workers/repository/update/branch/commit.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import is from '@sindresorhus/is'; import { GlobalConfig } from '../../../../config/global'; import { CONFIG_SECRETS_EXPOSED } from '../../../../constants/error-messages'; 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 5337097c5a53c90150bd38f90b10b803fcabf5e8..b68ba84eb7f081743371898f03c686d0367386d2 100644 --- a/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts +++ b/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import is from '@sindresorhus/is'; import { mergeChildConfig } from '../../../../config'; import { GlobalConfig } from '../../../../config/global'; @@ -58,7 +58,7 @@ export async function postUpgradeCommandsExecutor( } else { contents = file.contents; } - // TODO #7154 + // TODO #22198 await writeLocalFile(file.path, contents!); } } diff --git a/lib/workers/repository/update/branch/get-updated.ts b/lib/workers/repository/update/branch/get-updated.ts index 144a75b7101bccbb4c4031682448284277e24a64..676c7dfff2bb4b73ef16b0f6853b01d2f59fd613 100644 --- a/lib/workers/repository/update/branch/get-updated.ts +++ b/lib/workers/repository/update/branch/get-updated.ts @@ -37,7 +37,7 @@ export async function getUpdatedPackageFiles( const manager = upgrade.manager!; const packageFile = upgrade.packageFile!; const depName = upgrade.depName!; - // TODO: fix types, can be undefined (#7154) + // TODO: fix types, can be undefined (#22198) const newVersion = upgrade.newVersion!; const currentVersion = upgrade.currentVersion!; const updateLockedDependency = get(manager, 'updateLockedDependency')!; @@ -277,7 +277,7 @@ export async function getUpdatedPackageFiles( const results = await updateArtifacts({ packageFileName: packageFile.path, updatedDeps, - // TODO #7154 + // TODO #22198 newPackageFileContent: packageFile.contents!.toString(), config, }); @@ -308,7 +308,7 @@ export async function getUpdatedPackageFiles( const results = await updateArtifacts({ packageFileName: packageFile.path, updatedDeps, - // TODO #7154 + // TODO #22198 newPackageFileContent: packageFile.contents!.toString(), config, }); diff --git a/lib/workers/repository/update/branch/handle-existing.ts b/lib/workers/repository/update/branch/handle-existing.ts index 42865ecf7f883dbe34f0ebe936cc0345a3ea3d31..3deb228e733a8f9b0caa9da7760512cedd18905d 100644 --- a/lib/workers/repository/update/branch/handle-existing.ts +++ b/lib/workers/repository/update/branch/handle-existing.ts @@ -16,7 +16,7 @@ export async function handleClosedPr( ): Promise<void> { if (pr.state === 'closed') { let content; - // TODO #7154 + // TODO #22198 const userStrings = config.userStrings!; if (config.updateType === 'major') { content = template.compile(userStrings.ignoreMajor, config); diff --git a/lib/workers/repository/update/branch/index.spec.ts b/lib/workers/repository/update/branch/index.spec.ts index ba0f04efa426ebe9ba0bd08950c90bb19d131ac3..b369aaa1ce77f9c5a966c763895ae4789f7f4c09 100644 --- a/lib/workers/repository/update/branch/index.spec.ts +++ b/lib/workers/repository/update/branch/index.spec.ts @@ -105,7 +105,7 @@ describe('workers/repository/update/branch/index', () => { scm.branchExists.mockResolvedValue(false); prWorker.ensurePr = jest.fn(); prAutomerge.checkAutoMerge = jest.fn(); - // TODO: incompatible types (#7154) + // TODO: incompatible types (#22198) config = { ...getConfig(), branchName: 'renovate/some-branch', @@ -130,7 +130,7 @@ describe('workers/repository/update/branch/index', () => { }), }); GlobalConfig.set(adminConfig); - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) sanitize.sanitize.mockImplementation((input) => input!); repoCache.getCache.mockReturnValue({}); }); diff --git a/lib/workers/repository/update/branch/index.ts b/lib/workers/repository/update/branch/index.ts index 4bacd8fe755c31a8c3e67be6e8b87a4c116d6640..24176316c90d1e211d6a18d35352893538e88089 100644 --- a/lib/workers/repository/update/branch/index.ts +++ b/lib/workers/repository/update/branch/index.ts @@ -446,7 +446,7 @@ export async function processBranch( } else { config = { ...config, ...(await shouldReuseExistingBranch(config)) }; } - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`Using reuseExistingBranch: ${config.reuseExistingBranch!}`); if (!(config.reuseExistingBranch && config.skipBranchUpdate)) { await scm.checkoutBranch(config.baseBranch); @@ -821,7 +821,7 @@ export async function processBranch( content += ' - you rename this PR\'s title to start with "rebase!" to trigger it manually'; content += '\n\nThe artifact failure details are included below:\n\n'; - // TODO: types (#7154) + // TODO: types (#22198) config.artifactErrors.forEach((error) => { content += `##### File name: ${error.lockFile!}\n\n`; content += `\`\`\`\n${error.stderr!}\n\`\`\`\n\n`; diff --git a/lib/workers/repository/update/branch/schedule.ts b/lib/workers/repository/update/branch/schedule.ts index bdad745d56ce2705bfdb49882f0b961bf7b34de7..7e26589f214d4c50de8b5abf1b8d6ebd036c94db 100644 --- a/lib/workers/repository/update/branch/schedule.ts +++ b/lib/workers/repository/update/branch/schedule.ts @@ -143,7 +143,7 @@ export function isScheduledNow( ): boolean { let configSchedule = config[scheduleKey]; logger.debug( - // TODO: types (#7154) + // TODO: types (#22198) `Checking schedule(${String(configSchedule)}, ${config.timezone!})` ); if ( diff --git a/lib/workers/repository/update/pr/automerge.ts b/lib/workers/repository/update/pr/automerge.ts index 66960c8f8e56af85e65e60884e9e6681326e1a11..2e9465ea9725e3a56bc1958f88e38629912dffd6 100644 --- a/lib/workers/repository/update/pr/automerge.ts +++ b/lib/workers/repository/update/pr/automerge.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { GlobalConfig } from '../../../../config/global'; import { logger } from '../../../../logger'; import { Pr, platform } from '../../../../modules/platform'; @@ -90,7 +90,7 @@ export async function checkAutoMerge( }; } if (automergeType === 'pr-comment') { - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`Applying automerge comment: ${automergeComment!}`); // istanbul ignore if if (GlobalConfig.get('dryRun')) { @@ -119,7 +119,7 @@ export async function checkAutoMerge( // Let's merge this // istanbul ignore if if (GlobalConfig.get('dryRun')) { - // TODO: types (#7154) + // TODO: types (#22198) logger.info( `DRY-RUN: Would merge PR #${ pr.number @@ -130,7 +130,7 @@ export async function checkAutoMerge( prAutomergeBlockReason: 'DryRun', }; } - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`Automerging #${pr.number} with strategy ${automergeStrategy!}`); const res = await platform.mergePr({ branchName, diff --git a/lib/workers/repository/update/pr/body/index.ts b/lib/workers/repository/update/pr/body/index.ts index ee8d89e99bfccfcfdc5030dea1282e9fa698b327..8e07a77a0afb1dc372f551823fa4b6fa22478399 100644 --- a/lib/workers/repository/update/pr/body/index.ts +++ b/lib/workers/repository/update/pr/body/index.ts @@ -23,7 +23,7 @@ function massageUpdateMetadata(config: BranchConfig): void { changelogUrl, dependencyUrl, } = upgrade; - // TODO: types (#7154) + // TODO: types (#22198) let depNameLinked = upgrade.depName!; const primaryLink = homepage ?? sourceUrl ?? dependencyUrl; if (primaryLink) { diff --git a/lib/workers/repository/update/pr/body/updates-table.spec.ts b/lib/workers/repository/update/pr/body/updates-table.spec.ts index e321e930eb5f4ff608dfb95afdf64e9234cfbc85..eb65cf39536b922ee6b0dc1ff71af6d3eb689d0e 100644 --- a/lib/workers/repository/update/pr/body/updates-table.spec.ts +++ b/lib/workers/repository/update/pr/body/updates-table.spec.ts @@ -87,7 +87,7 @@ describe('workers/repository/update/pr/body/updates-table', () => { displayFrom: '^6.2.3', displayTo: '6.2.3', }); - // TODO #7154 allow or filter undefined + // TODO #22198 allow or filter undefined const upgrade3 = undefined as never; const configObj: BranchConfig = { manager: 'some-manager', diff --git a/lib/workers/repository/update/pr/changelog/github/index.ts b/lib/workers/repository/update/pr/changelog/github/index.ts index 2575c8c12a718e57c8001d334551a045b8374ade..dd03b255818bc3717f89d284b452a739482be4e7 100644 --- a/lib/workers/repository/update/pr/changelog/github/index.ts +++ b/lib/workers/repository/update/pr/changelog/github/index.ts @@ -82,7 +82,7 @@ export async function getReleaseList( _release: ChangeLogRelease ): Promise<ChangeLogNotes[]> { logger.trace('github.getReleaseList()'); - const apiBaseUrl = project.apiBaseUrl!; // TODO #7154 + const apiBaseUrl = project.apiBaseUrl!; // TODO #22198 const repository = project.repository; const notesSourceUrl = joinUrlParts( apiBaseUrl, diff --git a/lib/workers/repository/update/pr/changelog/gitlab/index.ts b/lib/workers/repository/update/pr/changelog/gitlab/index.ts index 418e12df042f37713e547a434911a1055dce4ff8..711c14c329251c5bd00cc1f985a4f6e04470da5e 100644 --- a/lib/workers/repository/update/pr/changelog/gitlab/index.ts +++ b/lib/workers/repository/update/pr/changelog/gitlab/index.ts @@ -64,7 +64,7 @@ export async function getReleaseList( _release: ChangeLogRelease ): Promise<ChangeLogNotes[]> { logger.trace('gitlab.getReleaseNotesMd()'); - // TODO #7154 + // TODO #22198 const apiBaseUrl = project.apiBaseUrl!; // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion const repository = project.repository!; diff --git a/lib/workers/repository/update/pr/changelog/release-notes.ts b/lib/workers/repository/update/pr/changelog/release-notes.ts index 588cc1a47cd18394352e610ccb2f16417500fd6a..caecaf207110732f39ba26167083631e14c86ee6 100644 --- a/lib/workers/repository/update/pr/changelog/release-notes.ts +++ b/lib/workers/repository/update/pr/changelog/release-notes.ts @@ -60,7 +60,7 @@ export function getCachedReleaseList( project: ChangeLogProject, release: ChangeLogRelease ): Promise<ChangeLogNotes[]> { - // TODO: types (#7154) + // TODO: types (#22198) const cacheKey = `getReleaseList-${project.apiBaseUrl!}-${ project.repository }`; @@ -130,7 +130,7 @@ export async function getReleaseNotes( ): Promise<ChangeLogNotes | null> { const { packageName, repository } = project; const { version, gitRef } = release; - // TODO: types (#7154) + // TODO: types (#22198) logger.trace(`getReleaseNotes(${repository}, ${version}, ${packageName!})`); const releases = await getCachedReleaseList(project, release); logger.trace({ releases }, 'Release list from getReleaseList'); @@ -283,7 +283,7 @@ export async function getReleaseNotesMdFileInner( export function getReleaseNotesMdFile( project: ChangeLogProject ): Promise<ChangeLogFile | null> { - // TODO: types (#7154) + // TODO: types (#22198) const cacheKey = `getReleaseNotesMdFile@v2-${project.repository}${ project.sourceDirectory ? `-${project.sourceDirectory}` : '' }-${project.apiBaseUrl!}`; diff --git a/lib/workers/repository/update/pr/changelog/releases.ts b/lib/workers/repository/update/pr/changelog/releases.ts index 25fc822c36a97fcd0f37e34b3da2bf566effd6f3..eb83f63610a808084a16650c4c433e5903bee02e 100644 --- a/lib/workers/repository/update/pr/changelog/releases.ts +++ b/lib/workers/repository/update/pr/changelog/releases.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import { logger } from '../../../../../logger'; import { Release, diff --git a/lib/workers/repository/update/pr/code-owners.spec.ts b/lib/workers/repository/update/pr/code-owners.spec.ts index 191b66e92859c864edbd4ca221f9c03b52ef4ace..5e5874c964bc7a970e74cb92fe39adb40e6738ac 100644 --- a/lib/workers/repository/update/pr/code-owners.spec.ts +++ b/lib/workers/repository/update/pr/code-owners.spec.ts @@ -259,7 +259,7 @@ describe('workers/repository/update/pr/code-owners', () => { ]; codeOwnerFilePaths.forEach((codeOwnerFilePath) => { it(`detects code owner file at '${codeOwnerFilePath}'`, async () => { - // TODO: fix types, jest is using wrong overload (#7154) + // TODO: fix types, jest is using wrong overload (#22198) fs.readLocalFile.mockImplementation((path): Promise<any> => { if (path === codeOwnerFilePath) { return Promise.resolve(['* @mike'].join('\n')); diff --git a/lib/workers/repository/update/pr/index.ts b/lib/workers/repository/update/pr/index.ts index 28cf9b2b6a40d1c97cf1dfb55aa1d87ef99b2112..18ff29263b15389d6c168f7f78272909c7c0b9f0 100644 --- a/lib/workers/repository/update/pr/index.ts +++ b/lib/workers/repository/update/pr/index.ts @@ -228,7 +228,7 @@ export async function ensurePr( function getRepoNameWithSourceDirectory( upgrade: BranchUpgradeConfig ): string { - // TODO: types (#7154) + // TODO: types (#22198) return `${upgrade.repoName!}${ upgrade.sourceDirectory ? `:${upgrade.sourceDirectory}` : '' }`; @@ -241,7 +241,7 @@ export async function ensurePr( // Get changelog and then generate template strings for (const upgrade of upgrades) { - // TODO: types (#7154) + // TODO: types (#22198) const upgradeKey = `${upgrade.depType!}-${upgrade.depName!}-${ upgrade.manager }-${ @@ -297,7 +297,7 @@ export async function ensurePr( for (const upgrade of config.upgrades) { let notesSourceUrl = upgrade.releases?.[0]?.releaseNotes?.notesSourceUrl; if (!notesSourceUrl) { - // TODO: types (#7154) + // TODO: types (#22198) notesSourceUrl = `${upgrade.sourceUrl!}${ upgrade.sourceDirectory ? `:${upgrade.sourceDirectory}` : '' }`; diff --git a/lib/workers/repository/update/pr/labels.spec.ts b/lib/workers/repository/update/pr/labels.spec.ts index f3f16a8cc978f14bfc6d5d88a3b4361e1a7f80c0..1c090ba3e968680cc856fb97a3e122a7cf20a762 100644 --- a/lib/workers/repository/update/pr/labels.spec.ts +++ b/lib/workers/repository/update/pr/labels.spec.ts @@ -49,7 +49,7 @@ describe('workers/repository/update/pr/labels', () => { }); it('null labels ignored', () => { - // TODO #7154 + // TODO #22198 const result = prepareLabels({ labels: ['labelA', null] as never, // an empty space between two commas in an array is categorized as a null value diff --git a/lib/workers/repository/updates/branch-name.ts b/lib/workers/repository/updates/branch-name.ts index 7d3a1aa6eca1df60711b4aa086775f5a13bb1fc4..a41e1051aa7d65c09ecc55277ef51e6105431a00 100644 --- a/lib/workers/repository/updates/branch-name.ts +++ b/lib/workers/repository/updates/branch-name.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import cleanGitRef from 'clean-git-ref'; import slugify from 'slugify'; import type { RenovateConfig } from '../../../config/types'; @@ -49,7 +49,7 @@ export function generateBranchName(update: RenovateConfig): void { // Check whether to use a group name if (update.groupName) { logger.trace('Using group branchName template'); - // TODO: types (#7154) + // TODO: types (#22198) logger.trace( `Dependency ${update.depName!} is part of group ${update.groupName}` ); @@ -98,7 +98,7 @@ export function generateBranchName(update: RenovateConfig): void { const hashedInput = hash(hashInput); - // TODO: types (#7154) + // TODO: types (#22198) update.branchName = `${update.branchPrefix!}${hashedInput.slice( 0, hashLength diff --git a/lib/workers/repository/updates/branchify.ts b/lib/workers/repository/updates/branchify.ts index d6d0ccf12e53aa9e3afcac491840ee596fd851b9..a95c5a242045ff025f1419003f73e33e97383c18 100644 --- a/lib/workers/repository/updates/branchify.ts +++ b/lib/workers/repository/updates/branchify.ts @@ -1,4 +1,4 @@ -// TODO #7154 +// TODO #22198 import type { Merge } from 'type-fest'; import type { RenovateConfig, ValidationMessage } from '../../../config/types'; import { addMeta, logger, removeMeta } from '../../../logger'; @@ -49,7 +49,7 @@ export async function branchifyUpgrades( .filter((upgrade) => { const { manager, packageFile, depName, currentValue, newValue } = upgrade; - // TODO: types (#7154) + // TODO: types (#22198) const upgradeKey = `${packageFile!}:${depName!}:${currentValue!}`; const previousNewValue = seenUpdates[upgradeKey]; if (previousNewValue && previousNewValue !== newValue) { @@ -77,7 +77,7 @@ export async function branchifyUpgrades( branches.push(branch); } removeMeta(['branch']); - // TODO: types (#7154) + // TODO: types (#22198) logger.debug(`config.repoIsOnboarded=${config.repoIsOnboarded!}`); const branchList = config.repoIsOnboarded ? branches.map((upgrade) => upgrade.branchName) diff --git a/lib/workers/repository/updates/flatten.spec.ts b/lib/workers/repository/updates/flatten.spec.ts index acf624181513b3dbaf143154758bbbbfa6151d8f..1719437685e7b3c52b56fd894c3ce5db4fc3ea68 100644 --- a/lib/workers/repository/updates/flatten.spec.ts +++ b/lib/workers/repository/updates/flatten.spec.ts @@ -17,7 +17,7 @@ beforeEach(() => { describe('workers/repository/updates/flatten', () => { describe('flattenUpdates()', () => { it('flattens', async () => { - // TODO #7154 + // TODO #22198 config.lockFileMaintenance!.enabled = true; config.packageRules = [ { diff --git a/test/setup.ts b/test/setup.ts index a222a7b601b61519d7e5b384f6de32feb7904f15..4d9ccd34d51f696e858d44630c41f5448f37a390 100644 --- a/test/setup.ts +++ b/test/setup.ts @@ -40,7 +40,7 @@ declare global { Matchers<R extends void | Promise<void> ? R : void>, 'toMatchObject' > & { - // TODO: override, because type issues (#7154) + // TODO: override, because type issues (#22198) /** * Used to check that a JavaScript object matches a subset of the properties of an object * @@ -110,7 +110,7 @@ interface JestEach extends JestItEach { } interface JestIt extends Global.It { - // TODO: override, because type issues (#7154) + // TODO: override, because type issues (#22198) each: JestEach; } @@ -123,7 +123,7 @@ declare global { const expect: JestExpect; const it: JestIt; const jest: Omit<Jest, 'fn'> & { - // TODO: override, because type issues (#7154) + // TODO: override, because type issues (#22198) fn(): jest.Mock; fn<T, Y extends any[]>(implementation?: (...args: Y) => T): jest.Mock<T, Y>; }; diff --git a/test/util.ts b/test/util.ts index 9e140ef5d78202d8214171c102b9fb076e52cfe3..a3189ac25548c4621b787406a5c9055d07132ef4 100644 --- a/test/util.ts +++ b/test/util.ts @@ -44,7 +44,7 @@ export function partial(obj: unknown = {}): unknown { export const fs = mocked(_fs); export const git = mocked(_git); -// TODO: fix types, jest / typescript is using wrong overload (#7154) +// TODO: fix types, jest / typescript is using wrong overload (#22198) export const platform = mocked(partial<Required<Platform>>(_platform)); export const scm = mocked(_scm); export const env = mocked(_env); diff --git a/tools/docs/config.ts b/tools/docs/config.ts index 3c207e5e970891a3dee8b8a717347c917c50d75b..d668ae0f764f1b309840e8aff97864844c59d5b8 100644 --- a/tools/docs/config.ts +++ b/tools/docs/config.ts @@ -215,7 +215,7 @@ export async function generateConfig(dist: string, bot = false): Promise<void> { (option) => !!option.globalOnly === bot && !managers.has(option.name) ) .forEach((option) => { - // TODO: fix types (#7154,#9610) + // TODO: fix types (#22198,#9610) const el: Record<string, any> = { ...option }; if (!indexed[option.name]) {