Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 17 additions & 31 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@
ignorePaths: [
'instrumentation/**',
],
// needed in order to get patch-only updates in package rules below
// unfortunately you can't combine updateTypes and separateMinorPatch in the same package rule
// so we have to apply it globally here, see
// https://github.com/renovatebot/renovate/discussions/8399#discussioncomment-305798
separateMinorPatch: true,
Comment on lines -10 to -14
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was a weird setting, this allows us to get rid of it

packageRules: [
{
// this is to reduce the number of renovate PRs
Expand All @@ -23,7 +18,6 @@
'schedule:weekly',
],
groupName: 'weekly update',
separateMinorPatch: false, // overrides separateMinorPatch specified above
},
{
matchPackageNames: [
Expand Down Expand Up @@ -151,11 +145,7 @@
matchPackageNames: [
'uk.org.webcompere:system-stubs-jupiter',
],
matchUpdateTypes: [
'major',
'minor',
],
enabled: false,
allowedVersions: '/^2\.0\./',
},
{
// wiremock 3+ requires Java 11+
Expand Down Expand Up @@ -226,11 +216,7 @@
matchPackageNames: [
'ch.qos.logback:**',
],
matchUpdateTypes: [
'major',
'minor',
],
enabled: false,
allowedVersions: '/^1\.2\./',
},
{
// intentionally using slf4j 1 in this smoke tests
Expand Down Expand Up @@ -261,18 +247,26 @@
],
},
{
// intentionally aligning both netty 4.0 and 4.1 version in this convention
// intentionally aligning netty 4.0 versions in this convention
matchFileNames: [
'conventions/src/main/kotlin/otel.java-conventions.gradle.kts',
],
matchPackageNames: [
'io.netty:netty-bom',
],
matchUpdateTypes: [
'major',
'minor',
matchCurrentVersion: '/^4\\.0\\./',
allowedVersions: '/^4\\.0\\./',
},
{
// intentionally aligning netty 4.1 versions in this convention
matchFileNames: [
'conventions/src/main/kotlin/otel.java-conventions.gradle.kts',
],
enabled: false,
matchPackageNames: [
'io.netty:netty-bom',
],
matchCurrentVersion: '/^4\\.1\\./',
allowedVersions: '/^4\\.1\\./',
},
{
// intentionally using scala 2.11 in otel.scala-conventions.gradle.kts
Expand All @@ -282,11 +276,7 @@
matchPackageNames: [
'org.scala-lang:scala-library',
],
matchUpdateTypes: [
'major',
'minor',
],
enabled: false,
allowedVersions: '/^2\.11\./',
},
{
// intentionally testing against specific major Java versions
Expand Down Expand Up @@ -327,14 +317,10 @@
matchFileNames: [
'dependencyManagement/build.gradle.kts',
],
matchUpdateTypes: [
'major',
'minor',
],
enabled: false,
matchPackageNames: [
'ch.qos.logback:**',
],
allowedVersions: '/^1\.3\./',
},
{
// intentionally using Spring Boot 2 in dependency management (for Java 8 support)
Expand Down
Loading