renovate 41.149.1 → 41.150.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/config/options/index.js +7 -0
- 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 -2
@@ -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.',
|