sbt/notes/0.13.13/inputtask_value.md

522 B

Fixes with compatibility implications

  • .value method is deprecated for input tasks. Calling .value method on an input task returns InputTask[A], which is completely unintuitive and often results to a bug. In most cases .evaluated should be called, which returns A by evaluating the task. Just in case InputTask[A] is needed, inputTaskValue method is now provided. #2709 by @eed3si9n