Releases: sbt/launcher
Releases · sbt/launcher
1.4.4
behind the scene
- refactor: Avoid deprecated
Class.newInstance
by @xuwei-k in #111 - refactor: Avoid postfixOps by @xuwei-k in #110
- refactor: Fixes warnings. Use slash syntax by @xuwei-k in #109
- refactor: Fixes warnings. Use
scala.jdk.CollectionConverters
by @xuwei-k in #107 - ci: Update GitHub Actions by @eed3si9n in #105
- ci: Update sbt and sbt-plugins by @xuwei-k in #106
- ci: Run
scalafmtSbtCheck
task by @xuwei-k in #108 - ci: Increase the memory for Proguard by @eed3si9n in #112
Full Changelog: v1.4.3...v1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.3
1.3.0
1.3.0-M1
1.2.0
1.1.6
Don't make JAnsi ClassLoader unless necessary
For historical reasons, it was necessary to always put JAnsi in a ClassLoader above the rest of the metabuild classpath. As of sbt 1.x,
that is no longer the case and causes problems when using the latest JAnsi version in sbt. We still need to have the JAnsi loader for legacy
versions so now we only make the jansi loader if we detect that we are launching a 0.x version on non Cygwin windows. #81 by @eatkins