Skip to content

Commit

Permalink
Update zio-schema, zio-schema-json to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drmarjanovic committed Sep 21, 2024
1 parent f3de18f commit 850fbe0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ lazy val library =
"com.softwaremill.sttp.client4" %% "zio-json" % "4.0.0-M17",
"dev.zio" %% "zio-json" % "0.7.3",
"dev.zio" %% "zio-prelude" % "1.0.0-RC31",
"dev.zio" %% "zio-schema" % "1.4.1",
"dev.zio" %% "zio-schema-json" % "1.4.1",
"dev.zio" %% "zio-schema" % "1.5.0",
"dev.zio" %% "zio-schema-json" % "1.5.0",
"org.apache.commons" % "commons-lang3" % "3.17.0",
"dev.zio" %% "zio-test" % "2.1.9" % Test,
"dev.zio" %% "zio-test-sbt" % "2.1.9" % Test
Expand Down Expand Up @@ -83,8 +83,8 @@ lazy val example =
"dev.zio" %% "zio-config-typesafe" % "4.0.2",
"dev.zio" %% "zio-http" % "3.0.1",
"dev.zio" %% "zio-json" % "0.7.3",
"dev.zio" %% "zio-schema" % "1.4.1",
"dev.zio" %% "zio-schema-json" % "1.4.1"
"dev.zio" %% "zio-schema" % "1.5.0",
"dev.zio" %% "zio-schema-json" % "1.5.0"
)
)
.dependsOn(library)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1298,10 +1298,10 @@ object HttpExecutorSpec extends IntegrationSpec {
for {
_ <- Executor.execute(ElasticRequest.deleteByQuery(secondSearchIndex, matchAll))
_ <-
Executor.execute(ElasticRequest.upsert[TestDocument](secondSearchIndex, subDocumentId, document))
Executor.execute(ElasticRequest.upsert[TestDocument](secondSearchIndex, documentId, document))
_ <- Executor.execute(
ElasticRequest
.upsert[TestSubDocument](secondSearchIndex, documentId, subDocument)
.upsert[TestSubDocument](secondSearchIndex, subDocumentId, subDocument)
.refreshTrue
)
query = range(TestDocument.intField).gte(0)
Expand Down

0 comments on commit 850fbe0

Please sign in to comment.