renovate 41.149.2 → 41.150.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/options/index.js +8 -1
- package/dist/config/options/index.js.map +1 -1
- package/dist/config/types.d.ts +2 -0
- package/dist/config/types.js.map +1 -1
- package/dist/workers/repository/process/lookup/filter-checks.js +39 -6
- package/dist/workers/repository/process/lookup/filter-checks.js.map +1 -1
- package/dist/workers/repository/update/branch/index.js +37 -13
- package/dist/workers/repository/update/branch/index.js.map +1 -1
- package/package.json +2 -2
- package/renovate-schema.json +12 -3
|
@@ -540,7 +540,7 @@ const options = [
|
|
|
540
540
|
name: 'dockerSidecarImage',
|
|
541
541
|
description: 'Change this value to override the default Renovate sidecar image.',
|
|
542
542
|
type: 'string',
|
|
543
|
-
default: 'ghcr.io/containerbase/sidecar:13.23.
|
|
543
|
+
default: 'ghcr.io/containerbase/sidecar:13.23.1',
|
|
544
544
|
globalOnly: true,
|
|
545
545
|
},
|
|
546
546
|
{
|
|
@@ -1831,6 +1831,13 @@ const options = [
|
|
|
1831
1831
|
type: 'string',
|
|
1832
1832
|
default: null,
|
|
1833
1833
|
},
|
|
1834
|
+
{
|
|
1835
|
+
name: 'minimumReleaseAgeBehaviour',
|
|
1836
|
+
description: 'When set in conjunction with `minimumReleaseAge`, controls whether the `releaseTimestamp` for a dependency update is required.',
|
|
1837
|
+
type: 'string',
|
|
1838
|
+
default: 'timestamp-optional',
|
|
1839
|
+
allowedValues: ['timestamp-required', 'timestamp-optional'],
|
|
1840
|
+
},
|
|
1834
1841
|
{
|
|
1835
1842
|
name: 'abandonmentThreshold',
|
|
1836
1843
|
description: 'Flags packages that have not been updated within this period as abandoned.',
|