renovate 43.59.6 → 43.59.7

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/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.59.6",
4
+ "version": "43.59.7",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "renovate": "dist/renovate.js",
@@ -218,7 +218,7 @@
218
218
  "devDependencies": {
219
219
  "@biomejs/biome": "2.4.4",
220
220
  "@commander-js/extra-typings": "14.0.0",
221
- "@containerbase/eslint-plugin": "1.1.34",
221
+ "@containerbase/eslint-plugin": "1.1.35",
222
222
  "@containerbase/istanbul-reports-html": "1.1.34",
223
223
  "@containerbase/semantic-release-pnpm": "1.3.24",
224
224
  "@eslint/js": "9.39.3",
@@ -276,7 +276,7 @@
276
276
  "eslint-formatter-gha": "2.0.1",
277
277
  "eslint-import-resolver-typescript": "4.4.4",
278
278
  "eslint-plugin-import-x": "4.16.1",
279
- "eslint-plugin-oxlint": "1.50.0",
279
+ "eslint-plugin-oxlint": "1.51.0",
280
280
  "eslint-plugin-promise": "7.2.1",
281
281
  "expect-more-jest": "5.5.0",
282
282
  "globals": "17.4.0",
@@ -290,7 +290,7 @@
290
290
  "nock": "14.0.11",
291
291
  "npm-run-all2": "8.0.4",
292
292
  "nyc": "18.0.0",
293
- "oxlint": "1.50.0",
293
+ "oxlint": "1.51.0",
294
294
  "rimraf": "6.1.3",
295
295
  "semantic-release": "25.0.3",
296
296
  "tar": "7.5.10",
@@ -1,7 +1,7 @@
1
1
  {
2
- "title": "JSON schema for Renovate 43.59.6 config files (https://renovatebot.com/)",
2
+ "title": "JSON schema for Renovate 43.59.7 config files (https://renovatebot.com/)",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
- "x-renovate-version": "43.59.6",
4
+ "x-renovate-version": "43.59.7",
5
5
  "allowComments": true,
6
6
  "type": "object",
7
7
  "properties": {
@@ -5499,21 +5499,35 @@
5499
5499
  "type": "array",
5500
5500
  "items": {
5501
5501
  "type": "string",
5502
- "enum": [
5503
- "low",
5504
- "neutral",
5505
- "high",
5506
- "very high"
5502
+ "oneOf": [
5503
+ {
5504
+ "enum": [
5505
+ "low",
5506
+ "neutral",
5507
+ "high",
5508
+ "very high"
5509
+ ]
5510
+ },
5511
+ {
5512
+ "type": "string"
5513
+ }
5507
5514
  ]
5508
5515
  }
5509
5516
  },
5510
5517
  {
5511
5518
  "type": "string",
5512
- "enum": [
5513
- "low",
5514
- "neutral",
5515
- "high",
5516
- "very high"
5519
+ "oneOf": [
5520
+ {
5521
+ "enum": [
5522
+ "low",
5523
+ "neutral",
5524
+ "high",
5525
+ "very high"
5526
+ ]
5527
+ },
5528
+ {
5529
+ "type": "string"
5530
+ }
5517
5531
  ]
5518
5532
  }
5519
5533
  ]
@@ -5653,33 +5667,47 @@
5653
5667
  "type": "array",
5654
5668
  "items": {
5655
5669
  "type": "string",
5656
- "enum": [
5657
- "major",
5658
- "minor",
5659
- "patch",
5660
- "pin",
5661
- "pinDigest",
5662
- "digest",
5663
- "lockFileMaintenance",
5664
- "rollback",
5665
- "bump",
5666
- "replacement"
5670
+ "oneOf": [
5671
+ {
5672
+ "enum": [
5673
+ "major",
5674
+ "minor",
5675
+ "patch",
5676
+ "pin",
5677
+ "pinDigest",
5678
+ "digest",
5679
+ "lockFileMaintenance",
5680
+ "rollback",
5681
+ "bump",
5682
+ "replacement"
5683
+ ]
5684
+ },
5685
+ {
5686
+ "type": "string"
5687
+ }
5667
5688
  ]
5668
5689
  }
5669
5690
  },
5670
5691
  {
5671
5692
  "type": "string",
5672
- "enum": [
5673
- "major",
5674
- "minor",
5675
- "patch",
5676
- "pin",
5677
- "pinDigest",
5678
- "digest",
5679
- "lockFileMaintenance",
5680
- "rollback",
5681
- "bump",
5682
- "replacement"
5693
+ "oneOf": [
5694
+ {
5695
+ "enum": [
5696
+ "major",
5697
+ "minor",
5698
+ "patch",
5699
+ "pin",
5700
+ "pinDigest",
5701
+ "digest",
5702
+ "lockFileMaintenance",
5703
+ "rollback",
5704
+ "bump",
5705
+ "replacement"
5706
+ ]
5707
+ },
5708
+ {
5709
+ "type": "string"
5710
+ }
5683
5711
  ]
5684
5712
  }
5685
5713
  ]