fix: unblock release on Scala 3 (Cinnamon/Jackson cross-version conflict) - #215
Merged
Conversation
cinnamon-opentracing-datadog:2.22.3 hardcodes a compile-scope dependency on jackson-module-scala_2.13. On the Scala 3 cross-build this collides with jackson-module-scala_3 (pulled by akka-serialization-jackson), failing checkPullBom with a conflicting cross-version suffixes error. Skip that module in the resolution check only. bomIncludeModules is unchanged, so the published BOM still lists it and carries no exclusions (exclusion-based fixes leak into the BOM via sbt-bill-of-materials).
Add a Known issues page describing the cinnamon-opentracing-datadog jackson-module-scala_2.13 collision on Scala 3, with sbt/Maven/Gradle exclusion snippets, and link it from the versions index.
ennru
approved these changes
Jul 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release has been failing on
mainsince Scala 3 was added to the cross-build (#212):sbt checkPullBomaborts on the Scala 3.3.7 pass withcinnamon-opentracing-datadoghardcodes a compile-scopejackson-module-scala_2.13, which collides withjackson-module-scala_3(fromakka-serialization-jackson) on Scala 3. Upstream bug: lightbend/cinnamon#3428.bomIncludeModulesis untouched, so the published BOM still lists it and carries no exclusions (exclusion-based fixes leak into the BOM via sbt-bill-of-materials, and would break Scala 2.13 consumers).