File tree Expand file tree Collapse file tree 3 files changed +62
-2
lines changed
src/check_jsonschema/builtin_schemas/vendor Expand file tree Collapse file tree 3 files changed +62
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Unreleased
10
10
11
11
.. vendor-insert-here
12
12
13
- - Update vendored schemas (2022-12-23 )
13
+ - Update vendored schemas (2022-12-27 )
14
14
15
15
0.19.2
16
16
------
Original file line number Diff line number Diff line change 1595
1595
"description" : " If set, Renovate will use this URL to fetch changelogs for a matched dependency. Valid only within a `packageRules` object." ,
1596
1596
"type" : " string"
1597
1597
},
1598
+ "excludeDepNames" : {
1599
+ "description" : " Dep names to exclude. Valid only within a `packageRules` object." ,
1600
+ "oneOf" : [
1601
+ {
1602
+ "type" : " array" ,
1603
+ "items" : {
1604
+ "type" : " string"
1605
+ }
1606
+ },
1607
+ {
1608
+ "type" : " string"
1609
+ }
1610
+ ]
1611
+ },
1612
+ "excludeDepPatterns" : {
1613
+ "description" : " Dep name patterns to exclude. Valid only within a `packageRules` object." ,
1614
+ "oneOf" : [
1615
+ {
1616
+ "type" : " array" ,
1617
+ "items" : {
1618
+ "type" : " string" ,
1619
+ "format" : " regex"
1620
+ }
1621
+ },
1622
+ {
1623
+ "type" : " string" ,
1624
+ "format" : " regex"
1625
+ }
1626
+ ]
1627
+ },
1598
1628
"excludePackageNames" : {
1599
1629
"description" : " Package names to exclude. Valid only within a `packageRules` object." ,
1600
1630
"oneOf" : [
1675
1705
}
1676
1706
]
1677
1707
},
1708
+ "matchDepNames" : {
1709
+ "description" : " Dep names to match. Valid only within a `packageRules` object." ,
1710
+ "oneOf" : [
1711
+ {
1712
+ "type" : " array" ,
1713
+ "items" : {
1714
+ "type" : " string"
1715
+ }
1716
+ },
1717
+ {
1718
+ "type" : " string"
1719
+ }
1720
+ ]
1721
+ },
1722
+ "matchDepPatterns" : {
1723
+ "description" : " Dep name patterns to match. Valid only within a `packageRules` object." ,
1724
+ "oneOf" : [
1725
+ {
1726
+ "type" : " array" ,
1727
+ "items" : {
1728
+ "type" : " string" ,
1729
+ "format" : " regex"
1730
+ }
1731
+ },
1732
+ {
1733
+ "type" : " string" ,
1734
+ "format" : " regex"
1735
+ }
1736
+ ]
1737
+ },
1678
1738
"matchDepTypes" : {
1679
1739
"description" : " List of depTypes to match (e.g. [`peerDependencies`]). Valid only within `packageRules` object." ,
1680
1740
"oneOf" : [
Original file line number Diff line number Diff line change 1
- 7396189895c709604c928c4d0fbb46f8b794928d3dd4c36cff037f29394e2b09
1
+ 03980f05fdd701a8f433055d8bdd85f2dc28529163900a2ec32a7ba8cef89336
You can’t perform that action at this time.
0 commit comments