Skip to content

Commit 1cb5fb1

Browse files
authored
Merge pull request #585 from CleverCloud/bump/deps
Bump deps
2 parents 1beb978 + 03f22e9 commit 1cb5fb1

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

build.sbt

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,29 @@ def publishVersion = if (isRelease) releaseVersion else if (isGithubActions) "2.
99
val org = "com.clever-cloud.pulsar4s"
1010
val AkkaStreamVersion = "2.6.20" // compatible with Akka 2.5.x and 2.6.x
1111
val CatsEffectVersion = "3.5.3"
12-
val CirceVersion = "0.14.3"
12+
val CirceVersion = "0.14.6"
1313
val CommonsIoVersion = "2.4"
1414
val ExtsVersion = "1.61.1"
15-
val JacksonVersion = "2.14.1"
16-
val Log4jVersion = "2.22.0"
15+
val JacksonVersion = "2.14.3"
16+
val Log4jVersion = "2.22.1"
1717
val MonixVersion = "3.4.1"
18-
val PekkoStreamVersion = "1.0.0"
18+
val PekkoStreamVersion = "1.0.2"
1919
val PlayJsonVersion = "2.10.4"
20-
val PulsarVersion = "3.1.1"
20+
val PulsarVersion = "3.2.0"
2121
val ReactiveStreamsVersion = "1.0.2"
22-
val FunctionalStreamsVersion = "3.4.0"
22+
val FunctionalStreamsVersion = "3.9.4"
2323
val Json4sVersion = "4.0.7"
2424
// Version of Avro4s for Scala 2.X
2525
val Avro4sVersionFor2 = "4.1.1"
2626
// Version of Avro4s for Scala 3.X
27-
val Avro4sVersionFor3 = "5.0.3"
27+
val Avro4sVersionFor3 = "5.0.9"
2828
val ScalaVersion = "3.3.1"
2929
val ScalatestVersion = "3.2.17"
3030
val ScalazVersion = "7.2.35"
31-
val Slf4jVersion = "2.0.9"
31+
val Slf4jVersion = "2.0.11"
3232
val SprayJsonVersion = "1.3.6"
33-
val ZIOVersion = "2.0.19"
34-
val ZIOInteropCatsVersion = "23.0.0.8"
33+
val ZIOVersion = "2.0.21"
34+
val ZIOInteropCatsVersion = "23.0.03"
3535

3636
lazy val commonScalaVersionSettings = Seq(
3737
scalaVersion := ScalaVersion,

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.7
1+
sbt.version=1.9.8

pulsar4s-circe/src/test/scala-3/com/sksamuel/pulsar4s/circe/CirceProducerConsumerTest.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ class CirceProducerConsumerTest extends AnyFunSuite with Matchers {
3636
val topic = Topic("persistent://sample/standalone/ns1/test_" + UUID.randomUUID)
3737

3838
val producer = client.producer[String](ProducerConfig(topic))
39-
val messageId = producer.send("""{"foo": "bar"}""")
39+
val messageId = producer.send("""{"not":"Cafe"}""")
4040
producer.close()
4141

4242
val consumer = client.consumer[Cafe](ConsumerConfig(topics = Seq(topic), subscriptionName = Subscription.generate))
4343
consumer.seek(MessageId.earliest)
4444
val msg = consumer.receive
45-
msg.get.valueTry shouldBe Failure(DecodingFailure("Cafe", List()))
45+
msg.get.valueTry.isFailure shouldBe true
4646
consumer.close()
4747

4848
client.close()

0 commit comments

Comments
 (0)