|
28 | 28 | "versioning": "regex:^(?<major>\\d{1,4})\\.(?<minor>\\d+)(\\.(?<patch>\\d+))?$" |
29 | 29 | }, |
30 | 30 | { |
31 | | - "description": "Group these calcite dependency upgrades together in same PR", |
32 | | - "matchPackagePrefixes": ["org.apache.calcite"], |
33 | | - "groupName": "org.apache.calcite" |
| 31 | + "description": "Byte Buddy publishes a -jdk5 backport variant alongside each release (e.g. 1.18.10-jdk5). Ignore those so we track the mainline versions (e.g. 1.18.10).", |
| 32 | + "matchPackagePrefixes": ["net.bytebuddy"], |
| 33 | + "allowedVersions": "!/-jdk5$/" |
34 | 34 | }, |
35 | 35 | { |
36 | | - "description": "Group these httpcomponents dependency upgrades together in same PR", |
37 | | - "matchPackagePrefixes": ["org.apache.httpcomponents"], |
38 | | - "groupName": "org.apache.httpcomponents" |
| 36 | + "description": "CATCH-ALL: bundle all remaining minor/patch bumps of otherwise-ungrouped libraries into one PR to cut churn. Major bumps are intentionally NOT grouped here - they stay as individual PRs. The test bucket and the logical groups below override this for their packages.", |
| 37 | + "matchManagers": ["gradle"], |
| 38 | + "matchUpdateTypes": ["minor", "patch"], |
| 39 | + "groupName": "all non-major dependencies" |
39 | 40 | }, |
40 | 41 | { |
41 | | - "description": "Test-dependencies are checked less often than the shipped deps", |
| 42 | + "description": "CATCH-ALL for test-only deps: bundle their minor/patch bumps separately from shipped deps. Major bumps stay individual.", |
| 43 | + "matchManagers": ["gradle"], |
42 | 44 | "matchDepTypes": ["test"], |
43 | | - "schedule": ["before 9am on the first day of the month"] |
| 45 | + "matchUpdateTypes": ["minor", "patch"], |
| 46 | + "groupName": "all non-major test dependencies" |
| 47 | + }, |
| 48 | + { |
| 49 | + "description": "Admin UI (Kotlin Multiplatform / Compose stack in solr/ui) - compose, androidx, kotlin(x), decompose/essenty/mvikotlin, ktor and kotlin-logging all move together. The Compose compiler plugin is version-locked to the Kotlin release.", |
| 50 | + "matchPackagePrefixes": [ |
| 51 | + "org.jetbrains.kotlin", |
| 52 | + "org.jetbrains.compose", |
| 53 | + "org.jetbrains.androidx", |
| 54 | + "com.arkivanov", |
| 55 | + "io.ktor", |
| 56 | + "io.github.oshai" |
| 57 | + ], |
| 58 | + "groupName": "Admin UI" |
| 59 | + }, |
| 60 | + { |
| 61 | + "description": "Web/server stack - Jetty servlet container, the Jakarta EE APIs, and the Jersey (JAX-RS) impl with its HK2 DI. solr/core wires jersey-container-jetty-http + jersey-inject-hk2 + jakarta APIs onto Jetty, so they must stay compatible.", |
| 62 | + "matchPackagePrefixes": [ |
| 63 | + "org.eclipse.jetty", |
| 64 | + "jakarta.", |
| 65 | + "org.glassfish.jersey", |
| 66 | + "org.glassfish.hk2" |
| 67 | + ], |
| 68 | + "groupName": "Web server stack" |
| 69 | + }, |
| 70 | + { |
| 71 | + "description": "gRPC / Netty / protobuf transport stack - grpc-netty uses Netty as its transport and grpc-protobuf uses protobuf. Shared by both the OpenTelemetry OTLP exporter and the GCS client, so it is its own group rather than owned by either.", |
| 72 | + "matchPackagePrefixes": [ |
| 73 | + "io.grpc", |
| 74 | + "io.netty", |
| 75 | + "com.google.protobuf" |
| 76 | + ], |
| 77 | + "groupName": "gRPC and Netty" |
| 78 | + }, |
| 79 | + { |
| 80 | + "description": "Telemetry - OpenTelemetry API/SDK/exporters/instrumentation plus the Prometheus metrics libraries it exports to (solr/core uses otel-exporter-prometheus with prometheus-metrics-*).", |
| 81 | + "matchPackagePrefixes": [ |
| 82 | + "io.opentelemetry", |
| 83 | + "io.prometheus" |
| 84 | + ], |
| 85 | + "groupName": "Telemetry (OpenTelemetry & Prometheus)" |
| 86 | + }, |
| 87 | + { |
| 88 | + "description": "Google Cloud client stack used by the GCS repository - cloud client, api and auth libraries plus the BOM. Kept separate from the gRPC transport it consumes and from general com.google.* utility libs (guava, gson, errorprone).", |
| 89 | + "matchPackagePrefixes": [ |
| 90 | + "com.google.cloud", |
| 91 | + "com.google.api", |
| 92 | + "com.google.auth" |
| 93 | + ], |
| 94 | + "groupName": "Google Cloud" |
| 95 | + }, |
| 96 | + { |
| 97 | + "description": "FasterXML Jackson and the Woodstox XML stack - jackson-bom family, plus woodstox-core (com.fasterxml.woodstox) and its required stax2-api (org.codehaus.woodstox), which are used together in solr/core.", |
| 98 | + "matchPackagePrefixes": [ |
| 99 | + "com.fasterxml.jackson", |
| 100 | + "com.fasterxml.woodstox", |
| 101 | + "org.codehaus.woodstox" |
| 102 | + ], |
| 103 | + "groupName": "Jackson & Woodstox" |
| 104 | + }, |
| 105 | + { |
| 106 | + "description": "Logging stack - Log4j, SLF4J (the log4j-slf4j2-impl bridge and jul/jcl bridges tie them together) and LMAX Disruptor, which is only present for Log4j2 async logging.", |
| 107 | + "matchPackagePrefixes": [ |
| 108 | + "org.apache.logging.log4j", |
| 109 | + "org.slf4j", |
| 110 | + "com.lmax" |
| 111 | + ], |
| 112 | + "groupName": "Logging" |
| 113 | + }, |
| 114 | + { |
| 115 | + "description": "ZooKeeper and Curator - Curator is a ZooKeeper client library and must stay compatible with the ZooKeeper version.", |
| 116 | + "matchPackagePrefixes": [ |
| 117 | + "org.apache.zookeeper", |
| 118 | + "org.apache.curator" |
| 119 | + ], |
| 120 | + "groupName": "ZooKeeper & Curator" |
44 | 121 | }, |
45 | 122 | { |
46 | | - "description": "AWS SDK packages checked less often", |
| 123 | + "description": "Calcite (calcite-core/linq4j + avatica) must move together", |
| 124 | + "matchPackagePrefixes": ["org.apache.calcite"], |
| 125 | + "groupName": "Calcite" |
| 126 | + }, |
| 127 | + { |
| 128 | + "description": "Apache HttpComponents (httpclient/httpcore/httpmime) must move together", |
| 129 | + "matchPackagePrefixes": ["org.apache.httpcomponents"], |
| 130 | + "groupName": "Apache HttpComponents" |
| 131 | + }, |
| 132 | + { |
| 133 | + "description": "AWS SDK - single BOM-aligned version across ~11 artifacts", |
47 | 134 | "matchPackagePrefixes": ["software.amazon.awssdk"], |
48 | | - "groupName": "AWS SDK", |
49 | | - "schedule": ["before 9am on the first day of the month"] |
| 135 | + "groupName": "AWS SDK" |
50 | 136 | }, |
51 | 137 | { |
52 | | - "description": "Google Cloud BOM checked less often to avoid spam", |
53 | | - "matchPackageNames": ["com.google.cloud:google-cloud-bom"], |
54 | | - "schedule": ["before 9am on the first day of the month"] |
| 138 | + "description": "OkHttp and Okio - okhttp depends on a compatible okio", |
| 139 | + "matchPackagePrefixes": ["com.squareup.okhttp3", "com.squareup.okio"], |
| 140 | + "groupName": "OkHttp & Okio" |
55 | 141 | }, |
56 | 142 | { |
57 | | - "description": "Workaround for https://github.com/renovatebot/renovate/issues/19226", |
58 | | - "matchPackageNames": ["solr:modules", "HH:mm"], |
| 143 | + "description": "Skip major jetty upgrades - must be done manually (overrides the Web server stack group above for jetty majors only)", |
| 144 | + "matchPackagePrefixes": ["org.eclipse.jetty"], |
| 145 | + "matchUpdateTypes": ["major"], |
59 | 146 | "enabled": false |
60 | 147 | }, |
61 | 148 | { |
62 | | - "description": "Lucene dependencies should be skipped", |
| 149 | + "description": "Lucene dependencies should be skipped (upgraded together with the Lucene release)", |
63 | 150 | "matchPackagePrefixes": ["org.apache.lucene"], |
64 | 151 | "enabled": false |
65 | 152 | }, |
66 | 153 | { |
67 | | - "description": "Skip major jetty upgrades - must be done manually", |
68 | | - "matchPackagePrefixes": ["org.eclipse.jetty"], |
69 | | - "matchUpdateTypes": ["major"], |
| 154 | + "description": "Lock cuvs-lucene below v26 - the 26.x line is compiled for JDK 22 (class file major version 66) but Solr targets JDK 21, so it fails to compile (see PR #4134). Revisit when Solr's minimum JDK is raised.", |
| 155 | + "matchPackageNames": ["com.nvidia.cuvs.lucene:cuvs-lucene"], |
| 156 | + "allowedVersions": "<26" |
| 157 | + }, |
| 158 | + { |
| 159 | + "description": "Workaround for https://github.com/renovatebot/renovate/issues/19226", |
| 160 | + "matchPackageNames": ["solr:modules", "HH:mm"], |
70 | 161 | "enabled": false |
71 | 162 | }, |
72 | 163 | { |
|
96 | 187 | "changelogUrl": "https://commons.apache.org/proper/commons-configuration/changes-report.html" |
97 | 188 | }, |
98 | 189 | { |
99 | | - "description": "Group these UI dependency upgrades together in same PR", |
100 | | - "matchPackagePrefixes": ["com.arkivanov", "org.jetbrains.compose"], |
101 | | - "groupName": "Admin UI libraries" |
102 | | - }, |
103 | | - { |
104 | | - "description": "Group all GitHub Actions upgrades together in same PR, checked once per month", |
| 190 | + "description": "Group all GitHub Actions upgrades together in same PR", |
105 | 191 | "matchManagers": ["github-actions"], |
106 | | - "groupName": "GitHub Actions", |
107 | | - "schedule": ["before 9am on the first day of the month"] |
| 192 | + "groupName": "GitHub Actions" |
108 | 193 | } |
109 | 194 | ], |
110 | | - "schedule": ["* * * * 0"], |
| 195 | + "schedule": ["* * * * *"], |
111 | 196 | "prConcurrentLimit": 300, |
112 | 197 | "prHourlyLimit": 20, |
113 | 198 | "minimumReleaseAge": "5 days" |
|
0 commit comments