@@ -4,10 +4,10 @@ ThisBuild / scalaVersion := scala3Version
4
4
ThisBuild / organization := " com.baeldung"
5
5
ThisBuild / organizationName := " core-scala"
6
6
val jUnitInterface = " com.github.sbt" % " junit-interface" % " 0.13.3" % " test"
7
- val catsEffect = " org.typelevel" %% " cats-effect" % " 3.6.1 "
8
- val catEffectTest = " org.typelevel" %% " cats-effect-testkit" % " 3.6.1 " % Test
7
+ val catsEffect = " org.typelevel" %% " cats-effect" % " 3.6.2 "
8
+ val catEffectTest = " org.typelevel" %% " cats-effect-testkit" % " 3.6.2 " % Test
9
9
val scalaReflection = " org.scala-lang" % " scala-reflect" % scalaV
10
- val logback = " ch.qos.logback" % " logback-classic" % " 1.5.17 "
10
+ val logback = " ch.qos.logback" % " logback-classic" % " 1.5.18 "
11
11
val embedMongoVersion = " 4.20.1"
12
12
val AkkaVersion = " 2.9.3"
13
13
val AlpakkaVersion = " 8.0.0"
@@ -107,7 +107,7 @@ lazy val scala_core_8 = (project in file("scala-core-modules/scala-core-8"))
107
107
libraryDependencies ++= scalaTestDeps,
108
108
scalaVersion := scala3Version,
109
109
libraryDependencies += " org.scala-lang.modules" %% " scala-java8-compat" % " 1.0.2" ,
110
- libraryDependencies += " com.typesafe" % " config" % " 1.2.1 "
110
+ libraryDependencies += " com.typesafe" % " config" % " 1.4.4 "
111
111
// scalacOptions += "-Ymacro-debug-lite"
112
112
)
113
113
@@ -185,7 +185,7 @@ lazy val scala_core_dates =
185
185
libraryDependencies ++= scalaTestDeps,
186
186
libraryDependencies += " joda-time" % " joda-time" % " 2.14.0" ,
187
187
libraryDependencies += " com.github.nscala-time" %% " nscala-time" % " 3.0.0" ,
188
- libraryDependencies += " com.typesafe" % " config" % " 1.4.3 "
188
+ libraryDependencies += " com.typesafe" % " config" % " 1.4.4 "
189
189
)
190
190
191
191
lazy val scala_lang = (project in file(" scala-lang-modules/scala-lang" ))
@@ -392,7 +392,7 @@ lazy val scala2_libraries =
392
392
" io.monix" %% " monix" % monixVersion,
393
393
pureConfigDep,
394
394
" com.github.pureconfig" %% " pureconfig-enumeratum" % " 0.17.9" ,
395
- " com.typesafe" % " config" % " 1.4.3 " ,
395
+ " com.typesafe" % " config" % " 1.4.4 " ,
396
396
" org.scala-lang.modules" %% " scala-async" % " 1.0.1" ,
397
397
" com.clever-cloud.pulsar4s" %% " pulsar4s-core" % " 2.11.0" ,
398
398
" com.clever-cloud.pulsar4s" %% " pulsar4s-jackson" % " 2.11.0" ,
@@ -472,7 +472,7 @@ lazy val scala_libraries = (project in file("scala-libraries"))
472
472
" org.elasticmq" %% " elasticmq-rest-sqs" % " 1.6.12"
473
473
),
474
474
libraryDependencies ++= Seq (
475
- " software.amazon.awssdk" % " sqs" % " 2.31.77 "
475
+ " software.amazon.awssdk" % " sqs" % " 2.31.78 "
476
476
),
477
477
Defaults .itSettings
478
478
)
@@ -484,7 +484,7 @@ lazy val scala_libraries_2 = (project in file("scala-libraries-2"))
484
484
scalaVersion := scala3Version,
485
485
libraryDependencies ++= scalaTestDeps
486
486
.map(_.withConfigurations(Some (" it,test" ))),
487
- libraryDependencies += " io.scalaland" %% " chimney" % " 1.8.1 " ,
487
+ libraryDependencies += " io.scalaland" %% " chimney" % " 1.8.2 " ,
488
488
Defaults .itSettings
489
489
)
490
490
@@ -506,7 +506,7 @@ lazy val scala_libraries_os = (project in file("scala-libraries-os"))
506
506
libraryDependencies ++= scalaTestDeps,
507
507
libraryDependencies ++= Seq (
508
508
log4jApiScalaDep,
509
- " org.apache.logging.log4j" % " log4j-core" % " 2.25.0 " % Runtime
509
+ " org.apache.logging.log4j" % " log4j-core" % " 2.25.1 " % Runtime
510
510
),
511
511
libraryDependencies += osLibDep
512
512
)
@@ -521,7 +521,7 @@ lazy val redis_intro =
521
521
.map(_.withConfigurations(Some (" it,test" ))),
522
522
libraryDependencies ++= Seq (
523
523
" redis.clients" % " jedis" % " 6.0.0" ,
524
- " com.fasterxml.jackson.module" %% " jackson-module-scala" % " 2.14 .1" ,
524
+ " com.fasterxml.jackson.module" %% " jackson-module-scala" % " 2.19 .1" ,
525
525
" org.scalatestplus" %% " mockito-3-4" % " 3.2.10.0" % " it"
526
526
),
527
527
Defaults .itSettings
@@ -554,7 +554,7 @@ val kafkaVersion = "8.0.0-ce"
554
554
val pureconfigVersion = " 0.17.9"
555
555
val jackSonVersion = " 2.19.1"
556
556
val log4jApiScalaVersion = " 13.1.0"
557
- val log4jVersion = " 2.20.0 "
557
+ val log4jVersion = " 2.25.1 "
558
558
val avro4sVersion = " 4.1.2"
559
559
val kafkaAvroSerializer = " 8.0.0"
560
560
@@ -596,7 +596,7 @@ lazy val scala_libraries_testing = (project in file("scala-libraries-testing"))
596
596
" com.amazonaws" % " aws-java-sdk-s3" % " 1.12.787" % IntegrationTest ,
597
597
" com.dimafeng" %% " testcontainers-scala-scalatest" % scalaTestContainersVersion % IntegrationTest ,
598
598
" com.dimafeng" %% " testcontainers-scala-localstack-v2" % scalaTestContainersVersion % IntegrationTest ,
599
- " software.amazon.awssdk" % " s3" % " 2.31.77 "
599
+ " software.amazon.awssdk" % " s3" % " 2.31.78 "
600
600
),
601
601
Defaults .itSettings,
602
602
IntegrationTest / fork := true
@@ -637,7 +637,7 @@ lazy val scala_libraries_config = (project in file("scala-libraries-config"))
637
637
scalaVersion := scala3Version,
638
638
libraryDependencies ++= scalaTestDeps,
639
639
libraryDependencies ++= Seq (
640
- " com.typesafe" % " config" % " 1.4.3 " ,
640
+ " com.typesafe" % " config" % " 1.4.4 " ,
641
641
munitDep,
642
642
" com.github.japgolly.clearconfig" %% " core" % " 3.1.0" ,
643
643
catsEffect,
@@ -743,7 +743,7 @@ lazy val zio3 = (project in file("zio3"))
743
743
" dev.zio" %% " zio-http" % " 3.3.3" ,
744
744
" io.getquill" %% " quill-zio" % " 4.8.5" ,
745
745
" io.getquill" %% " quill-jdbc-zio" % " 4.8.5" ,
746
- " com.h2database" % " h2" % " 2.2.220 "
746
+ " com.h2database" % " h2" % " 2.3.232 "
747
747
),
748
748
libraryDependencies ++= Seq (
749
749
" dev.zio" %% " zio-test" % zioVersion % Test ,
0 commit comments