Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #605

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1435,6 +1435,7 @@ object CsvDecoder extends CsvProductDecoders {
case StandardType.FloatType => floatDecoder
case StandardType.DoubleType => doubleDecoder
case StandardType.BinaryType => notSupported("BinaryType")
case StandardType.CurrencyType => notSupported("CurrencyType")
case StandardType.CharType => charDecoder
case StandardType.UUIDType => uuidDecoder
case StandardType.BigDecimalType => bigDecimalDecoder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ object CsvEncoder {
case StandardType.FloatType => floatEncoder
case StandardType.DoubleType => doubleEncoder
case StandardType.BinaryType => notSupported("BinaryType")
case StandardType.CurrencyType => notSupported("CurrencyType")
case StandardType.CharType => charEncoder
case StandardType.UUIDType => uuidEncoder
case StandardType.BigDecimalType => bigDecimalEncoder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import eu.timepit.refined.auto._
import zio.test._
import zio.{durationInt, ZIO}

import scala.annotation.nowarn

//noinspection TypeAnnotation
object DstreamClientSpec extends ZIOSpecDefault with DstreamSpecEnv {
import dev.chopsticks.dstream.test.DstreamTestUtils._
Expand Down Expand Up @@ -60,7 +58,6 @@ object DstreamClientSpec extends ZIOSpecDefault with DstreamSpecEnv {
DstreamMasterConfig(serviceId = "test", parallelism = 1, ordered = true)
).forTest

@nowarn
override def spec = suite("Dstream basic tests")(
test("should work end to end")(basicTest) @@ timeoutInterrupt(5.seconds)
)
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,7 @@ object OpenApiZioSchemaCirceConverter {
case StandardType.FloatType => io.circe.Decoder[Float]
case StandardType.DoubleType => io.circe.Decoder[Double]
case StandardType.BinaryType => ???
case StandardType.CurrencyType => ???
case StandardType.CharType => io.circe.Decoder[String]
case StandardType.BigIntegerType => io.circe.Decoder[BigInteger]
case StandardType.BigDecimalType => io.circe.Decoder[java.math.BigDecimal]
Expand Down Expand Up @@ -1828,6 +1829,7 @@ object OpenApiZioSchemaCirceConverter {
case StandardType.FloatType => io.circe.Encoder[Float]
case StandardType.DoubleType => io.circe.Encoder[Double]
case StandardType.BinaryType => ???
case StandardType.CurrencyType => ???
case StandardType.CharType => io.circe.Encoder[String]
case StandardType.BigIntegerType => io.circe.Encoder[BigInteger]
case StandardType.BigDecimalType => io.circe.Encoder[java.math.BigDecimal]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ object OpenApiZioSchemaToTapirConverter {
case StandardType.ZonedDateTimeType => SchemaType.SDateTime()
case StandardType.ZoneIdType => SchemaType.SString()
case StandardType.ZoneOffsetType => SchemaType.SString()
case StandardType.CurrencyType => SchemaType.SString()
}
addAnnotations(typeId = None, TapirSchema[A](schemaType = schemaType), extractAnnotations(annotations))
}
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ object Dependencies {
val SCALA_VERSION = "2.13.10"
val PEKKO_VERSION = "1.0.2"
val PEKKO_HTTP_VERSION = "1.0.1"
val ZIO_VERSION = "2.0.21"
val IZUMI_VERSION = "1.2.6"
val ZIO_VERSION = "2.1.11"
val IZUMI_VERSION = "1.2.10"
val REFINED_VERSION = "0.9.29"
val CIRCE_VERSION = "0.14.3"
val CALIBAN_VERSION = "2.5.3"
Expand Down Expand Up @@ -114,7 +114,7 @@ object Dependencies {
)

val fdbDeps = Seq(
"org.foundationdb" % "fdb-java" % "7.1.53"
"org.foundationdb" % "fdb-java" % "7.1.59"
)

val shapelessDeps = Seq(
Expand Down Expand Up @@ -244,7 +244,7 @@ object Dependencies {

lazy val zioSchemaDeps = {
val zioSchemaOrganization = "dev.zio"
val zioSchemaVersion = "1.1.0"
val zioSchemaVersion = "1.5.0"
Seq(
zioSchemaOrganization %% "zio-schema" % zioSchemaVersion,
zioSchemaOrganization %% "zio-schema-json" % zioSchemaVersion,
Expand Down