|
| 1 | +--- |
| 2 | +layout: blog-detail |
| 3 | +post-type: blog |
| 4 | +by: Eugene Yokota, Julien Richard-Foy |
| 5 | +title: Preventing Version Conflicts with versionScheme |
| 6 | +--- |
| 7 | + |
| 8 | +One of the things that makes Scala powerful and fun to use is its library ecosystem — spanning across the Maven ecosystem for JVM, and npm for Scala.js. We can use libraries to do operations like download files from the web, or we can use it to adopt different programming paradigms. The library ecosystem allows us to write more useful programs with less effort. |
| 9 | + |
| 10 | +However, the library ecosystem is not without problems. A library that you pulled could depend on other libraries, and the transitive dependencies could cause version conflicts. Here's a quick example of a Scala project that uses Akka HTTP, a Postgres database, and JSON. Its build declares two library dependencies, `akka-http-circe` and `doobie-postgres-circe`: |
| 11 | + |
| 12 | +~~~ |
| 13 | +libraryDependencies ++= Seq( |
| 14 | + "de.heikoseeberger" %% "akka-http-circe" % "1.26.0", |
| 15 | + "org.tpolecat" %% "doobie-postgres-circe" % "0.10.0" |
| 16 | +) |
| 17 | +~~~ |
| 18 | + |
| 19 | +Note that both libraries use Circe for working with JSON. |
| 20 | + |
| 21 | +sbt loads the project build, the project compiles successfully, but when you try to run it, you may get a `NoSuchMethodError` exception at run-time! |
| 22 | + |
| 23 | +What happens here is that one of the transitive dependencies of `akka-http-circe` depends on `circe-core` version 0.11.1, and another transitive dependency of `doobie-postgres-circe` depends on `circe-core` version 0.13.0. Here's an excerpt of the output of sbt’s `dependencyTree` task: |
| 24 | + |
| 25 | +~~~ |
| 26 | +[info] +-de.heikoseeberger:akka-http-circe_2.12:1.26.0 [S] |
| 27 | +[info] | +-io.circe:circe-core_2.12:0.11.1 (evicted by: 0.13.0) |
| 28 | +[info] | |
| 29 | +[info] +-org.tpolecat:doobie-postgres-circe_2.12:0.10.0 [S] |
| 30 | +[info] +-io.circe:circe-core_2.12:0.13.0 [S] |
| 31 | +~~~ |
| 32 | + |
| 33 | +Unfortunately, these two versions of Circe are not binary compatible. Such version conflicts are common in a dependency graph of any practical size. The problem is that we carefully program our code using a statically checked type system, but when it comes to production code we accept swapping out the JAR file with something that our dependency resolver like Coursier and Apache Ivy selected on a whim. |
| 34 | + |
| 35 | +The Scala Center, Alexandre Archambault (author of Coursier), and Eugene Yokota have been working on a solution to reliably detect such conflicts at compilation time. |
| 36 | + |
| 37 | +In the next section, we will explain the mechanism that was in place so far in sbt to address this issue, and we will discuss its limits. Then, we will introduce a new solution, which requires library authors to declare the versioning scheme of their libraries with a new sbt key, `versionScheme`. |
| 38 | + |
| 39 | +## Eviction warnings |
| 40 | + |
| 41 | +Actually this is not the first time we have thought of this issue. In 2014, we added [eviction warning][1] feature to sbt 0.13.6. When you have two candidate versions 0.11.1 and 0.13.0, and when it picks 0.13.0, 0.11.1 is said to be "evicted". |
| 42 | + |
| 43 | +~~~ |
| 44 | +sbt:killer-app> evicted |
| 45 | +[warn] Found version conflict(s) in library dependencies; some are suspected to be binary incompatible: |
| 46 | +[warn] * io.circe:circe-core_2.12:0.13.0 is selected over 0.11.1 |
| 47 | +[warn] +- org.tpolecat:doobie-postgres-circe_2.12:0.10.0 (depends on 0.13.0) |
| 48 | +[warn] +- de.heikoseeberger:akka-http-circe_2.12:1.26.0 (depends on 0.11.1) |
| 49 | +[success] Total time: 1 s, completed Feb 1, 2021, 2:59:56 PM |
| 50 | +~~~ |
| 51 | + |
| 52 | +Here, we see that sbt successfully detected the conflict for circe-core. |
| 53 | + |
| 54 | +This was a step in the right direction, but it did not work well in reality because we had no way to tell whether two versions of a library would be binary compatible or not. In 2014 what we did was guess that a Java library would adopt [Semantic Versioning][2], and a Scala library would adopt [PVP][3]. (Apparently, the versioning scheme “epoch.major.minor” has a name, and it is Haskell Package Versioning Policy, or PVP for short). |
| 55 | + |
| 56 | +Unfortunately, the reality was different and while some Scala libraries use PVP (e.g., Play framework, the standard library, …), some others do use Semantic Versioning (e.g., `scala-collection-compat`, `cats`, …). This makes eviction warnings less reliable since many of these warnings are false positive, and, in practice, [they are ignored by developers][7]. |
| 57 | + |
| 58 | +## Early SemVer and sbt-version-policy |
| 59 | + |
| 60 | +If you are maintaining a library, the first thing you could do to help is picking a version scheme. Our recommendation for libraries going forward is adopting **Early Semver** as described in the documentation page [Binary Compatibility for Library Authors][4]. Please read the linked post by Jacob Wang for more details on binary compatibility and source compatibility. |
| 61 | + |
| 62 | +Given a version number `major.minor.patch`, you MUST increment the: |
| 63 | + |
| 64 | +1. `major` version if backward **binary compatibility** is broken, |
| 65 | +2. `minor` version if backward **source compatibility** is broken, and |
| 66 | +3. `patch` version to signal neither binary nor source incompatibility. |
| 67 | + |
| 68 | +- When the `major` version is `0`, a minor version increment MAY contain **both source and binary breakages**, but a patch version increment MUST remain **binary compatible**. |
| 69 | + |
| 70 | +We call this "Early" SemVer, because according to the [Semantic Versioning Spec][2] there are no guarantees between any versions when the major version is `0`. In the Scala library ecosystem, though, we often start guaranteeing binary compatibility for `0.y.z` like sbt 0.13 and Scala.js 0.6. |
| 71 | + |
| 72 | +Unfortunately, it is not an easy task to know whether a change on public API broke source or binary compatibility. The Scala Center contracted Alexandre Archambault to create [sbt-version-policy][5]. This plugin helps library authors to self-check a version scheme. To use this, add the following to your `project/plugins.sbt`: |
| 73 | + |
| 74 | +~~~ |
| 75 | +addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.0-RC5") |
| 76 | +~~~ |
| 77 | + |
| 78 | +And declare your compatibility intention regarding the next release, in your `build.sbt`: |
| 79 | + |
| 80 | +~~~ |
| 81 | +// The next release must be binary and source compatible with the previous release (it will be a patch release) |
| 82 | +ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible |
| 83 | +~~~ |
| 84 | + |
| 85 | +This plugin provides a task called `versionPolicyCheck`, which you can call in the continuous integration server. |
| 86 | + |
| 87 | +~~~ |
| 88 | +> versionPolicyCheck |
| 89 | +~~~ |
| 90 | + |
| 91 | +The task checks that the current state of the project is binary compatible with the previous release, and fails otherwise, so that you can prevent incompatibilities to be introduced in your project. |
| 92 | + |
| 93 | +We think Early SemVer gives better flexibility to both library authors and library users since it gives more information about what would be in minor upgrades (we often call this feature release) vs patch. For example, sbt 1 ships bug fixes as 1.3.x patch releases without going through RC cycle, so bug fixes are released quickly. |
| 94 | + |
| 95 | +During the minor upgrade (feature release), we aggressively add new features, while maintaining binary compatibility for the plugin ecosystem. These only come out once a year, and it goes through the RC cycle. |
| 96 | + |
| 97 | +## versionScheme, libraryDependencySchemes, and sbt 1.5.0 |
| 98 | + |
| 99 | +As mentioned earlier, sbt contains a built-in eviction warning feature, but there are too many false positives right now because it needs to guess. |
| 100 | + |
| 101 | +Since sbt 1.4.0, there is a new setting `versionScheme`, which can be used by library authors |
| 102 | +to declare the versioning scheme they use: |
| 103 | + |
| 104 | +~~~ |
| 105 | +ThisBuild / versionScheme := Some("early-semver") |
| 106 | +~~~ |
| 107 | + |
| 108 | +sbt 1.4.0 includes this information into `pom.xml` and `ivy.xml` as a property. In addition, sbt uses the information to take the guessing out of eviction warning when this information is available. |
| 109 | + |
| 110 | +In sbt 1.5.0, eviction warnings will be replaced with [eviction errors][8]. Since it can now reliably detect whether two dependencies with different versions are compatible, or if they conflict, the build will fail if an incompatibility is detected in your dependencies. This is of course possible only if the libraries provide their `versionScheme`, otherwise sbt will keep issuing eviction warnings. |
| 111 | + |
| 112 | +It might take a few years for the `versionScheme` information to become prevalent in the ecosystem. In the meantime, as a user of libraries you can manually configure the versioning scheme used by your libraries by using a new setting, `libraryDependencySchemes`. For instance, here is how you can tell sbt that the `circe-core` artifact follows the Early SemVer scheme: |
| 113 | + |
| 114 | +~~~ |
| 115 | +ThisBuild / libraryDependencySchemes += "io.circe" %% "circe-core" % "early-semver" |
| 116 | +~~~ |
| 117 | + |
| 118 | +With this setting, the warning caused by the conflicting versions of circe-core |
| 119 | +becomes an error because the version number 0.13.0 is not binary compatible |
| 120 | +with the version number 0.11.1 according to the Early SemVer scheme: |
| 121 | + |
| 122 | +~~~ |
| 123 | +sbt:killer-app> update |
| 124 | +[error] stack trace is suppressed; run last update for the full output |
| 125 | +[error] (update) found version conflict(s) in library dependencies; some are suspected to be binary incompatible: |
| 126 | +[error] |
| 127 | +[error] * io.circe:circe-core_2.12:0.13.0 (early-semver) is selected over 0.11.1 |
| 128 | +[error] +- org.tpolecat:doobie-postgres-circe_2.12:0.10.0 (depends on 0.13.0) |
| 129 | +[error] +- de.heikoseeberger:akka-http-circe_2.12:1.26.0 (depends on 0.11.1) |
| 130 | +[error] |
| 131 | +[error] |
| 132 | +[error] this can be overridden using libraryDependencySchemes or evictionErrorLevel |
| 133 | +~~~ |
| 134 | + |
| 135 | +## Summary |
| 136 | + |
| 137 | +If you are a library author, set `ThisBuild / versionScheme` to declare the versioning scheme |
| 138 | +used by your library, so that build tools can reliably detect conflicting versions pulled by |
| 139 | +transitive dependencies. |
| 140 | + |
| 141 | +You might also want to have a look at the plugin [sbt-version-policy][5], which helps you |
| 142 | +to implement the versioning scheme that you declare in your build, by detecting the binary |
| 143 | +and source incompatibilities introduced between releases. |
| 144 | + |
| 145 | +As a library user, starting from sbt 1.5.0 you should configure your |
| 146 | +`libraryDependencySchemes` to get accurate eviction errors for libraries that don’t (yet) provide their `versionScheme`. |
| 147 | + |
| 148 | +_[Eugene Yokota](https://twitter.com/eed3si9n) is the lead developer of sbt. [Julien Richard-Foy](https://twitter.com/julienrf) makes MOOCs at the Scala Center_. |
| 149 | + |
| 150 | +[1]: https://github.com/sbt/sbt/pull/147 |
| 151 | +[2]: https://semver.org/ |
| 152 | +[3]: https://pvp.haskell.org/ |
| 153 | +[4]: https://docs.scala-lang.org/overviews/core/binary-compatibility-for-library-authors.html#versioning-scheme---communicating-compatibility-breakages |
| 154 | +[5]: https://github.com/scalacenter/sbt-version-policy |
| 155 | +[7]: https://github.com/sbt/sbt/issues/5976 |
| 156 | +[8]: https://github.com/sbt/sbt/pull/6221 |
0 commit comments