From 60e6f1105f0d4847c4844fe7ebeb57d0462e35e1 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 12 Sep 2024 13:39:58 +0000 Subject: [PATCH 1/2] Update spring-context to 6.1.13 --- project/Commons.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Commons.scala b/project/Commons.scala index ff72a6844..8d30049ab 100644 --- a/project/Commons.scala +++ b/project/Commons.scala @@ -31,7 +31,7 @@ object Commons extends ProjectGroup("commons") { val scalacheckVersion = "1.18.0" val jettyVersion = "12.0.13" val mongoVersion = "5.1.4" - val springVersion = "5.3.39" + val springVersion = "6.1.13" val typesafeConfigVersion = "1.4.3" val commonsIoVersion = "1.3.2" // test only val scalaLoggingVersion = "3.9.5" From 6648dfdaeb82c8b2167dfb55763d4844a4fb2154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Kozak?= Date: Wed, 25 Sep 2024 14:27:53 +0200 Subject: [PATCH 2/2] add missing `override` modifier to `com.avsystem.commons.spring.ScalaDefaultValuesInjector#postProcessBeanFactory` --- .../avsystem/commons/spring/ScalaDefaultValuesInjector.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring/src/main/scala/com/avsystem/commons/spring/ScalaDefaultValuesInjector.scala b/spring/src/main/scala/com/avsystem/commons/spring/ScalaDefaultValuesInjector.scala index db34afa8d..3f761b44a 100644 --- a/spring/src/main/scala/com/avsystem/commons/spring/ScalaDefaultValuesInjector.scala +++ b/spring/src/main/scala/com/avsystem/commons/spring/ScalaDefaultValuesInjector.scala @@ -89,5 +89,5 @@ class ScalaDefaultValuesInjector extends BeanDefinitionRegistryPostProcessor { } } - def postProcessBeanFactory(beanFactory: ConfigurableListableBeanFactory): Unit = () + override def postProcessBeanFactory(beanFactory: ConfigurableListableBeanFactory): Unit = () }