renovate 43.251.0 → 43.251.2
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.
|
@@ -33,11 +33,12 @@ var DebianVersioningApi = class extends GenericVersioningApi {
|
|
|
33
33
|
if (this._rollingReleases.has(currentValue)) return this._rollingReleases.getLtsByVersion(newVersion);
|
|
34
34
|
if (this._distroInfo.isCodename(currentValue)) {
|
|
35
35
|
const di = this._rollingReleases.schedule(newVersion);
|
|
36
|
-
let ver = newVersion;
|
|
36
|
+
let ver = this._getBaseVersion(newVersion);
|
|
37
37
|
if (di) ver = di.version;
|
|
38
38
|
return this._distroInfo.getCodenameByVersion(ver);
|
|
39
39
|
}
|
|
40
40
|
if (this._rollingReleases.has(newVersion)) return this._rollingReleases.schedule(newVersion).version;
|
|
41
|
+
if (isDatedCodeName(newVersion, this._distroInfo)) return this._getBaseVersion(newVersion);
|
|
41
42
|
return this._distroInfo.getVersionByCodename(newVersion);
|
|
42
43
|
}
|
|
43
44
|
_getBaseVersion(version) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../../../../lib/modules/versioning/debian/index.ts"],"sourcesContent":["import type { RangeStrategy } from '../../../types/index.ts';\nimport { DistroInfo } from '../distro.ts';\nimport type { GenericVersion } from '../generic.ts';\nimport { GenericVersioningApi } from '../generic.ts';\nimport type { NewValueConfig, VersioningApi } from '../types.ts';\nimport {\n RollingReleasesData,\n getDatedContainerImageCodename,\n getDatedContainerImageSuffix,\n getDatedContainerImageVersion,\n isDatedCodeName,\n} from './common.ts';\n\nexport const id = 'debian';\nexport const displayName = 'Debian';\nexport const urls = [\n '[Debian distro info data](https://debian.pages.debian.net/distro-info-data/debian.csv)',\n];\nexport const supportsRanges = true;\nexport const supportedRangeStrategies: RangeStrategy[] = ['replace'];\n\nexport class DebianVersioningApi extends GenericVersioningApi {\n private readonly _distroInfo: DistroInfo;\n private readonly _rollingReleases: RollingReleasesData;\n\n constructor() {\n super();\n this._distroInfo = new DistroInfo('data/debian-distro-info.json');\n this._rollingReleases = new RollingReleasesData(this._distroInfo);\n }\n\n override isValid(version: string): boolean {\n const isValid = super.isValid(version);\n let ver: string;\n ver = this._rollingReleases.getVersionByLts(version);\n ver = this._distroInfo.getVersionByCodename(ver);\n return (\n (isValid && this._distroInfo.isCreated(ver)) ||\n isDatedCodeName(version, this._distroInfo)\n );\n }\n\n override isStable(version: string): boolean {\n if (isDatedCodeName(version, this._distroInfo)) {\n const codename = getDatedContainerImageCodename(version)!;\n const versionByCodename = this._distroInfo.getVersionByCodename(codename);\n return (\n this._distroInfo.isReleased(versionByCodename) &&\n !this._distroInfo.isEolLts(versionByCodename)\n );\n }\n let ver: string;\n ver = this._rollingReleases.getVersionByLts(version);\n ver = this._distroInfo.getVersionByCodename(ver);\n return this._distroInfo.isReleased(ver) && !this._distroInfo.isEolLts(ver);\n }\n\n override getNewValue({ currentValue, newVersion }: NewValueConfig): string {\n // current value is [oldold|old|]stable\n if (this._rollingReleases.has(currentValue)) {\n return this._rollingReleases.getLtsByVersion(newVersion);\n }\n\n if (this._distroInfo.isCodename(currentValue)) {\n const di = this._rollingReleases.schedule(newVersion);\n let ver = newVersion;\n if (di) {\n ver = di.version;\n }\n return this._distroInfo.getCodenameByVersion(ver);\n }\n\n // newVersion is [oldold|old|]stable\n // current value is numeric\n if (this._rollingReleases.has(newVersion)) {\n // should never `undefined` if it exists\n return this._rollingReleases.schedule(newVersion)!.version;\n }\n\n return this._distroInfo.getVersionByCodename(newVersion);\n }\n\n private _getBaseVersion(version: string): string {\n if (isDatedCodeName(version, this._distroInfo)) {\n const codename = getDatedContainerImageCodename(version)!;\n return this._distroInfo.getVersionByCodename(codename);\n }\n return version;\n }\n\n override equals(version: string, other: string): boolean {\n const verImage = getDatedContainerImageVersion(version);\n const otherImageVer = getDatedContainerImageVersion(other);\n if (verImage !== otherImageVer) {\n return false;\n }\n\n const verSuffix = getDatedContainerImageSuffix(version);\n const otherSuffix = getDatedContainerImageSuffix(other);\n if (verSuffix !== otherSuffix) {\n return false;\n }\n\n const ver = this._getBaseVersion(version);\n const otherVer = this._getBaseVersion(other);\n return super.equals(ver, otherVer);\n }\n\n override isGreaterThan(version: string, other: string): boolean {\n if (\n !isDatedCodeName(version, this._distroInfo) &&\n !isDatedCodeName(other, this._distroInfo)\n ) {\n return super.isGreaterThan(version, other);\n }\n const xMajor = this.getMajor(version) ?? 0;\n const yMajor = this.getMajor(other) ?? 0;\n if (xMajor > yMajor) {\n return true;\n }\n if (xMajor < yMajor) {\n return false;\n }\n\n const xMinor = this.getMinor(version) ?? 0;\n const yMinor = this.getMinor(other) ?? 0;\n if (xMinor > yMinor) {\n return true;\n }\n if (xMinor < yMinor) {\n return false;\n }\n\n const xImageVersion = getDatedContainerImageVersion(version) ?? 0;\n const yImageVersion = getDatedContainerImageVersion(other) ?? 0;\n if (xImageVersion > yImageVersion) {\n return true;\n }\n if (xImageVersion < yImageVersion) {\n return false;\n }\n\n const xSuffixVersion = getDatedContainerImageSuffix(version) ?? 0;\n const ySuffixVersion = getDatedContainerImageSuffix(other) ?? 0;\n if (xSuffixVersion > ySuffixVersion) {\n return true;\n }\n if (xSuffixVersion < ySuffixVersion) {\n return false;\n }\n\n const xPatch = this.getPatch(version) ?? 0;\n const yPatch = this.getPatch(other) ?? 0;\n return xPatch > yPatch;\n }\n\n override getMajor(version: string): number | null {\n const ver = this._getBaseVersion(version);\n if (this.isValid(ver)) {\n const parsed = this._parse(ver);\n return parsed!.release[0];\n }\n return null;\n }\n\n override getMinor(version: string): number | null {\n const ver = this._getBaseVersion(version);\n if (this.isValid(ver)) {\n const parsed = this._parse(ver);\n return parsed?.release[1] ?? null;\n }\n return null;\n }\n\n override getPatch(version: string): number | null {\n const ver = this._getBaseVersion(version);\n if (this.isValid(ver)) {\n const parsed = this._parse(ver);\n return parsed?.release[2] ?? null;\n }\n return null;\n }\n\n protected override _parse(version: string): GenericVersion | null {\n let ver: string;\n if (isDatedCodeName(version, this._distroInfo)) {\n const codename = getDatedContainerImageCodename(version)!;\n ver = this._distroInfo.getVersionByCodename(codename);\n } else {\n ver = this._rollingReleases.getVersionByLts(version);\n ver = this._distroInfo.getVersionByCodename(ver);\n }\n if (!this._distroInfo.exists(ver)) {\n return null;\n }\n return { release: ver.split('.').map(Number) };\n }\n}\n\nexport const api: VersioningApi = new DebianVersioningApi();\n\nexport default api;\n"],"mappings":";;;;AAaA,MAAa,KAAK;AAQlB,IAAa,sBAAb,cAAyC,qBAAqB;CAC5D;CACA;CAEA,cAAc;EACZ,MAAM;EACN,KAAK,cAAc,IAAI,WAAW,8BAA8B;EAChE,KAAK,mBAAmB,IAAI,oBAAoB,KAAK,WAAW;CAClE;CAEA,QAAiB,SAA0B;EACzC,MAAM,UAAU,MAAM,QAAQ,OAAO;EACrC,IAAI;EACJ,MAAM,KAAK,iBAAiB,gBAAgB,OAAO;EACnD,MAAM,KAAK,YAAY,qBAAqB,GAAG;EAC/C,OACG,WAAW,KAAK,YAAY,UAAU,GAAG,KAC1C,gBAAgB,SAAS,KAAK,WAAW;CAE7C;CAEA,SAAkB,SAA0B;EAC1C,IAAI,gBAAgB,SAAS,KAAK,WAAW,GAAG;GAC9C,MAAM,WAAW,+BAA+B,OAAO;GACvD,MAAM,oBAAoB,KAAK,YAAY,qBAAqB,QAAQ;GACxE,OACE,KAAK,YAAY,WAAW,iBAAiB,KAC7C,CAAC,KAAK,YAAY,SAAS,iBAAiB;EAEhD;EACA,IAAI;EACJ,MAAM,KAAK,iBAAiB,gBAAgB,OAAO;EACnD,MAAM,KAAK,YAAY,qBAAqB,GAAG;EAC/C,OAAO,KAAK,YAAY,WAAW,GAAG,KAAK,CAAC,KAAK,YAAY,SAAS,GAAG;CAC3E;CAEA,YAAqB,EAAE,cAAc,cAAsC;EAEzE,IAAI,KAAK,iBAAiB,IAAI,YAAY,GACxC,OAAO,KAAK,iBAAiB,gBAAgB,UAAU;EAGzD,IAAI,KAAK,YAAY,WAAW,YAAY,GAAG;GAC7C,MAAM,KAAK,KAAK,iBAAiB,SAAS,UAAU;GACpD,IAAI,MAAM;
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../../../lib/modules/versioning/debian/index.ts"],"sourcesContent":["import type { RangeStrategy } from '../../../types/index.ts';\nimport { DistroInfo } from '../distro.ts';\nimport type { GenericVersion } from '../generic.ts';\nimport { GenericVersioningApi } from '../generic.ts';\nimport type { NewValueConfig, VersioningApi } from '../types.ts';\nimport {\n RollingReleasesData,\n getDatedContainerImageCodename,\n getDatedContainerImageSuffix,\n getDatedContainerImageVersion,\n isDatedCodeName,\n} from './common.ts';\n\nexport const id = 'debian';\nexport const displayName = 'Debian';\nexport const urls = [\n '[Debian distro info data](https://debian.pages.debian.net/distro-info-data/debian.csv)',\n];\nexport const supportsRanges = true;\nexport const supportedRangeStrategies: RangeStrategy[] = ['replace'];\n\nexport class DebianVersioningApi extends GenericVersioningApi {\n private readonly _distroInfo: DistroInfo;\n private readonly _rollingReleases: RollingReleasesData;\n\n constructor() {\n super();\n this._distroInfo = new DistroInfo('data/debian-distro-info.json');\n this._rollingReleases = new RollingReleasesData(this._distroInfo);\n }\n\n override isValid(version: string): boolean {\n const isValid = super.isValid(version);\n let ver: string;\n ver = this._rollingReleases.getVersionByLts(version);\n ver = this._distroInfo.getVersionByCodename(ver);\n return (\n (isValid && this._distroInfo.isCreated(ver)) ||\n isDatedCodeName(version, this._distroInfo)\n );\n }\n\n override isStable(version: string): boolean {\n if (isDatedCodeName(version, this._distroInfo)) {\n const codename = getDatedContainerImageCodename(version)!;\n const versionByCodename = this._distroInfo.getVersionByCodename(codename);\n return (\n this._distroInfo.isReleased(versionByCodename) &&\n !this._distroInfo.isEolLts(versionByCodename)\n );\n }\n let ver: string;\n ver = this._rollingReleases.getVersionByLts(version);\n ver = this._distroInfo.getVersionByCodename(ver);\n return this._distroInfo.isReleased(ver) && !this._distroInfo.isEolLts(ver);\n }\n\n override getNewValue({ currentValue, newVersion }: NewValueConfig): string {\n // current value is [oldold|old|]stable\n if (this._rollingReleases.has(currentValue)) {\n return this._rollingReleases.getLtsByVersion(newVersion);\n }\n\n if (this._distroInfo.isCodename(currentValue)) {\n const di = this._rollingReleases.schedule(newVersion);\n let ver = this._getBaseVersion(newVersion);\n if (di) {\n ver = di.version;\n }\n return this._distroInfo.getCodenameByVersion(ver);\n }\n\n // newVersion is [oldold|old|]stable\n // current value is numeric\n if (this._rollingReleases.has(newVersion)) {\n // should never `undefined` if it exists\n return this._rollingReleases.schedule(newVersion)!.version;\n }\n\n // current value is numeric, so keep a dated codename (e.g. trixie-20260406)\n // as its numeric version rather than switching format\n if (isDatedCodeName(newVersion, this._distroInfo)) {\n return this._getBaseVersion(newVersion);\n }\n\n return this._distroInfo.getVersionByCodename(newVersion);\n }\n\n private _getBaseVersion(version: string): string {\n if (isDatedCodeName(version, this._distroInfo)) {\n const codename = getDatedContainerImageCodename(version)!;\n return this._distroInfo.getVersionByCodename(codename);\n }\n return version;\n }\n\n override equals(version: string, other: string): boolean {\n const verImage = getDatedContainerImageVersion(version);\n const otherImageVer = getDatedContainerImageVersion(other);\n if (verImage !== otherImageVer) {\n return false;\n }\n\n const verSuffix = getDatedContainerImageSuffix(version);\n const otherSuffix = getDatedContainerImageSuffix(other);\n if (verSuffix !== otherSuffix) {\n return false;\n }\n\n const ver = this._getBaseVersion(version);\n const otherVer = this._getBaseVersion(other);\n return super.equals(ver, otherVer);\n }\n\n override isGreaterThan(version: string, other: string): boolean {\n if (\n !isDatedCodeName(version, this._distroInfo) &&\n !isDatedCodeName(other, this._distroInfo)\n ) {\n return super.isGreaterThan(version, other);\n }\n const xMajor = this.getMajor(version) ?? 0;\n const yMajor = this.getMajor(other) ?? 0;\n if (xMajor > yMajor) {\n return true;\n }\n if (xMajor < yMajor) {\n return false;\n }\n\n const xMinor = this.getMinor(version) ?? 0;\n const yMinor = this.getMinor(other) ?? 0;\n if (xMinor > yMinor) {\n return true;\n }\n if (xMinor < yMinor) {\n return false;\n }\n\n const xImageVersion = getDatedContainerImageVersion(version) ?? 0;\n const yImageVersion = getDatedContainerImageVersion(other) ?? 0;\n if (xImageVersion > yImageVersion) {\n return true;\n }\n if (xImageVersion < yImageVersion) {\n return false;\n }\n\n const xSuffixVersion = getDatedContainerImageSuffix(version) ?? 0;\n const ySuffixVersion = getDatedContainerImageSuffix(other) ?? 0;\n if (xSuffixVersion > ySuffixVersion) {\n return true;\n }\n if (xSuffixVersion < ySuffixVersion) {\n return false;\n }\n\n const xPatch = this.getPatch(version) ?? 0;\n const yPatch = this.getPatch(other) ?? 0;\n return xPatch > yPatch;\n }\n\n override getMajor(version: string): number | null {\n const ver = this._getBaseVersion(version);\n if (this.isValid(ver)) {\n const parsed = this._parse(ver);\n return parsed!.release[0];\n }\n return null;\n }\n\n override getMinor(version: string): number | null {\n const ver = this._getBaseVersion(version);\n if (this.isValid(ver)) {\n const parsed = this._parse(ver);\n return parsed?.release[1] ?? null;\n }\n return null;\n }\n\n override getPatch(version: string): number | null {\n const ver = this._getBaseVersion(version);\n if (this.isValid(ver)) {\n const parsed = this._parse(ver);\n return parsed?.release[2] ?? null;\n }\n return null;\n }\n\n protected override _parse(version: string): GenericVersion | null {\n let ver: string;\n if (isDatedCodeName(version, this._distroInfo)) {\n const codename = getDatedContainerImageCodename(version)!;\n ver = this._distroInfo.getVersionByCodename(codename);\n } else {\n ver = this._rollingReleases.getVersionByLts(version);\n ver = this._distroInfo.getVersionByCodename(ver);\n }\n if (!this._distroInfo.exists(ver)) {\n return null;\n }\n return { release: ver.split('.').map(Number) };\n }\n}\n\nexport const api: VersioningApi = new DebianVersioningApi();\n\nexport default api;\n"],"mappings":"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"}
|
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.251.
|
|
4
|
+
"version": "43.251.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"renovate": "dist/renovate.js",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"@yarnpkg/core": "4.9.0",
|
|
126
126
|
"@yarnpkg/parsers": "3.0.3",
|
|
127
127
|
"adm-zip": "0.5.17",
|
|
128
|
-
"ae-cvss-calculator": "1.0.
|
|
128
|
+
"ae-cvss-calculator": "1.0.13",
|
|
129
129
|
"agentkeepalive": "4.6.0",
|
|
130
130
|
"async-mutex": "0.5.0",
|
|
131
131
|
"aws4": "1.13.2",
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"markdownlint-cli2": "0.22.1",
|
|
271
271
|
"markdownlint-cli2-formatter-template": "0.0.4",
|
|
272
272
|
"memfs": "4.57.8",
|
|
273
|
-
"nock": "14.0.
|
|
273
|
+
"nock": "14.0.16",
|
|
274
274
|
"npm-run-all2": "8.0.4",
|
|
275
275
|
"nyc": "18.0.0",
|
|
276
276
|
"oxlint": "1.71.0",
|
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.251.
|
|
3
|
+
"title": "JSON schema for Renovate 43.251.2 config files (https://renovatebot.com/)",
|
|
4
4
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
-
"x-renovate-version": "43.251.
|
|
5
|
+
"x-renovate-version": "43.251.2",
|
|
6
6
|
"allowComments": true,
|
|
7
7
|
"type": "object",
|
|
8
8
|
"definitions": {
|