Skip to content

Commit

Permalink
Pin play smoke test to guice 5 (#12488)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Oct 22, 2024
1 parent 6cbdd01 commit 1621f21
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,14 @@
"matchUpdateTypes": ["major"],
"enabled": false
},
{
// intentionally pinning specifically to guice 5 in the play smoke test
// until we are able to test against the latest version of play
"matchFileNames": ["smoke-tests/images/play/build.gradle.kts"],
"matchPackagePrefixes": ["com.google.inject:", "com.google.inject.extensions:"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
// intentionally aligning both netty 4.0 and 4.1 version in this convention
"matchFileNames": ["conventions/src/main/kotlin/otel.java-conventions.gradle.kts"],
Expand Down
4 changes: 2 additions & 2 deletions smoke-tests/images/play/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ dependencies {
implementation("com.typesafe.play:play-guice_$scalaVer:$playVer")
// Guice 5.1 is needed for Java 17 support on Play 2.8, see https://github.com/playframework/playframework/releases/tag/2.8.15
// TODO (trask) remove these version overrides after updating to Play 2.9
implementation("com.google.inject:guice:7.0.0")
implementation("com.google.inject.extensions:guice-assistedinject:7.0.0")
implementation("com.google.inject:guice:5.1.0")
implementation("com.google.inject.extensions:guice-assistedinject:5.1.0")
implementation("com.typesafe.play:play-logback_$scalaVer:$playVer")
implementation("com.typesafe.play:filters-helpers_$scalaVer:$playVer")
}
Expand Down

0 comments on commit 1621f21

Please sign in to comment.