mirror of https://github.com/sbt/sbt.git
853 B
853 B
Fixes with compatibility implications
Improvements
Bug fixes
- Fixes memory/performance issue with cached resolution. See below.
Cached resolution fixes
On a larger dependency graph, the JSON file growing to be 100MB+
with 97% of taken up by caller information.
The caller information is not useful once the graph is successfully resolved.
sbt 0.13.9 creates a single caller to represent all callers,
which fixes OutOfMemoryException seen on some builds,
and generally it should make JSON IO faster.