Releases: GradleUp/gratatouille
v0.2.1
v0.2.0
This release simplifies the Gradle configuration and adds support for generating Settings plugins, alongside a few other fixes.
com.gradleup.gratatouille.wiring is replaced by com.gradleup.gratatouille for simplicity.
plugins {
// Replace
id("com.gradleup.gratatouille.wiring")
// With
id("com.gradleup.gratatouille")
}Similarly, gratatouille-wiring-runtime is now just gratatouille-runtime:
dependencies {
// Replace
implementation("gratatouille-wiring-runtime")
// With
implementation("gratatouille-runtime")
}You'll also need to replace the package:
// Replace
import gratatouille.wiring.*
// With
import gratatouille.*Code generation is now enabled automatically if KSP is applied:
gratatouille {
// Remove
codeGeneration()
// If you need to configure some parameters, those are now top level:
// Replace
codeGeneration {
addDependencies = false
}
// With
addDependencies = false
}π·ββοΈ All changes:
- [NEW] Add support for settings plugins in #87
- [BREAKING] Merge the
com.gradleup.gratatouille.wiringand thecom.gradleup.gratatouilleplugins and simplifiy configuration in #84 - [FIX] Allow digits in the isolated classloader configuration name in #80
- [FIX] Remove json dependency in the wiring runtime in #82
- [FIX] Change configurations.all to configurations.configureEach in #81
v0.1.3
Maintenance release.
Brings back group and description in generated code because it's easy to configure everything in one place, add pluginLocalPublication() to make Gratatouille generated plugins work better when used in included builds and more lazy API usages courtesy of @simonlebras, many thanks π
What's Changed
- Use a named configuration for the tasks dependencies by @martinbonnin in #71
- Revert "Remove group and description (#69)" by @martinbonnin in #72
- Do not add path sensitivity annotations for internal properties by @martinbonnin in #73
- Do not include a timestamp in plugin markers by @martinbonnin in #74
- Add GratatouilleExtension.pluginLocalPublication() for included builds compatibility by @martinbonnin in #75
- Use lazy configuration for classpath by @simonlebras in #77
New Contributors
- @simonlebras made their first contribution in #77
Full Changelog: v0.1.2...v0.1.3
v0.1.2
v0.1.1
What's Changed
- [NEW] Use logger API to report errors by @martinbonnin in #60
- [NEW] Add support for BuildServices in parameters (they still need to be registered ahead of time) by @martinbonnin in #63
- [NEW] Allow to use GPlugin for settings plugins by @martinbonnin in #66
- [FIX] Filter out directories from
GInputFilesby @martinbonnin in #55 - [FIX] Allow empty package name in plugin classes by @martinbonnin in #57
- [FIX] Reserve 'project' name by @martinbonnin in #59
Full Changelog: v0.1.0...v0.1.1
v0.1.0
What's Changed
- Update boostrap version by @martinbonnin in #41
- Add a classifier and extension for generated gratatouille files by @martinbonnin in #52
- Update Librarian and Nmcp versions by @martinbonnin in #53
Full Changelog: v0.0.10...v0.1.0
v0.0.10
- Cache classloaders in a build service (#39)
- Split the plugin in 3 different parts:
com.gradleup.gratatouillefor simple cases.com.gradleup.gratatouille.wiringandcom.gradleup.gratatouille.tasksfor classloader isolation cases.
- Similarly, the runtimes are split:
gratatouille-wiring-runtimefor the wiring.gratatouille-tasks-runtimefor the tasks.
v0.0.9
v0.0.8
What's Changed
- Remove kotlin top-level property by @martinbonnin in #32
- Multiple QOL improvements from trying to integrate Gratatouille in Apollo Kotlin by @martinbonnin in #34
- update publication to use the central portal by @martinbonnin in #35
Full Changelog: v0.0.7...v0.0.8
v0.0.7
Technical release to remove dependency on SNAPSHOT artifacts