renovate 43.64.6 → 43.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modules/manager/bazel-module/artifacts.js +23 -0
- package/dist/modules/manager/bazel-module/artifacts.js.map +1 -0
- package/dist/modules/manager/bazel-module/index.js +5 -0
- package/dist/modules/manager/bazel-module/index.js.map +1 -1
- package/dist/modules/manager/bazel-module/lockfile.js +40 -0
- package/dist/modules/manager/bazel-module/lockfile.js.map +1 -0
- package/dist/modules/manager/bazelisk/artifacts.js +27 -0
- package/dist/modules/manager/bazelisk/artifacts.js.map +1 -0
- package/dist/modules/manager/bazelisk/index.js +5 -0
- package/dist/modules/manager/bazelisk/index.js.map +1 -1
- package/dist/modules/manager/composer/artifacts.js +1 -1
- package/dist/modules/manager/fingerprint.generated.js +2 -2
- package/dist/modules/manager/fingerprint.generated.js.map +1 -1
- package/dist/modules/manager/git-submodules/index.js +1 -1
- package/dist/modules/manager/nix/extract.js +1 -1
- package/dist/modules/manager/npm/post-update/index.js +1 -1
- package/dist/modules/manager/pep621/processors/uv.js +1 -1
- package/dist/modules/manager/pixi/schema.js +1 -1
- package/dist/modules/manager/poetry/schema.js +1 -1
- package/dist/modules/platform/azure/index.js +1 -1
- package/dist/modules/platform/bitbucket-server/index.js +1 -1
- package/dist/modules/platform/github/index.js +1 -1
- package/dist/modules/versioning/api.js +10 -10
- package/dist/util/exec/containerbase.js +5 -0
- package/dist/util/exec/containerbase.js.map +1 -1
- package/dist/workers/repository/onboarding/branch/check.js +1 -1
- package/dist/workers/repository/onboarding/pr/index.js +1 -1
- package/dist/workers/repository/update/branch/index.js +1 -1
- package/dist/workers/repository/update/pr/index.js +1 -1
- package/package.json +2 -2
- package/renovate-schema.json +2 -2
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { logger } from "../../../logger/index.js";
|
|
2
|
+
import { getSiblingFileName, readLocalFile, writeLocalFile } from "../../../util/fs/index.js";
|
|
3
|
+
import { updateBazelLockfile } from "./lockfile.js";
|
|
4
|
+
//#region lib/modules/manager/bazel-module/artifacts.ts
|
|
5
|
+
async function updateArtifacts({ packageFileName, updatedDeps, newPackageFileContent, config }) {
|
|
6
|
+
logger.debug(`bazel-module.updateArtifacts(${packageFileName})`);
|
|
7
|
+
const { isLockFileMaintenance } = config;
|
|
8
|
+
if (!updatedDeps.length && !isLockFileMaintenance) {
|
|
9
|
+
logger.debug("No updated bazel-module deps - returning null");
|
|
10
|
+
return null;
|
|
11
|
+
}
|
|
12
|
+
const lockFileName = getSiblingFileName(packageFileName, "MODULE.bazel.lock");
|
|
13
|
+
if (!await readLocalFile(lockFileName, "utf8")) {
|
|
14
|
+
logger.debug("No MODULE.bazel.lock found - skipping artifact update");
|
|
15
|
+
return null;
|
|
16
|
+
}
|
|
17
|
+
await writeLocalFile(packageFileName, newPackageFileContent);
|
|
18
|
+
return await updateBazelLockfile(lockFileName, packageFileName, isLockFileMaintenance, config.constraints?.bazelisk);
|
|
19
|
+
}
|
|
20
|
+
//#endregion
|
|
21
|
+
export { updateArtifacts };
|
|
22
|
+
|
|
23
|
+
//# sourceMappingURL=artifacts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"artifacts.js","names":[],"sources":["../../../../lib/modules/manager/bazel-module/artifacts.ts"],"sourcesContent":["import { logger } from '../../../logger/index.ts';\nimport {\n getSiblingFileName,\n readLocalFile,\n writeLocalFile,\n} from '../../../util/fs/index.ts';\nimport type { UpdateArtifact, UpdateArtifactsResult } from '../types.ts';\nimport { updateBazelLockfile } from './lockfile.ts';\n\nexport async function updateArtifacts({\n packageFileName,\n updatedDeps,\n newPackageFileContent,\n config,\n}: UpdateArtifact): Promise<UpdateArtifactsResult[] | null> {\n logger.debug(`bazel-module.updateArtifacts(${packageFileName})`);\n const { isLockFileMaintenance } = config;\n\n if (!updatedDeps.length && !isLockFileMaintenance) {\n logger.debug('No updated bazel-module deps - returning null');\n return null;\n }\n\n const lockFileName = getSiblingFileName(packageFileName, 'MODULE.bazel.lock');\n\n const existingLockContent = await readLocalFile(lockFileName, 'utf8');\n if (!existingLockContent) {\n logger.debug('No MODULE.bazel.lock found - skipping artifact update');\n return null;\n }\n\n await writeLocalFile(packageFileName, newPackageFileContent);\n\n return await updateBazelLockfile(\n lockFileName,\n packageFileName,\n isLockFileMaintenance,\n config.constraints?.bazelisk,\n );\n}\n"],"mappings":";;;;AASA,eAAsB,gBAAgB,EACpC,iBACA,aACA,uBACA,UAC0D;AAC1D,QAAO,MAAM,gCAAgC,gBAAgB,GAAG;CAChE,MAAM,EAAE,0BAA0B;AAElC,KAAI,CAAC,YAAY,UAAU,CAAC,uBAAuB;AACjD,SAAO,MAAM,gDAAgD;AAC7D,SAAO;;CAGT,MAAM,eAAe,mBAAmB,iBAAiB,oBAAoB;AAG7E,KAAI,CADwB,MAAM,cAAc,cAAc,OAAO,EAC3C;AACxB,SAAO,MAAM,wDAAwD;AACrE,SAAO;;AAGT,OAAM,eAAe,iBAAiB,sBAAsB;AAE5D,QAAO,MAAM,oBACX,cACA,iBACA,uBACA,OAAO,aAAa,SACrB"}
|
|
@@ -4,13 +4,17 @@ import { GithubTagsDatasource } from "../../datasource/github-tags/index.js";
|
|
|
4
4
|
import { MavenDatasource } from "../../datasource/maven/index.js";
|
|
5
5
|
import { BazelDatasource } from "../../datasource/bazel/index.js";
|
|
6
6
|
import { CrateDatasource } from "../../datasource/crate/index.js";
|
|
7
|
+
import { updateArtifacts } from "./artifacts.js";
|
|
7
8
|
import { extractPackageFile } from "./extract.js";
|
|
8
9
|
//#region lib/modules/manager/bazel-module/index.ts
|
|
9
10
|
var bazel_module_exports = /* @__PURE__ */ __exportAll({
|
|
10
11
|
categories: () => categories,
|
|
11
12
|
defaultConfig: () => defaultConfig,
|
|
12
13
|
extractPackageFile: () => extractPackageFile,
|
|
14
|
+
lockFileNames: () => lockFileNames,
|
|
13
15
|
supportedDatasources: () => supportedDatasources,
|
|
16
|
+
supportsLockFileMaintenance: () => true,
|
|
17
|
+
updateArtifacts: () => updateArtifacts,
|
|
14
18
|
url: () => url
|
|
15
19
|
});
|
|
16
20
|
const url = "https://bazel.build/external/module";
|
|
@@ -23,6 +27,7 @@ const supportedDatasources = [
|
|
|
23
27
|
GithubTagsDatasource.id,
|
|
24
28
|
MavenDatasource.id
|
|
25
29
|
];
|
|
30
|
+
const lockFileNames = ["MODULE.bazel.lock"];
|
|
26
31
|
//#endregion
|
|
27
32
|
export { bazel_module_exports };
|
|
28
33
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../../../../lib/modules/manager/bazel-module/index.ts"],"sourcesContent":["import type { Category } from '../../../constants/index.ts';\nimport { BazelDatasource } from '../../datasource/bazel/index.ts';\nimport { CrateDatasource } from '../../datasource/crate/index.ts';\nimport { DockerDatasource } from '../../datasource/docker/index.ts';\nimport { GithubTagsDatasource } from '../../datasource/github-tags/index.ts';\nimport { MavenDatasource } from '../../datasource/maven/index.ts';\
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../../../lib/modules/manager/bazel-module/index.ts"],"sourcesContent":["import type { Category } from '../../../constants/index.ts';\nimport { BazelDatasource } from '../../datasource/bazel/index.ts';\nimport { CrateDatasource } from '../../datasource/crate/index.ts';\nimport { DockerDatasource } from '../../datasource/docker/index.ts';\nimport { GithubTagsDatasource } from '../../datasource/github-tags/index.ts';\nimport { MavenDatasource } from '../../datasource/maven/index.ts';\n\nexport { updateArtifacts } from './artifacts.ts';\nexport { extractPackageFile } from './extract.ts';\n\nexport const url = 'https://bazel.build/external/module';\nexport const categories: Category[] = ['bazel'];\n\nexport const defaultConfig = {\n managerFilePatterns: ['/(^|/|\\\\.)MODULE\\\\.bazel$/'],\n};\n\nexport const supportedDatasources = [\n BazelDatasource.id,\n CrateDatasource.id,\n DockerDatasource.id,\n GithubTagsDatasource.id,\n MavenDatasource.id,\n];\n\nexport const supportsLockFileMaintenance = true;\nexport const lockFileNames = ['MODULE.bazel.lock'];\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAUA,MAAa,MAAM;AACnB,MAAa,aAAyB,CAAC,QAAQ;AAE/C,MAAa,gBAAgB,EAC3B,qBAAqB,CAAC,6BAA6B,EACpD;AAED,MAAa,uBAAuB;CAClC,gBAAgB;CAChB,gBAAgB;CAChB,iBAAiB;CACjB,qBAAqB;CACrB,gBAAgB;CACjB;AAGD,MAAa,gBAAgB,CAAC,oBAAoB"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import "../../../constants/error-messages.js";
|
|
2
|
+
import { logger } from "../../../logger/index.js";
|
|
3
|
+
import { deleteLocalFile, readLocalFile } from "../../../util/fs/index.js";
|
|
4
|
+
import { exec } from "../../../util/exec/index.js";
|
|
5
|
+
import { getRepoStatus } from "../../../util/git/index.js";
|
|
6
|
+
//#region lib/modules/manager/bazel-module/lockfile.ts
|
|
7
|
+
async function updateBazelLockfile(lockFileName, cwdFile, isLockFileMaintenance, bazeliskConstraint) {
|
|
8
|
+
try {
|
|
9
|
+
if (isLockFileMaintenance) await deleteLocalFile(lockFileName);
|
|
10
|
+
await exec("bazel mod deps", {
|
|
11
|
+
cwdFile,
|
|
12
|
+
docker: {},
|
|
13
|
+
toolConstraints: [{
|
|
14
|
+
toolName: "bazelisk",
|
|
15
|
+
constraint: bazeliskConstraint
|
|
16
|
+
}]
|
|
17
|
+
});
|
|
18
|
+
const status = await getRepoStatus();
|
|
19
|
+
if (!status.modified.includes(lockFileName) && !status.not_added?.includes(lockFileName)) return null;
|
|
20
|
+
return [{ file: {
|
|
21
|
+
type: "addition",
|
|
22
|
+
path: lockFileName,
|
|
23
|
+
contents: await readLocalFile(lockFileName, "utf8")
|
|
24
|
+
} }];
|
|
25
|
+
} catch (err) {
|
|
26
|
+
if (err.message === "temporary-error") throw err;
|
|
27
|
+
logger.warn({
|
|
28
|
+
lockFile: lockFileName,
|
|
29
|
+
err
|
|
30
|
+
}, "Failed to update MODULE.bazel.lock");
|
|
31
|
+
return [{ artifactError: {
|
|
32
|
+
fileName: lockFileName,
|
|
33
|
+
stderr: err.message
|
|
34
|
+
} }];
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
//#endregion
|
|
38
|
+
export { updateBazelLockfile };
|
|
39
|
+
|
|
40
|
+
//# sourceMappingURL=lockfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lockfile.js","names":[],"sources":["../../../../lib/modules/manager/bazel-module/lockfile.ts"],"sourcesContent":["import { TEMPORARY_ERROR } from '../../../constants/error-messages.ts';\nimport { logger } from '../../../logger/index.ts';\nimport { exec } from '../../../util/exec/index.ts';\nimport type { ExecOptions } from '../../../util/exec/types.ts';\nimport { deleteLocalFile, readLocalFile } from '../../../util/fs/index.ts';\nimport { getRepoStatus } from '../../../util/git/index.ts';\nimport type { UpdateArtifactsResult } from '../types.ts';\n\nexport async function updateBazelLockfile(\n lockFileName: string,\n cwdFile: string,\n isLockFileMaintenance: boolean | undefined,\n bazeliskConstraint: string | undefined,\n): Promise<UpdateArtifactsResult[] | null> {\n try {\n if (isLockFileMaintenance) {\n await deleteLocalFile(lockFileName);\n }\n\n const execOptions: ExecOptions = {\n cwdFile,\n docker: {},\n toolConstraints: [\n { toolName: 'bazelisk', constraint: bazeliskConstraint },\n ],\n };\n await exec('bazel mod deps', execOptions);\n\n const status = await getRepoStatus();\n if (\n !status.modified.includes(lockFileName) &&\n !status.not_added?.includes(lockFileName)\n ) {\n return null;\n }\n\n const newLockContent = await readLocalFile(lockFileName, 'utf8');\n return [\n {\n file: {\n type: 'addition',\n path: lockFileName,\n contents: newLockContent,\n },\n },\n ];\n } catch (err) {\n if (err.message === TEMPORARY_ERROR) {\n throw err;\n }\n logger.warn(\n { lockFile: lockFileName, err },\n 'Failed to update MODULE.bazel.lock',\n );\n return [\n {\n artifactError: {\n fileName: lockFileName,\n stderr: err.message,\n },\n },\n ];\n }\n}\n"],"mappings":";;;;;;AAQA,eAAsB,oBACpB,cACA,SACA,uBACA,oBACyC;AACzC,KAAI;AACF,MAAI,sBACF,OAAM,gBAAgB,aAAa;AAUrC,QAAM,KAAK,kBAPsB;GAC/B;GACA,QAAQ,EAAE;GACV,iBAAiB,CACf;IAAE,UAAU;IAAY,YAAY;IAAoB,CACzD;GACF,CACwC;EAEzC,MAAM,SAAS,MAAM,eAAe;AACpC,MACE,CAAC,OAAO,SAAS,SAAS,aAAa,IACvC,CAAC,OAAO,WAAW,SAAS,aAAa,CAEzC,QAAO;AAIT,SAAO,CACL,EACE,MAAM;GACJ,MAAM;GACN,MAAM;GACN,UANiB,MAAM,cAAc,cAAc,OAAO;GAO3D,EACF,CACF;UACM,KAAK;AACZ,MAAI,IAAI,YAAA,kBACN,OAAM;AAER,SAAO,KACL;GAAE,UAAU;GAAc;GAAK,EAC/B,qCACD;AACD,SAAO,CACL,EACE,eAAe;GACb,UAAU;GACV,QAAQ,IAAI;GACb,EACF,CACF"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { logger } from "../../../logger/index.js";
|
|
2
|
+
import { getSiblingFileName, readLocalFile, writeLocalFile } from "../../../util/fs/index.js";
|
|
3
|
+
import { updateBazelLockfile } from "../bazel-module/lockfile.js";
|
|
4
|
+
//#region lib/modules/manager/bazelisk/artifacts.ts
|
|
5
|
+
async function updateArtifacts({ packageFileName, updatedDeps, newPackageFileContent, config }) {
|
|
6
|
+
logger.debug(`bazelisk.updateArtifacts(${packageFileName})`);
|
|
7
|
+
if (!updatedDeps.length && !config.isLockFileMaintenance) {
|
|
8
|
+
logger.debug("No updated bazelisk deps - returning null");
|
|
9
|
+
return null;
|
|
10
|
+
}
|
|
11
|
+
const moduleFileName = getSiblingFileName(packageFileName, "MODULE.bazel");
|
|
12
|
+
if (!await readLocalFile(moduleFileName, "utf8")) {
|
|
13
|
+
logger.debug("No MODULE.bazel found - skipping artifact update");
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
const lockFileName = getSiblingFileName(packageFileName, "MODULE.bazel.lock");
|
|
17
|
+
if (!await readLocalFile(lockFileName, "utf8")) {
|
|
18
|
+
logger.debug("No MODULE.bazel.lock found - skipping artifact update");
|
|
19
|
+
return null;
|
|
20
|
+
}
|
|
21
|
+
await writeLocalFile(packageFileName, newPackageFileContent);
|
|
22
|
+
return await updateBazelLockfile(lockFileName, moduleFileName, config.isLockFileMaintenance, config.constraints?.bazelisk);
|
|
23
|
+
}
|
|
24
|
+
//#endregion
|
|
25
|
+
export { updateArtifacts };
|
|
26
|
+
|
|
27
|
+
//# sourceMappingURL=artifacts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"artifacts.js","names":[],"sources":["../../../../lib/modules/manager/bazelisk/artifacts.ts"],"sourcesContent":["import { logger } from '../../../logger/index.ts';\nimport {\n getSiblingFileName,\n readLocalFile,\n writeLocalFile,\n} from '../../../util/fs/index.ts';\nimport { updateBazelLockfile } from '../bazel-module/lockfile.ts';\nimport type { UpdateArtifact, UpdateArtifactsResult } from '../types.ts';\n\nexport async function updateArtifacts({\n packageFileName,\n updatedDeps,\n newPackageFileContent,\n config,\n}: UpdateArtifact): Promise<UpdateArtifactsResult[] | null> {\n logger.debug(`bazelisk.updateArtifacts(${packageFileName})`);\n\n if (!updatedDeps.length && !config.isLockFileMaintenance) {\n logger.debug('No updated bazelisk deps - returning null');\n return null;\n }\n\n const moduleFileName = getSiblingFileName(packageFileName, 'MODULE.bazel');\n const existingModuleContent = await readLocalFile(moduleFileName, 'utf8');\n if (!existingModuleContent) {\n logger.debug('No MODULE.bazel found - skipping artifact update');\n return null;\n }\n\n const lockFileName = getSiblingFileName(packageFileName, 'MODULE.bazel.lock');\n const existingLockContent = await readLocalFile(lockFileName, 'utf8');\n if (!existingLockContent) {\n logger.debug('No MODULE.bazel.lock found - skipping artifact update');\n return null;\n }\n\n await writeLocalFile(packageFileName, newPackageFileContent);\n\n return await updateBazelLockfile(\n lockFileName,\n moduleFileName,\n config.isLockFileMaintenance,\n config.constraints?.bazelisk,\n );\n}\n"],"mappings":";;;;AASA,eAAsB,gBAAgB,EACpC,iBACA,aACA,uBACA,UAC0D;AAC1D,QAAO,MAAM,4BAA4B,gBAAgB,GAAG;AAE5D,KAAI,CAAC,YAAY,UAAU,CAAC,OAAO,uBAAuB;AACxD,SAAO,MAAM,4CAA4C;AACzD,SAAO;;CAGT,MAAM,iBAAiB,mBAAmB,iBAAiB,eAAe;AAE1E,KAAI,CAD0B,MAAM,cAAc,gBAAgB,OAAO,EAC7C;AAC1B,SAAO,MAAM,mDAAmD;AAChE,SAAO;;CAGT,MAAM,eAAe,mBAAmB,iBAAiB,oBAAoB;AAE7E,KAAI,CADwB,MAAM,cAAc,cAAc,OAAO,EAC3C;AACxB,SAAO,MAAM,wDAAwD;AACrE,SAAO;;AAGT,OAAM,eAAe,iBAAiB,sBAAsB;AAE5D,QAAO,MAAM,oBACX,cACA,gBACA,OAAO,uBACP,OAAO,aAAa,SACrB"}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import { __exportAll } from "../../../_virtual/_rolldown/runtime.js";
|
|
2
2
|
import { id } from "../../versioning/semver/index.js";
|
|
3
3
|
import { GithubReleasesDatasource } from "../../datasource/github-releases/index.js";
|
|
4
|
+
import { updateArtifacts } from "./artifacts.js";
|
|
4
5
|
import { extractPackageFile } from "./extract.js";
|
|
5
6
|
//#region lib/modules/manager/bazelisk/index.ts
|
|
6
7
|
var bazelisk_exports = /* @__PURE__ */ __exportAll({
|
|
7
8
|
categories: () => categories,
|
|
8
9
|
defaultConfig: () => defaultConfig,
|
|
9
10
|
extractPackageFile: () => extractPackageFile,
|
|
11
|
+
lockFileNames: () => lockFileNames,
|
|
10
12
|
supportedDatasources: () => supportedDatasources,
|
|
13
|
+
supportsLockFileMaintenance: () => true,
|
|
14
|
+
updateArtifacts: () => updateArtifacts,
|
|
11
15
|
url: () => url
|
|
12
16
|
});
|
|
13
17
|
const url = "https://github.com/bazelbuild/bazelisk";
|
|
@@ -18,6 +22,7 @@ const defaultConfig = {
|
|
|
18
22
|
versioning: id
|
|
19
23
|
};
|
|
20
24
|
const supportedDatasources = [GithubReleasesDatasource.id];
|
|
25
|
+
const lockFileNames = ["MODULE.bazel.lock"];
|
|
21
26
|
//#endregion
|
|
22
27
|
export { bazelisk_exports };
|
|
23
28
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["semverVersioning.id"],"sources":["../../../../lib/modules/manager/bazelisk/index.ts"],"sourcesContent":["import type { Category } from '../../../constants/index.ts';\nimport { GithubReleasesDatasource } from '../../datasource/github-releases/index.ts';\nimport * as semverVersioning from '../../versioning/semver/index.ts';\n\nexport { extractPackageFile } from './extract.ts';\n\nexport const url = 'https://github.com/bazelbuild/bazelisk';\nexport const categories: Category[] = ['bazel'];\n\nexport const defaultConfig = {\n managerFilePatterns: ['/(^|/)\\\\.bazelversion$/'],\n pinDigests: false,\n versioning: semverVersioning.id,\n};\n\nexport const supportedDatasources = [GithubReleasesDatasource.id];\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","names":["semverVersioning.id"],"sources":["../../../../lib/modules/manager/bazelisk/index.ts"],"sourcesContent":["import type { Category } from '../../../constants/index.ts';\nimport { GithubReleasesDatasource } from '../../datasource/github-releases/index.ts';\nimport * as semverVersioning from '../../versioning/semver/index.ts';\n\nexport { updateArtifacts } from './artifacts.ts';\nexport { extractPackageFile } from './extract.ts';\n\nexport const url = 'https://github.com/bazelbuild/bazelisk';\nexport const categories: Category[] = ['bazel'];\n\nexport const defaultConfig = {\n managerFilePatterns: ['/(^|/)\\\\.bazelversion$/'],\n pinDigests: false,\n versioning: semverVersioning.id,\n};\n\nexport const supportedDatasources = [GithubReleasesDatasource.id];\n\nexport const supportsLockFileMaintenance = true;\nexport const lockFileNames = ['MODULE.bazel.lock'];\n"],"mappings":";;;;;;;;;;;;;;;;AAOA,MAAa,MAAM;AACnB,MAAa,aAAyB,CAAC,QAAQ;AAE/C,MAAa,gBAAgB;CAC3B,qBAAqB,CAAC,0BAA0B;CAChD,YAAY;CACZ,YAAYA;CACb;AAED,MAAa,uBAAuB,CAAC,yBAAyB,GAAG;AAGjE,MAAa,gBAAgB,CAAC,oBAAoB"}
|
|
@@ -7,8 +7,8 @@ import { deleteLocalFile, ensureCacheDir, ensureLocalDir, getSiblingFileName, lo
|
|
|
7
7
|
import { Json } from "../../../util/schema-utils/index.js";
|
|
8
8
|
import { GitTagsDatasource } from "../../datasource/git-tags/index.js";
|
|
9
9
|
import { exec } from "../../../util/exec/index.js";
|
|
10
|
-
import { PackagistDatasource } from "../../datasource/packagist/index.js";
|
|
11
10
|
import { getRepoStatus } from "../../../util/git/index.js";
|
|
11
|
+
import { PackagistDatasource } from "../../datasource/packagist/index.js";
|
|
12
12
|
import { findGithubToken, takePersonalAccessTokenIfPossible } from "../../../util/check-token.js";
|
|
13
13
|
import { Lockfile, PackageFile } from "./schema.js";
|
|
14
14
|
import { extractConstraints, getComposerArguments, getComposerUpdateArguments, getPhpConstraint, isArtifactAuthEnabled, requireComposerDependencyInstallation } from "./utils.js";
|
|
@@ -8,8 +8,8 @@ hashMap.set("azure-pipelines", "4f635b0ecd388ee266d992e8281fd40e3db2f5867d86fc1c
|
|
|
8
8
|
hashMap.set("batect", "fad98996bea8626525ab925f83a6ae0ce9262c53770e7aa7cb448a1e0f1ddf21");
|
|
9
9
|
hashMap.set("batect-wrapper", "d999355511ea7f4053325a18b8cfc8d2b586c61e6760c35e557d383a673e3939");
|
|
10
10
|
hashMap.set("bazel", "c6e0ad88ea468664c3a33263baf7452d83d2d37ff09ba920e18f64ee81fd0acb");
|
|
11
|
-
hashMap.set("bazel-module", "
|
|
12
|
-
hashMap.set("bazelisk", "
|
|
11
|
+
hashMap.set("bazel-module", "94364d77524bd5b12448935a0b9db146cc66c92902df8bc7873b6699c74b7760");
|
|
12
|
+
hashMap.set("bazelisk", "b6ec532dfa7c8f82ad4084df864ac6276e87c27285369323902afc146d3537ac");
|
|
13
13
|
hashMap.set("bicep", "7246e0bfc06e0e28cbb03ac088c5591f648956b086e106aeb251fe5d628329db");
|
|
14
14
|
hashMap.set("bitbucket-pipelines", "09eb044219d74331fea135f50121b7d4d146333eb97e4ccbfa9ddf0eb4012963");
|
|
15
15
|
hashMap.set("bitrise", "afdb46fe37fc0307943089e18b6724065394805e628b4b6c4430a6068c494030");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fingerprint.generated.js","names":[],"sources":["../../../lib/modules/manager/fingerprint.generated.ts"],"sourcesContent":["export const hashMap = new Map<string, string>();\n\nhashMap.set('ansible','1fbc76f78daa14a8c9ab1142e9d1e05c746c0419a9f1455e4279f476590d0c04');\nhashMap.set('ansible-galaxy','8226d47128f2018825d4d6f84794e3183eb79c706045fa7e88491edd5e64106f');\nhashMap.set('argocd','5d35b1992e53130bf83b0e59a0f90ccd3a78919974c69044f306dc5d162f48ce');\nhashMap.set('asdf','1f6fcf620e9c6cd35991380cb6eafb94ec60cd77cbd13335ebe3a1d9727416c9');\nhashMap.set('azure-pipelines','4f635b0ecd388ee266d992e8281fd40e3db2f5867d86fc1cbce72dc33a66e796');\nhashMap.set('batect','fad98996bea8626525ab925f83a6ae0ce9262c53770e7aa7cb448a1e0f1ddf21');\nhashMap.set('batect-wrapper','d999355511ea7f4053325a18b8cfc8d2b586c61e6760c35e557d383a673e3939');\nhashMap.set('bazel','c6e0ad88ea468664c3a33263baf7452d83d2d37ff09ba920e18f64ee81fd0acb');\nhashMap.set('bazel-module','5cb69da92412bbfd9be39d8575e629e5c5d72e058322797e52a41ee1ba442103');\nhashMap.set('bazelisk','c4c8561ff5857a14db68d70867dcc3cf63605380966b1132c295336e5cef5604');\nhashMap.set('bicep','7246e0bfc06e0e28cbb03ac088c5591f648956b086e106aeb251fe5d628329db');\nhashMap.set('bitbucket-pipelines','09eb044219d74331fea135f50121b7d4d146333eb97e4ccbfa9ddf0eb4012963');\nhashMap.set('bitrise','afdb46fe37fc0307943089e18b6724065394805e628b4b6c4430a6068c494030');\nhashMap.set('buildkite','a93effb1f1c5d65b3277c3b4709924eacde282e8efd028a8e3d8c1ce3ef69407');\nhashMap.set('buildpacks','6bef3cb04d66b5cfbb195adb4829bcbccae6408518706744d291bacf0610421f');\nhashMap.set('bun','06b44aafed4cf7bf9276f66edf995b8d9aef9eec08d3d76fe6d9e0b085544e2b');\nhashMap.set('bun-version','df3ae8e4a5de1fa1b4544f3d7fc8117e80adb1e151c46d1ede54a4dbea6521e4');\nhashMap.set('bundler','6d7e9d2018ac03e15f19e8b40ef70dd87d509d5affca24bc464d085899880a25');\nhashMap.set('cake','288c3c36a50371b26957fa71992cc335228d53563c75597b36919ac7286e96eb');\nhashMap.set('cargo','308d7ab4c6d24027b050bf659dfab0e510d9a22f8134695a7c68214908ee4634');\nhashMap.set('cdnurl','d3edf6cdc38e92eb43ff5a2b4e8df6a6a13154cf83244725c39e28d7e6ea9177');\nhashMap.set('circleci','135937d4720718304adb0ba998516f8ce38c3220ccd18b00b8c70c62b45df4da');\nhashMap.set('cloudbuild','8c0c739f7e4082bbfe8e3fdffebaf43e26f70a1314d95b306e9b93e4f4297886');\nhashMap.set('cocoapods','b6ac3b4a6b8a5b32daed37bf695fe177cdb1b4a94ae7f7fb2f4c4c096c0a004c');\nhashMap.set('composer','cdb6895574020cec402e0b878e4078b62f1acfd0392a861cbb523036634f6383');\nhashMap.set('conan','aecc3917d77146db4e57dd12944be1beff860e90b7ebdd2d8fbc449fc1a06574');\nhashMap.set('copier','09f1aeccd473843a231bae41e7c39c6b8c45dd46102cb4f1fb4fc3852d849493');\nhashMap.set('cpanfile','6a1d67d9c8751123deaf0c7f3ac38a07024e960c140f8228fcbcb93954fdca01');\nhashMap.set('crossplane','5c26b1201a1a51454ffb94d829e223a76a781569bf79cdb1e47087c30233ec40');\nhashMap.set('crow','eb9a5f9f95041855dded67bcce3dd54724f690995ed6268d272e8a666ff28fd0');\nhashMap.set('deps-edn','c87dd5e88587147ad1a78f047b814f3c4aa60d6de30d0c49d849391eeaf1b64c');\nhashMap.set('devbox','bcf5334e8a21190baaa25436acf2f17fbf095504262a4e9ee7c62ffb644eb716');\nhashMap.set('devcontainer','24320ed1cb6191d04cb8b2707214d82c08c682597aed1d84f250aa00ad1632ec');\nhashMap.set('docker-compose','5441af5b5abf8d347e46002d47f02f85743401bda28232f49fb7b3bbb772a4fb');\nhashMap.set('dockerfile','322b95f7e55dd78d7fe71306a6f649479eca61c60d75bb10b23604a230dbdd08');\nhashMap.set('droneci','237c8de87b9bf653fb943b56e84e99c45f6d86ae27d86e599b3f3f99c35ba8ee');\nhashMap.set('fleet','fe2b132bd17f9c0a46ea5877bdaa6671c6452391219c9441e367d44deabd7a9a');\nhashMap.set('flux','427e0c1a5b1d8337503a9a568a76532fbde0bab8b355fa8f47312de50eadf2f6');\nhashMap.set('fvm','9b161df0f14bc6e536368952adf373e343630097121a913cea60ee284027fb90');\nhashMap.set('git-submodules','a286e097a5fcc6c946e792b812871147b39ad93f9ad041b5b3216b100f972e95');\nhashMap.set('github-actions','076baaa5a3e96012a800899d9d4c0876341f7e87c2fb981af5ce28ce0bdd0c2a');\nhashMap.set('gitlabci','0dec44dd398bfc5b3c19d0929bea2fef7f386c94acfd1b1d7bc2a31d81d96fd6');\nhashMap.set('gitlabci-include','354cfc4ea327c6d5cd5bee1f17763832efc7f5402e9fd22c579239fccb9c6dab');\nhashMap.set('glasskube','253d6db30bdec75ed5ab5d26f31d69bc07813ba10089a28da12c6a29eff4ec70');\nhashMap.set('gleam','b717a48c525ad6b1d434c6a9db828ddebbb85e94519e89ddc4040878e3600e84');\nhashMap.set('gomod','93c6d963bd46456b438d693f4a385a490e5c729ad544564f2a9d58a1b975fe7b');\nhashMap.set('gradle','39435c4a5525a2c99a303934c23526d972ee9a40672afed801feb144a97c4eb8');\nhashMap.set('gradle-wrapper','8d5f573816e63739d264768b7f2565905036153385a0216b82ea6fed34b1a233');\nhashMap.set('haskell-cabal','d796ec6859e63ab4f1b7030c4016071202c3a44c7c11d4a9131d7e2ba19b396d');\nhashMap.set('helm-requirements','4d90e5e18a380876ad48e21e1ad88ea62e25d973a1ddaa3763447fc0a9f9915b');\nhashMap.set('helm-values','b5c52c6a27d805557418c585c5d3030c95ee641d53057021f3fe060f81b6e1af');\nhashMap.set('helmfile','e5783484b81247279563da3c835afe4002edfc412e13fb91877818ca44ae65f2');\nhashMap.set('helmsman','ef9680c612f702c7f07aea9b6e5d811e91214dcfa5755c9f3803e9528090935e');\nhashMap.set('helmv3','7724bf6cc3ff4afec1809899f619a332f4350049b9578b5c4634514b4448cf2b');\nhashMap.set('hermit','0ed751a4a1db928d5ca3e925408ed8aa453681ca3ab1cb6ea2334759663df6eb');\nhashMap.set('homebrew','3cd972c03dc6333a12fd26413150ffe18c0305aa61a16b490e3306fcec9f0000');\nhashMap.set('html','67c5f3c5c58e96f5dd257ba5987d900cf7fef81d667c3640e96c847b37de35a8');\nhashMap.set('jenkins','268ebfc8a1caf3edeb2192c2b1b2fa4bf18a78a3e731ba20a6c104940a5539f3');\nhashMap.set('jsonnet-bundler','4b73c32ddc3fe45d9777106d45b116777a2960e6e631256a6553060e602f893c');\nhashMap.set('kotlin-script','99ef296792a0ca575ed31d3defb514b05a58083dc01c52ea0890c69d867ba1dd');\nhashMap.set('kubernetes','87d87b2c410facdd0400691e87080a3e1ffe83158f51f52cd784442713122f30');\nhashMap.set('kustomize','1e44d6ef8622252dac6d9649fb04badd12d4827eb2a55f74792aa9de2b915775');\nhashMap.set('leiningen','133fca2c3423f53f2ccc22518153ddbcafbf0f4812376c77e952eb3d24d81f85');\nhashMap.set('maven','6faa1a3a70542bc7e84683c31b2fb86468fdf82a25c264cf2f7fc45dbc98b1d8');\nhashMap.set('maven-wrapper','47ad3458615efaa54641df1fae8d5b9ec3e53c6b8a9e591b1e7575399d09d37a');\nhashMap.set('meteor','4a93a326b27bedfe52118e27e06f39fecd7c55bd4cd7fccec4cb120cac14cec4');\nhashMap.set('mint','b816a49c8525716454d0a2bc9127916d5b27e5cca7b2aa2030312f218942af3e');\nhashMap.set('mise','ee9f970d779f2493617cdf708425919f9f5961cddbc87b4f0c4e762ebc67a7d6');\nhashMap.set('mix','1116e1adf1c18c866f0a9e6fa065c4fb9da055d8d150e625344899bb94095481');\nhashMap.set('nix','f3ffec2f14e7261de8068895b91392e992dcef208fbaf52110d6862e4712c031');\nhashMap.set('nodenv','ac652c28481b001f7471f4183eac07b45d98ecbe83efc275830b0a1b2e0459b8');\nhashMap.set('npm','f100896f5ac7854ba443e149226b399f76f356015131ebe8f298d6dc08589472');\nhashMap.set('nuget','a8162c2819fb23fe6de82c8eb4196133701bb3c538202fe8dc9cab4a326d47e4');\nhashMap.set('nvm','3eb77c7b0acf6d64753de78fad2499b352719853aa6872878c40675d14152322');\nhashMap.set('ocb','032b216684c14b0954e0bb019513a2aca3faaee5748587acb668d377d7c891ca');\nhashMap.set('osgi','32233a1a8a2725699d7448ba438e3d0b78141f7799cd2b588de278d41e26ed10');\nhashMap.set('pep621','f503497a4adef31b29572176e9a69d52fa9b0bfe3477b6e228c906aeb4861de5');\nhashMap.set('pep723','105cdc1674da67d48174457bea670c95d8a023e4263d1efc002f02c7f232b5eb');\nhashMap.set('pip-compile','89152ad6c89f278395f32d289dc3890823c233366547d228e97dd1319aa144b5');\nhashMap.set('pip_requirements','d56819b860371c31005e4b9701526a93d937daf932e749d5775df7ade003a7d9');\nhashMap.set('pip_setup','0175fe550c19d9bd31c978bd83fdc088cb40fcacd5d6751f640164274ae64e61');\nhashMap.set('pipenv','50f5a54ed714fd3d738c1aa9a353cf3aab767899acdcb763088d4bd04f3a737b');\nhashMap.set('pixi','b17af6eaa33e7babcc52cfc9a617c7801c0efb1125bbd6d0d4e9f6fe33afd353');\nhashMap.set('poetry','31fcb2ef5803d87cf1a1a633da241806bca161c681fdce2f2f130372ad7edffc');\nhashMap.set('pre-commit','a6a6e847fdb0f56650e66ef7d69e68de752b390913f79ac31d1a7ec5955d03da');\nhashMap.set('pub','0fbad9f77579fcec3a623c6feab56e71934c67a79bb8f4f0f847452051d2a0ba');\nhashMap.set('puppet','ba58ab689e44acc8f61c3569ab8b40fde01b8a9d3aad712708e2a419e57d8b45');\nhashMap.set('pyenv','9ede8becc97774f9040b40f4472d3e933534b596e04c360bfe0f3c6f95f25182');\nhashMap.set('quadlet','e355e13e104351a8b3516a8e272fc5f7e625c9f39b0c492ba27283a36227c2d4');\nhashMap.set('renovate-config-presets','a394fe55f8b6ba356f29f76efd9f0d34b56baceb111e6d92f95b29b5ca50ac67');\nhashMap.set('ruby-version','2db2140d9eee8c555e729a4de0396fa2d78846d3149890ee12fa515bd654be97');\nhashMap.set('runtime-version','b582b168c0cc595e39010feb10f4b97a82683eb269e9598216fbb11cc186e160');\nhashMap.set('sbt','61f9323c91c45227da71d43120fa1eddc41685502be017118975f77b44fb1b8e');\nhashMap.set('scalafmt','9d36159b56835e96498af026a1fb0543200db0581681ef95ec54988f411e180f');\nhashMap.set('setup-cfg','7dea08c5708625e753bd56918bc214df7fb4d8543a26e936926a21ab43b5f785');\nhashMap.set('sveltos','167a5cc79098803be3b815a28cc40ef3361c455751e1d6a7a99ba91bfce26709');\nhashMap.set('swift','512aa60afb154c8e1daa4b6aa325ada7f42e7e97d8e4f4451a265bba4a63af61');\nhashMap.set('tekton','4e35c75bba4abc9c3cf49c55da6c19db4f4e9181d1fd9583288ab55ef7c944fd');\nhashMap.set('terraform','5bd62ce12c23896b8ecb2385a60a3cb9eb72badf10f9984bfed38f50f9262266');\nhashMap.set('terraform-version','ec8f786b9731d47f2c2fe0307caf64d7ddd83046fe7ff1f7d8423239f8b0f2aa');\nhashMap.set('terragrunt','b8474c65383a702602eee432cc1434f9a49a1ef886d1213de92d7a84fb98b9cd');\nhashMap.set('terragrunt-version','eea6087b33717d22ede2fc68c2f64df8390b75abe82110ed831a180648feb51d');\nhashMap.set('tflint-plugin','4a975f0cc1aa22cd258aa835de3dc98d7a5c0d1cee0a1092324338968e08a827');\nhashMap.set('travis','bb482a0195cd009ec3896a6227bb95617f5c84bedb518c7d971e50c62235d9ca');\nhashMap.set('typst','d080a79fbd961c6e21fcc505d544b7e0ff2126142acb1dcabdf6abbcd9339248');\nhashMap.set('unity3d','f13e25e115e3443f4e16cf31578acffa78fb1a5e23339680a92d8d6de6052920');\nhashMap.set('velaci','fda00ddb7cc23e9a37e0a8a253151df0a6930b4276d3e4f78cc54b9ac09af7de');\nhashMap.set('vendir','4627230d3b7698c41aac192d57b65b091c860c8f858c89d6af4b06ed6a32fae6');\nhashMap.set('woodpecker','6110d3bec33aaeb3511d4bbfa896cec3c8e02fb04a6cff50c9ba81061c851045');\nhashMap.set('jsonata','3b5f465b586993f92c8490e70885e7eecce9b6556bcc376dd9c11db8ee9e6960');\nhashMap.set('regex','7b643b49e498465cf91b25b8b840bb1fec8c8a3a59bfa8f97a39c976675325a0');"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"fingerprint.generated.js","names":[],"sources":["../../../lib/modules/manager/fingerprint.generated.ts"],"sourcesContent":["export const hashMap = new Map<string, string>();\n\nhashMap.set('ansible','1fbc76f78daa14a8c9ab1142e9d1e05c746c0419a9f1455e4279f476590d0c04');\nhashMap.set('ansible-galaxy','8226d47128f2018825d4d6f84794e3183eb79c706045fa7e88491edd5e64106f');\nhashMap.set('argocd','5d35b1992e53130bf83b0e59a0f90ccd3a78919974c69044f306dc5d162f48ce');\nhashMap.set('asdf','1f6fcf620e9c6cd35991380cb6eafb94ec60cd77cbd13335ebe3a1d9727416c9');\nhashMap.set('azure-pipelines','4f635b0ecd388ee266d992e8281fd40e3db2f5867d86fc1cbce72dc33a66e796');\nhashMap.set('batect','fad98996bea8626525ab925f83a6ae0ce9262c53770e7aa7cb448a1e0f1ddf21');\nhashMap.set('batect-wrapper','d999355511ea7f4053325a18b8cfc8d2b586c61e6760c35e557d383a673e3939');\nhashMap.set('bazel','c6e0ad88ea468664c3a33263baf7452d83d2d37ff09ba920e18f64ee81fd0acb');\nhashMap.set('bazel-module','94364d77524bd5b12448935a0b9db146cc66c92902df8bc7873b6699c74b7760');\nhashMap.set('bazelisk','b6ec532dfa7c8f82ad4084df864ac6276e87c27285369323902afc146d3537ac');\nhashMap.set('bicep','7246e0bfc06e0e28cbb03ac088c5591f648956b086e106aeb251fe5d628329db');\nhashMap.set('bitbucket-pipelines','09eb044219d74331fea135f50121b7d4d146333eb97e4ccbfa9ddf0eb4012963');\nhashMap.set('bitrise','afdb46fe37fc0307943089e18b6724065394805e628b4b6c4430a6068c494030');\nhashMap.set('buildkite','a93effb1f1c5d65b3277c3b4709924eacde282e8efd028a8e3d8c1ce3ef69407');\nhashMap.set('buildpacks','6bef3cb04d66b5cfbb195adb4829bcbccae6408518706744d291bacf0610421f');\nhashMap.set('bun','06b44aafed4cf7bf9276f66edf995b8d9aef9eec08d3d76fe6d9e0b085544e2b');\nhashMap.set('bun-version','df3ae8e4a5de1fa1b4544f3d7fc8117e80adb1e151c46d1ede54a4dbea6521e4');\nhashMap.set('bundler','6d7e9d2018ac03e15f19e8b40ef70dd87d509d5affca24bc464d085899880a25');\nhashMap.set('cake','288c3c36a50371b26957fa71992cc335228d53563c75597b36919ac7286e96eb');\nhashMap.set('cargo','308d7ab4c6d24027b050bf659dfab0e510d9a22f8134695a7c68214908ee4634');\nhashMap.set('cdnurl','d3edf6cdc38e92eb43ff5a2b4e8df6a6a13154cf83244725c39e28d7e6ea9177');\nhashMap.set('circleci','135937d4720718304adb0ba998516f8ce38c3220ccd18b00b8c70c62b45df4da');\nhashMap.set('cloudbuild','8c0c739f7e4082bbfe8e3fdffebaf43e26f70a1314d95b306e9b93e4f4297886');\nhashMap.set('cocoapods','b6ac3b4a6b8a5b32daed37bf695fe177cdb1b4a94ae7f7fb2f4c4c096c0a004c');\nhashMap.set('composer','cdb6895574020cec402e0b878e4078b62f1acfd0392a861cbb523036634f6383');\nhashMap.set('conan','aecc3917d77146db4e57dd12944be1beff860e90b7ebdd2d8fbc449fc1a06574');\nhashMap.set('copier','09f1aeccd473843a231bae41e7c39c6b8c45dd46102cb4f1fb4fc3852d849493');\nhashMap.set('cpanfile','6a1d67d9c8751123deaf0c7f3ac38a07024e960c140f8228fcbcb93954fdca01');\nhashMap.set('crossplane','5c26b1201a1a51454ffb94d829e223a76a781569bf79cdb1e47087c30233ec40');\nhashMap.set('crow','eb9a5f9f95041855dded67bcce3dd54724f690995ed6268d272e8a666ff28fd0');\nhashMap.set('deps-edn','c87dd5e88587147ad1a78f047b814f3c4aa60d6de30d0c49d849391eeaf1b64c');\nhashMap.set('devbox','bcf5334e8a21190baaa25436acf2f17fbf095504262a4e9ee7c62ffb644eb716');\nhashMap.set('devcontainer','24320ed1cb6191d04cb8b2707214d82c08c682597aed1d84f250aa00ad1632ec');\nhashMap.set('docker-compose','5441af5b5abf8d347e46002d47f02f85743401bda28232f49fb7b3bbb772a4fb');\nhashMap.set('dockerfile','322b95f7e55dd78d7fe71306a6f649479eca61c60d75bb10b23604a230dbdd08');\nhashMap.set('droneci','237c8de87b9bf653fb943b56e84e99c45f6d86ae27d86e599b3f3f99c35ba8ee');\nhashMap.set('fleet','fe2b132bd17f9c0a46ea5877bdaa6671c6452391219c9441e367d44deabd7a9a');\nhashMap.set('flux','427e0c1a5b1d8337503a9a568a76532fbde0bab8b355fa8f47312de50eadf2f6');\nhashMap.set('fvm','9b161df0f14bc6e536368952adf373e343630097121a913cea60ee284027fb90');\nhashMap.set('git-submodules','a286e097a5fcc6c946e792b812871147b39ad93f9ad041b5b3216b100f972e95');\nhashMap.set('github-actions','076baaa5a3e96012a800899d9d4c0876341f7e87c2fb981af5ce28ce0bdd0c2a');\nhashMap.set('gitlabci','0dec44dd398bfc5b3c19d0929bea2fef7f386c94acfd1b1d7bc2a31d81d96fd6');\nhashMap.set('gitlabci-include','354cfc4ea327c6d5cd5bee1f17763832efc7f5402e9fd22c579239fccb9c6dab');\nhashMap.set('glasskube','253d6db30bdec75ed5ab5d26f31d69bc07813ba10089a28da12c6a29eff4ec70');\nhashMap.set('gleam','b717a48c525ad6b1d434c6a9db828ddebbb85e94519e89ddc4040878e3600e84');\nhashMap.set('gomod','93c6d963bd46456b438d693f4a385a490e5c729ad544564f2a9d58a1b975fe7b');\nhashMap.set('gradle','39435c4a5525a2c99a303934c23526d972ee9a40672afed801feb144a97c4eb8');\nhashMap.set('gradle-wrapper','8d5f573816e63739d264768b7f2565905036153385a0216b82ea6fed34b1a233');\nhashMap.set('haskell-cabal','d796ec6859e63ab4f1b7030c4016071202c3a44c7c11d4a9131d7e2ba19b396d');\nhashMap.set('helm-requirements','4d90e5e18a380876ad48e21e1ad88ea62e25d973a1ddaa3763447fc0a9f9915b');\nhashMap.set('helm-values','b5c52c6a27d805557418c585c5d3030c95ee641d53057021f3fe060f81b6e1af');\nhashMap.set('helmfile','e5783484b81247279563da3c835afe4002edfc412e13fb91877818ca44ae65f2');\nhashMap.set('helmsman','ef9680c612f702c7f07aea9b6e5d811e91214dcfa5755c9f3803e9528090935e');\nhashMap.set('helmv3','7724bf6cc3ff4afec1809899f619a332f4350049b9578b5c4634514b4448cf2b');\nhashMap.set('hermit','0ed751a4a1db928d5ca3e925408ed8aa453681ca3ab1cb6ea2334759663df6eb');\nhashMap.set('homebrew','3cd972c03dc6333a12fd26413150ffe18c0305aa61a16b490e3306fcec9f0000');\nhashMap.set('html','67c5f3c5c58e96f5dd257ba5987d900cf7fef81d667c3640e96c847b37de35a8');\nhashMap.set('jenkins','268ebfc8a1caf3edeb2192c2b1b2fa4bf18a78a3e731ba20a6c104940a5539f3');\nhashMap.set('jsonnet-bundler','4b73c32ddc3fe45d9777106d45b116777a2960e6e631256a6553060e602f893c');\nhashMap.set('kotlin-script','99ef296792a0ca575ed31d3defb514b05a58083dc01c52ea0890c69d867ba1dd');\nhashMap.set('kubernetes','87d87b2c410facdd0400691e87080a3e1ffe83158f51f52cd784442713122f30');\nhashMap.set('kustomize','1e44d6ef8622252dac6d9649fb04badd12d4827eb2a55f74792aa9de2b915775');\nhashMap.set('leiningen','133fca2c3423f53f2ccc22518153ddbcafbf0f4812376c77e952eb3d24d81f85');\nhashMap.set('maven','6faa1a3a70542bc7e84683c31b2fb86468fdf82a25c264cf2f7fc45dbc98b1d8');\nhashMap.set('maven-wrapper','47ad3458615efaa54641df1fae8d5b9ec3e53c6b8a9e591b1e7575399d09d37a');\nhashMap.set('meteor','4a93a326b27bedfe52118e27e06f39fecd7c55bd4cd7fccec4cb120cac14cec4');\nhashMap.set('mint','b816a49c8525716454d0a2bc9127916d5b27e5cca7b2aa2030312f218942af3e');\nhashMap.set('mise','ee9f970d779f2493617cdf708425919f9f5961cddbc87b4f0c4e762ebc67a7d6');\nhashMap.set('mix','1116e1adf1c18c866f0a9e6fa065c4fb9da055d8d150e625344899bb94095481');\nhashMap.set('nix','f3ffec2f14e7261de8068895b91392e992dcef208fbaf52110d6862e4712c031');\nhashMap.set('nodenv','ac652c28481b001f7471f4183eac07b45d98ecbe83efc275830b0a1b2e0459b8');\nhashMap.set('npm','f100896f5ac7854ba443e149226b399f76f356015131ebe8f298d6dc08589472');\nhashMap.set('nuget','a8162c2819fb23fe6de82c8eb4196133701bb3c538202fe8dc9cab4a326d47e4');\nhashMap.set('nvm','3eb77c7b0acf6d64753de78fad2499b352719853aa6872878c40675d14152322');\nhashMap.set('ocb','032b216684c14b0954e0bb019513a2aca3faaee5748587acb668d377d7c891ca');\nhashMap.set('osgi','32233a1a8a2725699d7448ba438e3d0b78141f7799cd2b588de278d41e26ed10');\nhashMap.set('pep621','f503497a4adef31b29572176e9a69d52fa9b0bfe3477b6e228c906aeb4861de5');\nhashMap.set('pep723','105cdc1674da67d48174457bea670c95d8a023e4263d1efc002f02c7f232b5eb');\nhashMap.set('pip-compile','89152ad6c89f278395f32d289dc3890823c233366547d228e97dd1319aa144b5');\nhashMap.set('pip_requirements','d56819b860371c31005e4b9701526a93d937daf932e749d5775df7ade003a7d9');\nhashMap.set('pip_setup','0175fe550c19d9bd31c978bd83fdc088cb40fcacd5d6751f640164274ae64e61');\nhashMap.set('pipenv','50f5a54ed714fd3d738c1aa9a353cf3aab767899acdcb763088d4bd04f3a737b');\nhashMap.set('pixi','b17af6eaa33e7babcc52cfc9a617c7801c0efb1125bbd6d0d4e9f6fe33afd353');\nhashMap.set('poetry','31fcb2ef5803d87cf1a1a633da241806bca161c681fdce2f2f130372ad7edffc');\nhashMap.set('pre-commit','a6a6e847fdb0f56650e66ef7d69e68de752b390913f79ac31d1a7ec5955d03da');\nhashMap.set('pub','0fbad9f77579fcec3a623c6feab56e71934c67a79bb8f4f0f847452051d2a0ba');\nhashMap.set('puppet','ba58ab689e44acc8f61c3569ab8b40fde01b8a9d3aad712708e2a419e57d8b45');\nhashMap.set('pyenv','9ede8becc97774f9040b40f4472d3e933534b596e04c360bfe0f3c6f95f25182');\nhashMap.set('quadlet','e355e13e104351a8b3516a8e272fc5f7e625c9f39b0c492ba27283a36227c2d4');\nhashMap.set('renovate-config-presets','a394fe55f8b6ba356f29f76efd9f0d34b56baceb111e6d92f95b29b5ca50ac67');\nhashMap.set('ruby-version','2db2140d9eee8c555e729a4de0396fa2d78846d3149890ee12fa515bd654be97');\nhashMap.set('runtime-version','b582b168c0cc595e39010feb10f4b97a82683eb269e9598216fbb11cc186e160');\nhashMap.set('sbt','61f9323c91c45227da71d43120fa1eddc41685502be017118975f77b44fb1b8e');\nhashMap.set('scalafmt','9d36159b56835e96498af026a1fb0543200db0581681ef95ec54988f411e180f');\nhashMap.set('setup-cfg','7dea08c5708625e753bd56918bc214df7fb4d8543a26e936926a21ab43b5f785');\nhashMap.set('sveltos','167a5cc79098803be3b815a28cc40ef3361c455751e1d6a7a99ba91bfce26709');\nhashMap.set('swift','512aa60afb154c8e1daa4b6aa325ada7f42e7e97d8e4f4451a265bba4a63af61');\nhashMap.set('tekton','4e35c75bba4abc9c3cf49c55da6c19db4f4e9181d1fd9583288ab55ef7c944fd');\nhashMap.set('terraform','5bd62ce12c23896b8ecb2385a60a3cb9eb72badf10f9984bfed38f50f9262266');\nhashMap.set('terraform-version','ec8f786b9731d47f2c2fe0307caf64d7ddd83046fe7ff1f7d8423239f8b0f2aa');\nhashMap.set('terragrunt','b8474c65383a702602eee432cc1434f9a49a1ef886d1213de92d7a84fb98b9cd');\nhashMap.set('terragrunt-version','eea6087b33717d22ede2fc68c2f64df8390b75abe82110ed831a180648feb51d');\nhashMap.set('tflint-plugin','4a975f0cc1aa22cd258aa835de3dc98d7a5c0d1cee0a1092324338968e08a827');\nhashMap.set('travis','bb482a0195cd009ec3896a6227bb95617f5c84bedb518c7d971e50c62235d9ca');\nhashMap.set('typst','d080a79fbd961c6e21fcc505d544b7e0ff2126142acb1dcabdf6abbcd9339248');\nhashMap.set('unity3d','f13e25e115e3443f4e16cf31578acffa78fb1a5e23339680a92d8d6de6052920');\nhashMap.set('velaci','fda00ddb7cc23e9a37e0a8a253151df0a6930b4276d3e4f78cc54b9ac09af7de');\nhashMap.set('vendir','4627230d3b7698c41aac192d57b65b091c860c8f858c89d6af4b06ed6a32fae6');\nhashMap.set('woodpecker','6110d3bec33aaeb3511d4bbfa896cec3c8e02fb04a6cff50c9ba81061c851045');\nhashMap.set('jsonata','3b5f465b586993f92c8490e70885e7eecce9b6556bcc376dd9c11db8ee9e6960');\nhashMap.set('regex','7b643b49e498465cf91b25b8b840bb1fec8c8a3a59bfa8f97a39c976675325a0');"],"mappings":";AAAA,MAAa,0BAAU,IAAI,KAAqB;AAEhD,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,kBAAiB,mEAAmE;AAChG,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,mBAAkB,mEAAmE;AACjG,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,kBAAiB,mEAAmE;AAChG,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,gBAAe,mEAAmE;AAC9F,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,uBAAsB,mEAAmE;AACrG,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,eAAc,mEAAmE;AAC7F,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,gBAAe,mEAAmE;AAC9F,QAAQ,IAAI,kBAAiB,mEAAmE;AAChG,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,kBAAiB,mEAAmE;AAChG,QAAQ,IAAI,kBAAiB,mEAAmE;AAChG,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,oBAAmB,mEAAmE;AAClG,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,kBAAiB,mEAAmE;AAChG,QAAQ,IAAI,iBAAgB,mEAAmE;AAC/F,QAAQ,IAAI,qBAAoB,mEAAmE;AACnG,QAAQ,IAAI,eAAc,mEAAmE;AAC7F,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,mBAAkB,mEAAmE;AACjG,QAAQ,IAAI,iBAAgB,mEAAmE;AAC/F,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,iBAAgB,mEAAmE;AAC/F,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,eAAc,mEAAmE;AAC7F,QAAQ,IAAI,oBAAmB,mEAAmE;AAClG,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,QAAO,mEAAmE;AACtF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,2BAA0B,mEAAmE;AACzG,QAAQ,IAAI,gBAAe,mEAAmE;AAC9F,QAAQ,IAAI,mBAAkB,mEAAmE;AACjG,QAAQ,IAAI,OAAM,mEAAmE;AACrF,QAAQ,IAAI,YAAW,mEAAmE;AAC1F,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,aAAY,mEAAmE;AAC3F,QAAQ,IAAI,qBAAoB,mEAAmE;AACnG,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,sBAAqB,mEAAmE;AACpG,QAAQ,IAAI,iBAAgB,mEAAmE;AAC/F,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,SAAQ,mEAAmE;AACvF,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,UAAS,mEAAmE;AACxF,QAAQ,IAAI,cAAa,mEAAmE;AAC5F,QAAQ,IAAI,WAAU,mEAAmE;AACzF,QAAQ,IAAI,SAAQ,mEAAmE"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __exportAll } from "../../../_virtual/_rolldown/runtime.js";
|
|
2
|
-
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
3
2
|
import "../../versioning/git/index.js";
|
|
3
|
+
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
4
4
|
import updateArtifacts from "./artifacts.js";
|
|
5
5
|
import extractPackageFile from "./extract.js";
|
|
6
6
|
import updateDependency from "./update.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { regEx } from "../../../util/regex.js";
|
|
2
2
|
import { logger } from "../../../logger/index.js";
|
|
3
3
|
import { getSiblingFileName, readLocalFile } from "../../../util/fs/index.js";
|
|
4
|
-
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
5
4
|
import "../../versioning/git/index.js";
|
|
6
5
|
import { id } from "../../versioning/nixpkgs/index.js";
|
|
6
|
+
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
7
7
|
import { NixFlakeLock } from "./schema.js";
|
|
8
8
|
//#region lib/modules/manager/nix/extract.ts
|
|
9
9
|
const lockableHTTPTarballProtocol = regEx("^https://(?<domain>[^/]+)/(?<owner>[^/]+)/(?<repo>[^/]+)/archive/(?<rev>.+).tar.gz$");
|
|
@@ -7,11 +7,11 @@ import { dump, parseSingleYaml } from "../../../../util/yaml.js";
|
|
|
7
7
|
import { ExternalHostError } from "../../../../types/errors/external-host-error.js";
|
|
8
8
|
import { ensureCacheDir, getSiblingFileName, readLocalFile, writeLocalFile } from "../../../../util/fs/index.js";
|
|
9
9
|
import { NpmDatasource } from "../../../datasource/npm/index.js";
|
|
10
|
+
import { getFile, getRepoStatus } from "../../../../util/git/index.js";
|
|
10
11
|
import { PNPM_CACHE_BASE_DIR, YARN_CACHE_DIR, YARN_GLOBAL_DIR } from "../constants.js";
|
|
11
12
|
import { processHostRules } from "./rules.js";
|
|
12
13
|
import { composeLockFile, getNpmrcContent, parseLockFile, resetNpmrcContent, updateNpmrcContent } from "../utils.js";
|
|
13
14
|
import { getZeroInstallPaths } from "../extract/yarn.js";
|
|
14
|
-
import { getFile, getRepoStatus } from "../../../../util/git/index.js";
|
|
15
15
|
import { scm } from "../../../platform/scm.js";
|
|
16
16
|
import { generateLockFile } from "./npm.js";
|
|
17
17
|
import { generateLockFile as generateLockFile$1 } from "./pnpm.js";
|
|
@@ -7,8 +7,8 @@ import { Result } from "../../../../util/result.js";
|
|
|
7
7
|
import { getGoogleAuthHostRule } from "../../../datasource/util.js";
|
|
8
8
|
import { getGitEnvironmentVariables } from "../../../../util/git/auth.js";
|
|
9
9
|
import { PypiDatasource } from "../../../datasource/pypi/index.js";
|
|
10
|
-
import { applyGitSource } from "../../util.js";
|
|
11
10
|
import { exec } from "../../../../util/exec/index.js";
|
|
11
|
+
import { applyGitSource } from "../../util.js";
|
|
12
12
|
import { BasePyProjectProcessor } from "./abstract.js";
|
|
13
13
|
import { depTypes } from "../utils.js";
|
|
14
14
|
import { UvLockfile } from "../schema.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { LooseRecord, Toml, Yaml } from "../../../util/schema-utils/index.js";
|
|
2
2
|
import { id } from "../../versioning/pep440/index.js";
|
|
3
3
|
import { PypiDatasource } from "../../datasource/pypi/index.js";
|
|
4
|
-
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
5
4
|
import { id as id$1 } from "../../versioning/conda/index.js";
|
|
6
5
|
import "../../versioning/git/index.js";
|
|
6
|
+
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
7
7
|
import { CondaDatasource } from "../../datasource/conda/index.js";
|
|
8
8
|
import { PyProject } from "../pep621/schema.js";
|
|
9
9
|
import { z } from "zod/v3";
|
|
@@ -9,10 +9,10 @@ import { GithubTagsDatasource } from "../../datasource/github-tags/index.js";
|
|
|
9
9
|
import { normalizePythonDepName } from "../../datasource/pypi/common.js";
|
|
10
10
|
import { PypiDatasource } from "../../datasource/pypi/index.js";
|
|
11
11
|
import { GitlabTagsDatasource } from "../../datasource/gitlab-tags/index.js";
|
|
12
|
-
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
13
12
|
import "../../versioning/git/index.js";
|
|
14
13
|
import { id as id$1, isValid as isValid$1 } from "../../versioning/poetry/index.js";
|
|
15
14
|
import { uniq } from "../../../util/uniq.js";
|
|
15
|
+
import { GitRefsDatasource } from "../../datasource/git-refs/index.js";
|
|
16
16
|
import { depTypes } from "../pep621/utils.js";
|
|
17
17
|
import { DependencyGroup, ProjectSection } from "../pep621/schema.js";
|
|
18
18
|
import { dependencyPattern } from "../pip_requirements/extract.js";
|
|
@@ -7,8 +7,8 @@ import { ensureTrailingSlash } from "../../../util/url.js";
|
|
|
7
7
|
import { find } from "../../../util/host-rules.js";
|
|
8
8
|
import { parseJson } from "../../../util/common.js";
|
|
9
9
|
import { ExternalHostError } from "../../../types/errors/external-host-error.js";
|
|
10
|
-
import { coreApi, gitApi, setEndpoint } from "./azure-got-wrapper.js";
|
|
11
10
|
import { initRepo as initRepo$1 } from "../../../util/git/index.js";
|
|
11
|
+
import { coreApi, gitApi, setEndpoint } from "./azure-got-wrapper.js";
|
|
12
12
|
import { getNewBranchName, repoFingerprint } from "../util.js";
|
|
13
13
|
import { smartTruncate } from "../utils/pr-body.js";
|
|
14
14
|
import { getBranchNameWithoutRefsheadsPrefix, getGitStatusContextCombinedName, getGitStatusContextFromCombinedName, getRenovatePRFormat, getRepoByName, getStorageExtraCloneOpts, mapMergeStrategy, max4000Chars } from "./util.js";
|
|
@@ -10,8 +10,8 @@ import { find } from "../../../util/host-rules.js";
|
|
|
10
10
|
import { parseJson } from "../../../util/common.js";
|
|
11
11
|
import { memCacheProvider } from "../../../util/http/cache/memory-http-cache-provider.js";
|
|
12
12
|
import { isEmailAdress } from "../../../util/schema-utils/index.js";
|
|
13
|
-
import { BitbucketServerHttp, setBaseUrl } from "../../../util/http/bitbucket-server.js";
|
|
14
13
|
import { branchExists, deleteBranch, getBranchCommit, initRepo as initRepo$1 } from "../../../util/git/index.js";
|
|
14
|
+
import { BitbucketServerHttp, setBaseUrl } from "../../../util/http/bitbucket-server.js";
|
|
15
15
|
import { getNewBranchName, repoFingerprint } from "../util.js";
|
|
16
16
|
import { smartTruncate } from "../utils/pr-body.js";
|
|
17
17
|
import { sampleSize } from "../../../util/sample.js";
|
|
@@ -13,10 +13,10 @@ import { ExternalHostError } from "../../../types/errors/external-host-error.js"
|
|
|
13
13
|
import { memCacheProvider } from "../../../util/http/cache/memory-http-cache-provider.js";
|
|
14
14
|
import { coerceObject } from "../../../util/object.js";
|
|
15
15
|
import { setBaseUrl } from "../../../util/http/github.js";
|
|
16
|
-
import { GithubBranchProtection, GithubBranchRulesets, GithubVulnerabilityAlert } from "./schema.js";
|
|
17
16
|
import { instrument } from "../../../instrumentation/index.js";
|
|
18
17
|
import { incLimitedValue } from "../../../workers/global/limits.js";
|
|
19
18
|
import { fetchBranch, forcePushToRemote, getBranchCommit, initRepo as initRepo$1, listCommitTree, prepareCommit, pushCommitToRenovateRef, resetToCommit } from "../../../util/git/index.js";
|
|
19
|
+
import { GithubBranchProtection, GithubBranchRulesets, GithubVulnerabilityAlert } from "./schema.js";
|
|
20
20
|
import { isGithubFineGrainedPersonalAccessToken } from "../../../util/check-token.js";
|
|
21
21
|
import { coerceToNull } from "../../../util/coerce.js";
|
|
22
22
|
import { repoCacheProvider } from "../../../util/http/cache/repository-http-cache-provider.js";
|
|
@@ -14,12 +14,12 @@ import api$13, { id as id$11 } from "./maven/index.js";
|
|
|
14
14
|
import api$14, { id as id$12 } from "./gradle/index.js";
|
|
15
15
|
import api$15, { id as id$13 } from "./bazel-module/index.js";
|
|
16
16
|
import api$16, { id as id$14 } from "./cargo/index.js";
|
|
17
|
-
import api$17, { id as id$15 } from "./
|
|
18
|
-
import api$18,
|
|
19
|
-
import
|
|
20
|
-
import api$20 from "./
|
|
21
|
-
import api$21, { id as id$18 } from "./aws-
|
|
22
|
-
import api$22, { id as id$19 } from "./
|
|
17
|
+
import api$17, { id as id$15 } from "./composer/index.js";
|
|
18
|
+
import { api as api$18, id as id$16 } from "./conda/index.js";
|
|
19
|
+
import api$19 from "./apk/index.js";
|
|
20
|
+
import api$20, { id as id$17 } from "./aws-eks-addon/index.js";
|
|
21
|
+
import api$21, { id as id$18 } from "./aws-machine-image/index.js";
|
|
22
|
+
import api$22, { id as id$19 } from "./azure-rest-api/index.js";
|
|
23
23
|
import api$23, { id as id$20 } from "./conan/index.js";
|
|
24
24
|
import api$24 from "./deb/index.js";
|
|
25
25
|
import api$25, { id as id$21 } from "./deno/index.js";
|
|
@@ -52,15 +52,15 @@ import api$51, { id as id$40 } from "./unity3d/index.js";
|
|
|
52
52
|
import api$52, { id as id$41 } from "./unity3d-packages/index.js";
|
|
53
53
|
//#region lib/modules/versioning/api.ts
|
|
54
54
|
const api = /* @__PURE__ */ new Map();
|
|
55
|
-
api.set("apk", api$
|
|
55
|
+
api.set("apk", api$19);
|
|
56
|
+
api.set(id$17, api$20);
|
|
56
57
|
api.set(id$18, api$21);
|
|
57
58
|
api.set(id$19, api$22);
|
|
58
|
-
api.set(id$15, api$17);
|
|
59
59
|
api.set(id$13, api$15);
|
|
60
60
|
api.set(id$14, api$16);
|
|
61
|
-
api.set(id$
|
|
61
|
+
api.set(id$15, api$17);
|
|
62
62
|
api.set(id$20, api$23);
|
|
63
|
-
api.set(id$
|
|
63
|
+
api.set(id$16, api$18);
|
|
64
64
|
api.set("deb", api$24);
|
|
65
65
|
api.set(id$1, api$2);
|
|
66
66
|
api.set(id$21, api$25);
|
|
@@ -17,6 +17,11 @@ import { isString } from "@sindresorhus/is";
|
|
|
17
17
|
import { quote } from "shlex";
|
|
18
18
|
//#region lib/util/exec/containerbase.ts
|
|
19
19
|
const allToolConfig = {
|
|
20
|
+
bazelisk: {
|
|
21
|
+
datasource: "github-releases",
|
|
22
|
+
packageName: "bazelbuild/bazelisk",
|
|
23
|
+
versioning: id$1
|
|
24
|
+
},
|
|
20
25
|
bun: {
|
|
21
26
|
datasource: "github-releases",
|
|
22
27
|
packageName: "oven-sh/bun",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerbase.js","names":["rubyVersioningId","composerVersioningId","pep440VersioningId","semverVersioningId","semverCoercedVersioningId","gradleVersioningId","mavenVersioningId","nodeVersioningId","condaVersioningId","pythonVersioningId","allVersioning.get"],"sources":["../../../lib/util/exec/containerbase.ts"],"sourcesContent":["import { isString } from '@sindresorhus/is';\nimport { quote } from 'shlex';\nimport { GlobalConfig } from '../../config/global.ts';\nimport { logger } from '../../logger/index.ts';\nimport type { ReleaseResult } from '../../modules/datasource/index.ts';\nimport { id as composerVersioningId } from '../../modules/versioning/composer/index.ts';\nimport { id as condaVersioningId } from '../../modules/versioning/conda/index.ts';\nimport { id as gradleVersioningId } from '../../modules/versioning/gradle/index.ts';\nimport * as allVersioning from '../../modules/versioning/index.ts';\nimport { id as mavenVersioningId } from '../../modules/versioning/maven/index.ts';\nimport { id as nodeVersioningId } from '../../modules/versioning/node/index.ts';\nimport { id as npmVersioningId } from '../../modules/versioning/npm/index.ts';\nimport { id as pep440VersioningId } from '../../modules/versioning/pep440/index.ts';\nimport { id as pythonVersioningId } from '../../modules/versioning/python/index.ts';\nimport { id as rubyVersioningId } from '../../modules/versioning/ruby/index.ts';\nimport { id as semverVersioningId } from '../../modules/versioning/semver/index.ts';\nimport { id as semverCoercedVersioningId } from '../../modules/versioning/semver-coerced/index.ts';\nimport { getEnv } from '../env.ts';\nimport type { Opt, ToolConfig, ToolConstraint } from './types.ts';\n\nconst allToolConfig: Record<string, ToolConfig> = {\n bun: {\n datasource: 'github-releases',\n packageName: 'oven-sh/bun',\n extractVersion: '^bun-v(?<version>.*)$',\n versioning: npmVersioningId,\n },\n bundler: {\n datasource: 'rubygems',\n packageName: 'bundler',\n versioning: rubyVersioningId,\n },\n cocoapods: {\n datasource: 'rubygems',\n packageName: 'cocoapods',\n versioning: rubyVersioningId,\n },\n composer: {\n datasource: 'github-releases',\n packageName: 'containerbase/composer-prebuild',\n versioning: composerVersioningId,\n },\n conan: {\n datasource: 'pypi',\n packageName: 'conan',\n versioning: pep440VersioningId,\n },\n copier: {\n datasource: 'pypi',\n packageName: 'copier',\n versioning: pep440VersioningId,\n },\n corepack: {\n datasource: 'npm',\n packageName: 'corepack',\n versioning: npmVersioningId,\n },\n devbox: {\n datasource: 'github-releases',\n packageName: 'jetify-com/devbox',\n versioning: semverVersioningId,\n },\n dotnet: {\n datasource: 'dotnet-version',\n packageName: 'dotnet-sdk',\n versioning: semverVersioningId,\n },\n erlang: {\n datasource: 'github-releases',\n packageName: 'containerbase/erlang-prebuild',\n versioning: semverCoercedVersioningId,\n },\n elixir: {\n datasource: 'github-releases',\n packageName: 'elixir-lang/elixir',\n versioning: semverVersioningId,\n },\n flux: {\n datasource: 'github-releases',\n packageName: 'fluxcd/flux2',\n versioning: semverVersioningId,\n },\n gleam: {\n datasource: 'github-releases',\n packageName: 'gleam-lang/gleam',\n versioning: semverVersioningId,\n },\n golang: {\n datasource: 'github-releases',\n packageName: 'containerbase/golang-prebuild',\n versioning: npmVersioningId,\n },\n gradle: {\n datasource: 'gradle-version',\n packageName: 'gradle',\n versioning: gradleVersioningId,\n },\n hashin: {\n datasource: 'pypi',\n packageName: 'hashin',\n versioning: pep440VersioningId,\n },\n helm: {\n datasource: 'github-releases',\n packageName: 'helm/helm',\n versioning: semverVersioningId,\n },\n helmfile: {\n datasource: 'github-releases',\n packageName: 'helmfile/helmfile',\n versioning: semverVersioningId,\n },\n java: {\n datasource: 'java-version',\n packageName: 'java?system=true',\n versioning: npmVersioningId,\n },\n /* not used in Renovate */\n 'java-maven': {\n datasource: 'java-version',\n packageName: 'java?system=true',\n versioning: mavenVersioningId,\n },\n jb: {\n datasource: 'github-releases',\n packageName: 'jsonnet-bundler/jsonnet-bundler',\n versioning: semverVersioningId,\n },\n kustomize: {\n datasource: 'github-releases',\n packageName: 'kubernetes-sigs/kustomize',\n extractVersion: '^kustomize/v(?<version>.*)$',\n versioning: semverVersioningId,\n },\n maven: {\n datasource: 'github-releases',\n packageName: 'containerbase/maven-prebuild',\n versioning: mavenVersioningId,\n },\n nix: {\n datasource: 'github-releases',\n packageName: 'containerbase/nix-prebuild',\n versioning: semverVersioningId,\n },\n node: {\n datasource: 'github-releases',\n packageName: 'containerbase/node-prebuild',\n versioning: nodeVersioningId,\n },\n npm: {\n datasource: 'npm',\n packageName: 'npm',\n versioning: npmVersioningId,\n },\n pdm: {\n datasource: 'github-releases',\n packageName: 'pdm-project/pdm',\n versioning: semverVersioningId,\n },\n php: {\n datasource: 'github-releases',\n packageName: 'containerbase/php-prebuild',\n versioning: composerVersioningId,\n },\n 'pip-tools': {\n datasource: 'pypi',\n packageName: 'pip-tools',\n versioning: pep440VersioningId,\n },\n pipenv: {\n datasource: 'pypi',\n packageName: 'pipenv',\n versioning: pep440VersioningId,\n },\n pnpm: {\n datasource: 'npm',\n packageName: 'pnpm',\n versioning: npmVersioningId,\n },\n pixi: {\n datasource: 'github-releases',\n packageName: 'prefix-dev/pixi',\n versioning: condaVersioningId,\n extractVersion: '^v(?<version>.*)$',\n },\n poetry: {\n datasource: 'pypi',\n packageName: 'poetry',\n versioning: pep440VersioningId,\n },\n python: {\n datasource: 'github-releases',\n packageName: 'containerbase/python-prebuild',\n versioning: pythonVersioningId,\n },\n ruby: {\n datasource: 'github-releases',\n packageName: 'containerbase/ruby-prebuild',\n versioning: rubyVersioningId,\n },\n rust: {\n datasource: 'docker',\n packageName: 'rust',\n versioning: semverVersioningId,\n },\n uv: {\n datasource: 'pypi',\n packageName: 'uv',\n versioning: pep440VersioningId,\n },\n yarn: {\n datasource: 'npm',\n packageName: 'yarn',\n versioning: npmVersioningId,\n },\n 'yarn-slim': {\n datasource: 'npm',\n packageName: 'yarn',\n versioning: npmVersioningId,\n },\n dart: {\n datasource: 'dart-version',\n packageName: 'dart',\n versioning: npmVersioningId,\n },\n flutter: {\n datasource: 'github-releases',\n packageName: 'containerbase/flutter-prebuild',\n versioning: npmVersioningId,\n },\n vendir: {\n datasource: 'github-releases',\n packageName: 'carvel-dev/vendir',\n versioning: semverVersioningId,\n },\n};\n\nlet _getPkgReleases: Promise<\n typeof import('../../modules/datasource/index.js')\n> | null = null;\n\nasync function getPkgReleases(\n toolConfig: ToolConfig,\n): Promise<ReleaseResult | null> {\n _getPkgReleases ??= import('../../modules/datasource/index.js');\n const { getPkgReleases } = await _getPkgReleases;\n return getPkgReleases(toolConfig);\n}\n\nexport function supportsDynamicInstall(toolName: string): boolean {\n return !!allToolConfig[toolName];\n}\n\nexport function isContainerbase(): boolean {\n return !!getEnv().CONTAINERBASE;\n}\n\nexport function isDynamicInstall(\n toolConstraints?: Opt<ToolConstraint[]>,\n): boolean {\n if (GlobalConfig.get('binarySource') !== 'install') {\n return false;\n }\n if (!isContainerbase()) {\n logger.debug('Falling back to binarySource=global');\n return false;\n }\n return (\n !toolConstraints ||\n toolConstraints.every((toolConstraint) =>\n supportsDynamicInstall(toolConstraint.toolName),\n )\n );\n}\n\nfunction isStable(\n version: string,\n versioningApi: allVersioning.VersioningApi,\n latest?: string,\n): boolean {\n if (!versioningApi.isStable(version)) {\n return false;\n }\n if (isString(latest)) {\n if (versioningApi.isGreaterThan(version, latest)) {\n return false;\n }\n }\n return true;\n}\n\nexport async function resolveConstraint(\n toolConstraint: ToolConstraint,\n): Promise<string> {\n const { toolName } = toolConstraint;\n const toolConfig = allToolConfig[toolName];\n if (!toolConfig) {\n throw new Error(`Invalid tool to install: ${toolName}`);\n }\n\n const versioning = allVersioning.get(toolConfig.versioning);\n let constraint = toolConstraint.constraint;\n if (constraint) {\n if (versioning.isValid(constraint)) {\n if (versioning.isSingleVersion(constraint)) {\n return constraint.replace(/^=+/, '').trim();\n }\n } else {\n logger.warn(\n { toolName, constraint, versioning: toolConfig.versioning },\n 'Invalid tool constraint',\n );\n constraint = undefined;\n }\n }\n\n const pkgReleases = await getPkgReleases(toolConfig);\n const releases = pkgReleases?.releases ?? [];\n\n if (!releases?.length) {\n logger.warn({ toolConfig }, 'No tool releases found.');\n throw new Error('No tool releases found.');\n }\n\n const matchingReleases = releases.filter(\n (r) => !constraint || versioning.matches(r.version, constraint),\n );\n\n const stableMatchingVersion = matchingReleases\n .filter((r) => isStable(r.version, versioning, pkgReleases?.tags?.latest))\n .pop()?.version;\n if (stableMatchingVersion) {\n logger.debug(\n { toolName, constraint, resolvedVersion: stableMatchingVersion },\n 'Resolved stable matching version',\n );\n return stableMatchingVersion;\n }\n\n const unstableMatchingVersion = matchingReleases.pop()?.version;\n if (unstableMatchingVersion) {\n logger.debug(\n { toolName, constraint, resolvedVersion: unstableMatchingVersion },\n 'Resolved unstable matching version',\n );\n return unstableMatchingVersion;\n }\n\n const stableVersion = releases\n .filter((r) => isStable(r.version, versioning, pkgReleases?.tags?.latest))\n .pop()?.version;\n if (stableVersion) {\n logger.warn(\n { toolName, constraint, stableVersion },\n 'No matching tool versions found for constraint - using latest stable version',\n );\n }\n\n const highestVersion = releases.pop()!.version;\n logger.warn(\n { toolName, constraint, highestVersion },\n 'No matching or stable tool versions found - using an unstable version',\n );\n return highestVersion;\n}\n\nexport async function generateInstallCommands(\n toolConstraints: Opt<ToolConstraint[]>,\n): Promise<string[]> {\n const installCommands: string[] = [];\n if (toolConstraints?.length) {\n for (const toolConstraint of toolConstraints) {\n const toolVersion = await resolveConstraint(toolConstraint);\n const { toolName } = toolConstraint;\n const installCommand = `install-tool ${toolName} ${quote(toolVersion)}`;\n installCommands.push(installCommand);\n }\n }\n return installCommands;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAoBA,MAAM,gBAA4C;CAChD,KAAK;EACH,YAAY;EACZ,aAAa;EACb,gBAAgB;EAChB,YAAA;EACD;CACD,SAAS;EACP,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,WAAW;EACT,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,UAAU;EACR,YAAY;EACZ,aAAa;EACb,YAAYC;EACb;CACD,OAAO;EACL,YAAY;EACZ,aAAa;EACb,YAAYC;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,UAAU;EACR,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYC;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYC;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYD;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,OAAO;EACL,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYE;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYH;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAYC;EACb;CACD,UAAU;EACR,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CAED,cAAc;EACZ,YAAY;EACZ,aAAa;EACb,YAAYG;EACb;CACD,IAAI;EACF,YAAY;EACZ,aAAa;EACb,YAAYH;EACb;CACD,WAAW;EACT,YAAY;EACZ,aAAa;EACb,gBAAgB;EAChB,YAAYA;EACb;CACD,OAAO;EACL,YAAY;EACZ,aAAa;EACb,YAAYG;EACb;CACD,KAAK;EACH,YAAY;EACZ,aAAa;EACb,YAAYH;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAYI;EACb;CACD,KAAK;EACH,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,KAAK;EACH,YAAY;EACZ,aAAa;EACb,YAAYJ;EACb;CACD,KAAK;EACH,YAAY;EACZ,aAAa;EACb,YAAYF;EACb;CACD,aAAa;EACX,YAAY;EACZ,aAAa;EACb,YAAYC;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYA;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAYM;EACZ,gBAAgB;EACjB;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYN;EACb;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYO;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAYT;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAYG;EACb;CACD,IAAI;EACF,YAAY;EACZ,aAAa;EACb,YAAYD;EACb;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,aAAa;EACX,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,MAAM;EACJ,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,SAAS;EACP,YAAY;EACZ,aAAa;EACb,YAAA;EACD;CACD,QAAQ;EACN,YAAY;EACZ,aAAa;EACb,YAAYC;EACb;CACF;AAED,IAAI,kBAEO;AAEX,eAAe,eACb,YAC+B;AAC/B,qBAAoB,OAAO;CAC3B,MAAM,EAAE,mBAAmB,MAAM;AACjC,QAAO,eAAe,WAAW;;AAGnC,SAAgB,uBAAuB,UAA2B;AAChE,QAAO,CAAC,CAAC,cAAc;;AAGzB,SAAgB,kBAA2B;AACzC,QAAO,CAAC,CAAC,QAAQ,CAAC;;AAGpB,SAAgB,iBACd,iBACS;AACT,KAAI,aAAa,IAAI,eAAe,KAAK,UACvC,QAAO;AAET,KAAI,CAAC,iBAAiB,EAAE;AACtB,SAAO,MAAM,sCAAsC;AACnD,SAAO;;AAET,QACE,CAAC,mBACD,gBAAgB,OAAO,mBACrB,uBAAuB,eAAe,SAAS,CAChD;;AAIL,SAAS,SACP,SACA,eACA,QACS;AACT,KAAI,CAAC,cAAc,SAAS,QAAQ,CAClC,QAAO;AAET,KAAI,SAAS,OAAO;MACd,cAAc,cAAc,SAAS,OAAO,CAC9C,QAAO;;AAGX,QAAO;;AAGT,eAAsB,kBACpB,gBACiB;CACjB,MAAM,EAAE,aAAa;CACrB,MAAM,aAAa,cAAc;AACjC,KAAI,CAAC,WACH,OAAM,IAAI,MAAM,4BAA4B,WAAW;CAGzD,MAAM,aAAaO,IAAkB,WAAW,WAAW;CAC3D,IAAI,aAAa,eAAe;AAChC,KAAI,WACF,KAAI,WAAW,QAAQ,WAAW;MAC5B,WAAW,gBAAgB,WAAW,CACxC,QAAO,WAAW,QAAQ,OAAO,GAAG,CAAC,MAAM;QAExC;AACL,SAAO,KACL;GAAE;GAAU;GAAY,YAAY,WAAW;GAAY,EAC3D,0BACD;AACD,eAAa,KAAA;;CAIjB,MAAM,cAAc,MAAM,eAAe,WAAW;CACpD,MAAM,WAAW,aAAa,YAAY,EAAE;AAE5C,KAAI,CAAC,UAAU,QAAQ;AACrB,SAAO,KAAK,EAAE,YAAY,EAAE,0BAA0B;AACtD,QAAM,IAAI,MAAM,0BAA0B;;CAG5C,MAAM,mBAAmB,SAAS,QAC/B,MAAM,CAAC,cAAc,WAAW,QAAQ,EAAE,SAAS,WAAW,CAChE;CAED,MAAM,wBAAwB,iBAC3B,QAAQ,MAAM,SAAS,EAAE,SAAS,YAAY,aAAa,MAAM,OAAO,CAAC,CACzE,KAAK,EAAE;AACV,KAAI,uBAAuB;AACzB,SAAO,MACL;GAAE;GAAU;GAAY,iBAAiB;GAAuB,EAChE,mCACD;AACD,SAAO;;CAGT,MAAM,0BAA0B,iBAAiB,KAAK,EAAE;AACxD,KAAI,yBAAyB;AAC3B,SAAO,MACL;GAAE;GAAU;GAAY,iBAAiB;GAAyB,EAClE,qCACD;AACD,SAAO;;CAGT,MAAM,gBAAgB,SACnB,QAAQ,MAAM,SAAS,EAAE,SAAS,YAAY,aAAa,MAAM,OAAO,CAAC,CACzE,KAAK,EAAE;AACV,KAAI,cACF,QAAO,KACL;EAAE;EAAU;EAAY;EAAe,EACvC,+EACD;CAGH,MAAM,iBAAiB,SAAS,KAAK,CAAE;AACvC,QAAO,KACL;EAAE;EAAU;EAAY;EAAgB,EACxC,wEACD;AACD,QAAO;;AAGT,eAAsB,wBACpB,iBACmB;CACnB,MAAM,kBAA4B,EAAE;AACpC,KAAI,iBAAiB,OACnB,MAAK,MAAM,kBAAkB,iBAAiB;EAC5C,MAAM,cAAc,MAAM,kBAAkB,eAAe;EAC3D,MAAM,EAAE,aAAa;EACrB,MAAM,iBAAiB,gBAAgB,SAAS,GAAG,MAAM,YAAY;AACrE,kBAAgB,KAAK,eAAe;;AAGxC,QAAO"}
|
|
1
|
+
{"version":3,"file":"containerbase.js","names":["semverVersioningId","rubyVersioningId","composerVersioningId","pep440VersioningId","semverCoercedVersioningId","gradleVersioningId","mavenVersioningId","nodeVersioningId","condaVersioningId","pythonVersioningId","allVersioning.get"],"sources":["../../../lib/util/exec/containerbase.ts"],"sourcesContent":["import { isString } from '@sindresorhus/is';\nimport { quote } from 'shlex';\nimport { GlobalConfig } from '../../config/global.ts';\nimport { logger } from '../../logger/index.ts';\nimport type { ReleaseResult } from '../../modules/datasource/index.ts';\nimport { id as composerVersioningId } from '../../modules/versioning/composer/index.ts';\nimport { id as condaVersioningId } from '../../modules/versioning/conda/index.ts';\nimport { id as gradleVersioningId } from '../../modules/versioning/gradle/index.ts';\nimport * as allVersioning from '../../modules/versioning/index.ts';\nimport { id as mavenVersioningId } from '../../modules/versioning/maven/index.ts';\nimport { id as nodeVersioningId } from '../../modules/versioning/node/index.ts';\nimport { id as npmVersioningId } from '../../modules/versioning/npm/index.ts';\nimport { id as pep440VersioningId } from '../../modules/versioning/pep440/index.ts';\nimport { id as pythonVersioningId } from '../../modules/versioning/python/index.ts';\nimport { id as rubyVersioningId } from '../../modules/versioning/ruby/index.ts';\nimport { id as semverVersioningId } from '../../modules/versioning/semver/index.ts';\nimport { id as semverCoercedVersioningId } from '../../modules/versioning/semver-coerced/index.ts';\nimport { getEnv } from '../env.ts';\nimport type { Opt, ToolConfig, ToolConstraint } from './types.ts';\n\nconst allToolConfig: Record<string, ToolConfig> = {\n bazelisk: {\n datasource: 'github-releases',\n packageName: 'bazelbuild/bazelisk',\n versioning: semverVersioningId,\n },\n bun: {\n datasource: 'github-releases',\n packageName: 'oven-sh/bun',\n extractVersion: '^bun-v(?<version>.*)$',\n versioning: npmVersioningId,\n },\n bundler: {\n datasource: 'rubygems',\n packageName: 'bundler',\n versioning: rubyVersioningId,\n },\n cocoapods: {\n datasource: 'rubygems',\n packageName: 'cocoapods',\n versioning: rubyVersioningId,\n },\n composer: {\n datasource: 'github-releases',\n packageName: 'containerbase/composer-prebuild',\n versioning: composerVersioningId,\n },\n conan: {\n datasource: 'pypi',\n packageName: 'conan',\n versioning: pep440VersioningId,\n },\n copier: {\n datasource: 'pypi',\n packageName: 'copier',\n versioning: pep440VersioningId,\n },\n corepack: {\n datasource: 'npm',\n packageName: 'corepack',\n versioning: npmVersioningId,\n },\n devbox: {\n datasource: 'github-releases',\n packageName: 'jetify-com/devbox',\n versioning: semverVersioningId,\n },\n dotnet: {\n datasource: 'dotnet-version',\n packageName: 'dotnet-sdk',\n versioning: semverVersioningId,\n },\n erlang: {\n datasource: 'github-releases',\n packageName: 'containerbase/erlang-prebuild',\n versioning: semverCoercedVersioningId,\n },\n elixir: {\n datasource: 'github-releases',\n packageName: 'elixir-lang/elixir',\n versioning: semverVersioningId,\n },\n flux: {\n datasource: 'github-releases',\n packageName: 'fluxcd/flux2',\n versioning: semverVersioningId,\n },\n gleam: {\n datasource: 'github-releases',\n packageName: 'gleam-lang/gleam',\n versioning: semverVersioningId,\n },\n golang: {\n datasource: 'github-releases',\n packageName: 'containerbase/golang-prebuild',\n versioning: npmVersioningId,\n },\n gradle: {\n datasource: 'gradle-version',\n packageName: 'gradle',\n versioning: gradleVersioningId,\n },\n hashin: {\n datasource: 'pypi',\n packageName: 'hashin',\n versioning: pep440VersioningId,\n },\n helm: {\n datasource: 'github-releases',\n packageName: 'helm/helm',\n versioning: semverVersioningId,\n },\n helmfile: {\n datasource: 'github-releases',\n packageName: 'helmfile/helmfile',\n versioning: semverVersioningId,\n },\n java: {\n datasource: 'java-version',\n packageName: 'java?system=true',\n versioning: npmVersioningId,\n },\n /* not used in Renovate */\n 'java-maven': {\n datasource: 'java-version',\n packageName: 'java?system=true',\n versioning: mavenVersioningId,\n },\n jb: {\n datasource: 'github-releases',\n packageName: 'jsonnet-bundler/jsonnet-bundler',\n versioning: semverVersioningId,\n },\n kustomize: {\n datasource: 'github-releases',\n packageName: 'kubernetes-sigs/kustomize',\n extractVersion: '^kustomize/v(?<version>.*)$',\n versioning: semverVersioningId,\n },\n maven: {\n datasource: 'github-releases',\n packageName: 'containerbase/maven-prebuild',\n versioning: mavenVersioningId,\n },\n nix: {\n datasource: 'github-releases',\n packageName: 'containerbase/nix-prebuild',\n versioning: semverVersioningId,\n },\n node: {\n datasource: 'github-releases',\n packageName: 'containerbase/node-prebuild',\n versioning: nodeVersioningId,\n },\n npm: {\n datasource: 'npm',\n packageName: 'npm',\n versioning: npmVersioningId,\n },\n pdm: {\n datasource: 'github-releases',\n packageName: 'pdm-project/pdm',\n versioning: semverVersioningId,\n },\n php: {\n datasource: 'github-releases',\n packageName: 'containerbase/php-prebuild',\n versioning: composerVersioningId,\n },\n 'pip-tools': {\n datasource: 'pypi',\n packageName: 'pip-tools',\n versioning: pep440VersioningId,\n },\n pipenv: {\n datasource: 'pypi',\n packageName: 'pipenv',\n versioning: pep440VersioningId,\n },\n pnpm: {\n datasource: 'npm',\n packageName: 'pnpm',\n versioning: npmVersioningId,\n },\n pixi: {\n datasource: 'github-releases',\n packageName: 'prefix-dev/pixi',\n versioning: condaVersioningId,\n extractVersion: '^v(?<version>.*)$',\n },\n poetry: {\n datasource: 'pypi',\n packageName: 'poetry',\n versioning: pep440VersioningId,\n },\n python: {\n datasource: 'github-releases',\n packageName: 'containerbase/python-prebuild',\n versioning: pythonVersioningId,\n },\n ruby: {\n datasource: 'github-releases',\n packageName: 'containerbase/ruby-prebuild',\n versioning: rubyVersioningId,\n },\n rust: {\n datasource: 'docker',\n packageName: 'rust',\n versioning: semverVersioningId,\n },\n uv: {\n datasource: 'pypi',\n packageName: 'uv',\n versioning: pep440VersioningId,\n },\n yarn: {\n datasource: 'npm',\n packageName: 'yarn',\n versioning: npmVersioningId,\n },\n 'yarn-slim': {\n datasource: 'npm',\n packageName: 'yarn',\n versioning: npmVersioningId,\n },\n dart: {\n datasource: 'dart-version',\n packageName: 'dart',\n versioning: npmVersioningId,\n },\n flutter: {\n datasource: 'github-releases',\n packageName: 'containerbase/flutter-prebuild',\n versioning: npmVersioningId,\n },\n vendir: {\n datasource: 'github-releases',\n packageName: 'carvel-dev/vendir',\n versioning: semverVersioningId,\n },\n};\n\nlet _getPkgReleases: Promise<\n typeof import('../../modules/datasource/index.js')\n> | null = null;\n\nasync function getPkgReleases(\n toolConfig: ToolConfig,\n): Promise<ReleaseResult | null> {\n _getPkgReleases ??= import('../../modules/datasource/index.js');\n const { getPkgReleases } = await _getPkgReleases;\n return getPkgReleases(toolConfig);\n}\n\nexport function supportsDynamicInstall(toolName: string): boolean {\n return !!allToolConfig[toolName];\n}\n\nexport function isContainerbase(): boolean {\n return !!getEnv().CONTAINERBASE;\n}\n\nexport function isDynamicInstall(\n toolConstraints?: Opt<ToolConstraint[]>,\n): boolean {\n if (GlobalConfig.get('binarySource') !== 'install') {\n return false;\n }\n if (!isContainerbase()) {\n logger.debug('Falling back to binarySource=global');\n return false;\n }\n return (\n !toolConstraints ||\n toolConstraints.every((toolConstraint) =>\n supportsDynamicInstall(toolConstraint.toolName),\n )\n );\n}\n\nfunction isStable(\n version: string,\n versioningApi: allVersioning.VersioningApi,\n latest?: string,\n): boolean {\n if (!versioningApi.isStable(version)) {\n return false;\n }\n if (isString(latest)) {\n if (versioningApi.isGreaterThan(version, latest)) {\n return false;\n }\n }\n return true;\n}\n\nexport async function resolveConstraint(\n toolConstraint: ToolConstraint,\n): Promise<string> {\n const { toolName } = toolConstraint;\n const toolConfig = allToolConfig[toolName];\n if (!toolConfig) {\n throw new Error(`Invalid tool to install: ${toolName}`);\n }\n\n const versioning = allVersioning.get(toolConfig.versioning);\n let constraint = toolConstraint.constraint;\n if (constraint) {\n if (versioning.isValid(constraint)) {\n if (versioning.isSingleVersion(constraint)) {\n return constraint.replace(/^=+/, '').trim();\n }\n } else {\n logger.warn(\n { toolName, constraint, versioning: toolConfig.versioning },\n 'Invalid tool constraint',\n );\n constraint = undefined;\n }\n }\n\n const pkgReleases = await getPkgReleases(toolConfig);\n const releases = pkgReleases?.releases ?? [];\n\n if (!releases?.length) {\n logger.warn({ toolConfig }, 'No tool releases found.');\n throw new Error('No tool releases found.');\n }\n\n const matchingReleases = releases.filter(\n (r) => !constraint || versioning.matches(r.version, constraint),\n );\n\n const stableMatchingVersion = matchingReleases\n .filter((r) => isStable(r.version, versioning, pkgReleases?.tags?.latest))\n .pop()?.version;\n if (stableMatchingVersion) {\n logger.debug(\n { toolName, constraint, resolvedVersion: stableMatchingVersion },\n 'Resolved stable matching version',\n );\n return stableMatchingVersion;\n }\n\n const unstableMatchingVersion = matchingReleases.pop()?.version;\n if (unstableMatchingVersion) {\n logger.debug(\n { toolName, constraint, resolvedVersion: unstableMatchingVersion },\n 'Resolved unstable matching version',\n );\n return unstableMatchingVersion;\n }\n\n const stableVersion = releases\n .filter((r) => isStable(r.version, versioning, pkgReleases?.tags?.latest))\n .pop()?.version;\n if (stableVersion) {\n logger.warn(\n { toolName, constraint, stableVersion },\n 'No matching tool versions found for constraint - using latest stable version',\n );\n }\n\n const highestVersion = releases.pop()!.version;\n logger.warn(\n { toolName, constraint, highestVersion },\n 'No matching or stable tool versions found - using an unstable version',\n );\n return highestVersion;\n}\n\nexport async function generateInstallCommands(\n toolConstraints: Opt<ToolConstraint[]>,\n): Promise<string[]> {\n const installCommands: string[] = [];\n if (toolConstraints?.length) {\n for (const toolConstraint of toolConstraints) {\n const toolVersion = await resolveConstraint(toolConstraint);\n const { toolName } = toolConstraint;\n const installCommand = `install-tool ${toolName} ${quote(toolVersion)}`;\n installCommands.push(installCommand);\n }\n }\n return installCommands;\n}\n"],"mappings":"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"}
|
|
@@ -4,8 +4,8 @@ import { logger } from "../../../../logger/index.js";
|
|
|
4
4
|
import { getInheritedOrGlobal } from "../../../../util/common.js";
|
|
5
5
|
import { readLocalFile } from "../../../../util/fs/index.js";
|
|
6
6
|
import { getCache } from "../../../../util/cache/repository/index.js";
|
|
7
|
-
import { getElapsedDays } from "../../../../util/date.js";
|
|
8
7
|
import { getBranchCommit } from "../../../../util/git/index.js";
|
|
8
|
+
import { getElapsedDays } from "../../../../util/date.js";
|
|
9
9
|
import { scm } from "../../../../modules/platform/scm.js";
|
|
10
10
|
import { platform } from "../../../../modules/platform/index.js";
|
|
11
11
|
import { getSemanticCommitPrTitle } from "../common.js";
|
|
@@ -4,8 +4,8 @@ import { logger } from "../../../../logger/index.js";
|
|
|
4
4
|
import { getInheritedOrGlobal } from "../../../../util/common.js";
|
|
5
5
|
import { compile } from "../../../../util/template/index.js";
|
|
6
6
|
import { toSha256 } from "../../../../util/hash.js";
|
|
7
|
-
import { getElapsedDays } from "../../../../util/date.js";
|
|
8
7
|
import { getFile } from "../../../../util/git/index.js";
|
|
8
|
+
import { getElapsedDays } from "../../../../util/date.js";
|
|
9
9
|
import { emojify } from "../../../../util/emoji.js";
|
|
10
10
|
import { hashBody } from "../../../../modules/platform/pr-body.js";
|
|
11
11
|
import { scm } from "../../../../modules/platform/scm.js";
|
|
@@ -4,8 +4,8 @@ import { logger, removeMeta } from "../../../../logger/index.js";
|
|
|
4
4
|
import { compile } from "../../../../util/template/index.js";
|
|
5
5
|
import { ExternalHostError } from "../../../../types/errors/external-host-error.js";
|
|
6
6
|
import { coerceNumber } from "../../../../util/number.js";
|
|
7
|
-
import { getElapsedMs } from "../../../../util/date.js";
|
|
8
7
|
import { getCount, isLimitReached } from "../../../global/limits.js";
|
|
8
|
+
import { getElapsedMs } from "../../../../util/date.js";
|
|
9
9
|
import { emojify } from "../../../../util/emoji.js";
|
|
10
10
|
import { scm } from "../../../../modules/platform/scm.js";
|
|
11
11
|
import { platform } from "../../../../modules/platform/index.js";
|
|
@@ -3,9 +3,9 @@ import { pkg } from "../../../../expose.js";
|
|
|
3
3
|
import { GlobalConfig } from "../../../../config/global.js";
|
|
4
4
|
import { logger } from "../../../../logger/index.js";
|
|
5
5
|
import { ExternalHostError } from "../../../../types/errors/external-host-error.js";
|
|
6
|
-
import { getElapsedHours } from "../../../../util/date.js";
|
|
7
6
|
import { incCountValue, isLimitReached } from "../../../global/limits.js";
|
|
8
7
|
import { getBranchLastCommitTime } from "../../../../util/git/index.js";
|
|
8
|
+
import { getElapsedHours } from "../../../../util/date.js";
|
|
9
9
|
import { stripEmojis } from "../../../../util/emoji.js";
|
|
10
10
|
import { getPrBodyStruct, hashBody } from "../../../../modules/platform/pr-body.js";
|
|
11
11
|
import { scm } from "../../../../modules/platform/scm.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "renovate",
|
|
3
3
|
"description": "Automated dependency updates. Flexible so you don't need to be.",
|
|
4
|
-
"version": "43.
|
|
4
|
+
"version": "43.65.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"renovate": "dist/renovate.js",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"re2": "1.23.3"
|
|
216
216
|
},
|
|
217
217
|
"devDependencies": {
|
|
218
|
-
"@biomejs/biome": "2.4.
|
|
218
|
+
"@biomejs/biome": "2.4.6",
|
|
219
219
|
"@commander-js/extra-typings": "14.0.0",
|
|
220
220
|
"@containerbase/istanbul-reports-html": "1.1.34",
|
|
221
221
|
"@containerbase/semantic-release-pnpm": "1.3.24",
|
package/renovate-schema.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$id": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
-
"title": "JSON schema for Renovate 43.
|
|
3
|
+
"title": "JSON schema for Renovate 43.65.0 config files (https://renovatebot.com/)",
|
|
4
4
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
-
"x-renovate-version": "43.
|
|
5
|
+
"x-renovate-version": "43.65.0",
|
|
6
6
|
"allowComments": true,
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|