Releases: palantir/gradle-guide
Releases · palantir/gradle-guide
1.13.0
No documented user-facing changes
1.12.0
No documented user-facing changes
1.11.0
✨ Features
- Rollout autofix for
getProject().getLogger()
to getLogger()
(#178)
1.10.0
✨ Features
- Implement the
MethodCallGraph
to catch errorprone violations (e.g. getProject()
) in helper methods called from @TaskAction
s (#173)
1.9.0
✨ Features
- Fill in adopting-the-configuration-cache.md (#160)
- Autofix
getProject().getLogger()
to getLogger()
(#172)
1.8.0
✨ Features
- Add the
IllegalMethodCalledDuringTaskExecution
ErrorProne to prevent getProject()
calls from within a task action (#142)
1.7.0
💡 Improvements
- Errorprone to check that abstract methods in Tasks or Extensions that return Gradle managed types start with 'get' (#125)
1.6.0
💡 Improvements
- Errorprone to prevent the assignment of values to class fields in tasks or extensions (#121)
1.5.0
🐛 Fixes
- Allow interfaces for Tasks and Extensions (#108)
1.4.0
✨ Features
- Best effort errorprone:
dependsOn(taskProvider.get())
-> dependsOn(taskProvider)
(#102)