Skip to content

Commit 7cacc51

Browse files
committed
Bump dependencies
1 parent 95175f6 commit 7cacc51

3 files changed

Lines changed: 22 additions & 15 deletions

File tree

build.sbt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ lazy val circe =
8787
.settings(publishSettings)
8888
.settings(
8989
name := "derevo-circe",
90+
91+
libraryDependencySchemes += "io.circe" %% "circe-core" % VersionScheme.Always,
9092
libraryDependencies ++= Seq(Dependencies.circeCore, Dependencies.circeDerivation),
9193
libraryDependencies ++= Seq(Dependencies.circeParser).map(_ % Test)
9294
)
@@ -197,4 +199,7 @@ lazy val vulcan =
197199
lazy val tests =
198200
(project in file("modules/tests"))
199201
.settings(noPublishSettings)
202+
.settings(
203+
libraryDependencySchemes += "io.circe" %% "circe-core" % VersionScheme.Always,
204+
)
200205
.dependsOn(core, circe, ciris, tethys, reactivemongo, catsTagless, pureconfig)

modules/tethysMagnolia/src/main/scala/derevo/tethys/tethysMagnolia.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ object jsonReader extends Derivation[JsonReader] with NewTypeDerivation[JsonRead
119119
def float(): Float = illegal
120120
def double(): Double = illegal
121121
def boolean(): Boolean = illegal
122+
def byte(): Byte = illegal
122123
}
123124

124125
private case class PrependStartObj(inner: TokenIterator) extends BaseTokenIterator {
@@ -140,6 +141,7 @@ object jsonReader extends Derivation[JsonReader] with NewTypeDerivation[JsonRead
140141
def float(): Float = if (!first) inner.float() else illegal
141142
def double(): Double = if (!first) inner.double() else illegal
142143
def boolean(): Boolean = if (!first) inner.boolean() else illegal
144+
def byte(): Byte = if (!first) inner.byte() else illegal
143145
}
144146

145147
private def fail(exp: String, it: TokenIterator)(implicit fn: FieldName) =

project/Dependencies.scala

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ object Dependencies {
44
object Version {
55
val scala212 = "2.12.16"
66

7-
val scala213 = "2.13.12"
7+
val scala213 = "2.13.16"
88

99
val scalatest = "3.2.13"
1010

11-
val catsTagless = "0.14.0"
11+
val catsTagless = "0.16.3"
1212

13-
val cats = "2.7.0"
13+
val cats = "2.13.0"
1414

15-
val circe = "0.14.2"
15+
val circe = "0.14.10"
1616

1717
val circeMagnolia = "0.7.0"
1818

1919
val circeDerivation = "0.13.0-M5"
2020

21-
val pureConfig = "0.17.1"
21+
val pureConfig = "0.17.8"
2222

2323
val magnolia = "0.17.0"
2424

@@ -28,25 +28,25 @@ object Dependencies {
2828

2929
val reactivemongo = "0.20.13"
3030

31-
val tethys = "0.26.0"
31+
val tethys = "0.29.3"
3232

3333
val scalacheck = "1.16.0"
3434

3535
val estatico = "0.4.4"
3636

3737
val supertagged = "2.0-RC2"
3838

39-
val kindProjector = "0.13.2"
39+
val kindProjector = "0.13.3"
4040

4141
val macroParadise = "2.1.1"
4242

4343
val sangria = "3.2.0"
4444

45-
val zioJson = "0.6.2"
45+
val zioJson = "0.7.37"
4646

47-
val zioSchema = "1.1.1"
47+
val zioSchema = "1.6.3"
4848

49-
val vulcan = "1.10.1"
49+
val vulcan = "1.11.1"
5050
}
5151

5252
lazy val magnolia = "com.propensive" %% "magnolia" % Version.magnolia
@@ -66,11 +66,11 @@ object Dependencies {
6666
lazy val scalacheck = "org.scalacheck" %% "scalacheck" % Version.scalacheck
6767
lazy val sangria = "org.sangria-graphql" %% "sangria" % Version.sangria
6868

69-
lazy val circeParser = "io.circe" %% "circe-parser" % Version.circe
70-
lazy val tethysJackson = "com.tethys-json" %% "tethys-jackson" % Version.tethys
71-
lazy val scalatest = "org.scalatest" %% "scalatest" % Version.scalatest
72-
lazy val estatico = "io.estatico" %% "newtype" % Version.estatico
73-
lazy val supertagged = "org.rudogma" %% "supertagged" % Version.supertagged
69+
lazy val circeParser = "io.circe" %% "circe-parser" % Version.circe
70+
lazy val tethysJackson = "com.tethys-json" %% "tethys-jackson213" % Version.tethys
71+
lazy val scalatest = "org.scalatest" %% "scalatest" % Version.scalatest
72+
lazy val estatico = "io.estatico" %% "newtype" % Version.estatico
73+
lazy val supertagged = "org.rudogma" %% "supertagged" % Version.supertagged
7474

7575
lazy val zioSchema = "dev.zio" %% "zio-schema" % Version.zioSchema
7676
lazy val zioSchemaDerivation = "dev.zio" %% "zio-schema-derivation" % Version.zioSchema

0 commit comments

Comments
 (0)