Details
-
Improvement
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Scala 12.1
-
None
-
None
Description
This commit - https://github.com/apache/logging-log4j-scala/commit/63584bb16ec735fb162abf22db977b2832418e62 - will mean that log4j-scala will only support Scala 3.1.x and not Scala 3.0.x.
See https://www.scala-lang.org/blog/2022/02/01/scala-3.1.1-released.html
```
Scala 3 has excellent backward compatibility guarantees between the minor versions. Right now, that means that code compiled with Scala 3.1 can depend on libraries published with 3.0 without any problems. The opposite, hovewer, is not true. Code compiled with 3.0 is not able to read dependencies compiled with 3.1. After the recent release of Scala 3.1.0, we can see that libraries should be really cautious with updating the compiler version, as it forces a bump on every user of that library.
```