Skip to content

Commit bd08286

Browse files
[release/v1.33.x] Limit vaadin latest dep version (#11569)
Co-authored-by: Lauri Tulmin <[email protected]>
1 parent 0a2a8cd commit bd08286

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

conventions/src/main/kotlin/io.opentelemetry.instrumentation.base.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ abstract class TestLatestDepsRule : ComponentMetadataRule {
3838
|| version.contains("-beta", true)
3939
|| version.contains("-rc", true)
4040
|| version.contains("-m", true) // e.g. spring milestones are published to grails repo
41+
|| version.contains(".m", true) // e.g. lettuce
4142
|| version.contains(".alpha", true) // e.g. netty
4243
|| version.contains(".beta", true) // e.g. hibernate
4344
|| version.contains(".cr", true) // e.g. hibernate

instrumentation/vaadin-14.2/javaagent/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ testing {
6666
val vaadinLatestTest by registering(JvmTestSuite::class) {
6767
dependencies {
6868
implementation(project(":instrumentation:vaadin-14.2:testing"))
69-
implementation("com.vaadin:vaadin-spring-boot-starter:+")
69+
// tests fail with 24.4.1
70+
implementation("com.vaadin:vaadin-spring-boot-starter:24.3.13")
7071
}
7172
}
7273
}

0 commit comments

Comments
 (0)