Skip to content

Commit 44ec105

Browse files
committed
Upgrade scala-uri to 4.0.3, add cats-parse dependency scheme
Restores scala-uri to latest version. The cats-parse version conflict (0.3.x vs 1.0.0) is safe as 1.0.0 maintains binary compatibility with 0.3.x.
1 parent 18d263b commit 44ec105

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

project/BuildSettings.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ object BuildSettings {
3535
lazy val projectSettings = Seq(
3636
organization := "com.snowplowanalytics",
3737
scalaVersion := "2.12.20",
38-
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html"))
38+
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html")),
39+
// Allow cats-parse version override (scala-uri 4.x uses 0.3.x but http4s 0.23.x uses 1.0.x)
40+
libraryDependencySchemes += "org.typelevel" %% "cats-parse" % "always"
3941
)
4042

4143
lazy val commonProjectSettings = projectSettings ++ Seq(

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ object Dependencies {
6565
val scalaForex = "3.0.0"
6666
val scalaWeather = "2.0.0"
6767
val gatlingJsonpath = "0.6.14"
68-
val scalaUri = "1.5.1"
68+
val scalaUri = "4.0.3"
6969
val badRows = "2.3.0"
7070
val igluClient = "4.0.2"
7171

0 commit comments

Comments
 (0)