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
31 changes: 16 additions & 15 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,22 @@
enabled: false,
},
{
// intentionally using Spring Boot 2 in these smoke tests
// intentionally using Spring Boot 2 to make sure the earliest version is supported
matchFileNames: [
'smoke-tests/images/spring-boot/build.gradle.kts',
'smoke-tests-otel-starter/spring-boot-2/build.gradle.kts',
'smoke-tests-otel-starter/spring-boot-common/build.gradle.kts',
'smoke-tests-otel-starter/spring-boot-reactive-2/build.gradle.kts',
'smoke-tests-otel-starter/spring-boot-reactive-common/build.gradle.kts',
'smoke-tests-otel-starter/spring-smoke-testing/build.gradle.kts',
],
matchPackageNames: [
'org.springframework.boot:spring-boot-dependencies:**',
],
enabled: false
},
{
// Spring Boot 2 smoke tests are intentionally using slf4j 1.x
matchFileNames: [
'smoke-tests/images/spring-boot/build.gradle.kts',
'smoke-tests-otel-starter/spring-boot-2/build.gradle.kts',
Expand All @@ -200,7 +215,6 @@
],
matchPackageNames: [
'org.slf4j:slf4j-api',
'org.springframework.boot:**',
],
matchUpdateTypes: [
'major',
Expand Down Expand Up @@ -323,19 +337,6 @@
],
allowedVersions: '/^1\.3\./',
},
{
// intentionally using Spring Boot 2 in dependency management (for Java 8 support)
matchFileNames: [
'dependencyManagement/build.gradle.kts',
],
matchUpdateTypes: [
'major',
],
enabled: false,
matchPackageNames: [
'org.springframework.boot:spring-boot-dependencies:**',
],
},
{
// pinned version to Jetty 8 (Servlet 3.0) for compatibility
matchFileNames: [
Expand Down
Loading