mirror of https://github.com/sbt/sbt.git
2.4 KiB
2.4 KiB
Fixes
- Fixes "Modified names for (class) is empty" error. zinc#292 / zinc#484 by @jvican
- Fixes tab completion in
consolewhile running in batch mode assbt console. #3841/#3876 by @eed3si9n - Fixes file timestamp retrieval of missing files on Windows. #3871 / io#120 by @cunei
- Aligns the errors thrown by file timestamp implementations. Fixes #3894 / io#121 by @j-keck
- Adds file timestamps native support for FreeBSD. #3894 / io#124 by @cunei
- Fixes JDK 10 version string parsing. launcher#209 by @2m
Improvements
- Deprecates
Extracted#appendin favour ofappendWithSessionorappendWithoutSession. #3865 by @dwijnand - Adds a new global
Booleansetting calledautoStartServer. See below. - Upgrades Scala versions used for sbt cross building
^^. #3923 by @dwijnand - Many documentation maintenance changes by @xuwei-k
autoStartServer setting
sbt 1.1.1 adds a new global Boolean setting called autoStartServer, which is set to true by default.
When set to true, sbt shell will automatically start sbt server. Otherwise, it will not start the server until startServer command is issued. This could be used to opt out of server for security reasons.