Skip to content

Update plugin gratatouille to v0.2.1#1599

Merged
martinbonnin merged 2 commits intomainfrom
renovate/com.gradleup.gratatouille-0.x
Dec 27, 2025
Merged

Update plugin gratatouille to v0.2.1#1599
martinbonnin merged 2 commits intomainfrom
renovate/com.gradleup.gratatouille-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 16, 2025

This PR contains the following updates:

Package Change Age Confidence
com.gradleup.gratatouille 0.0.4 -> 0.2.1 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

GradleUp/gratatouille (com.gradleup.gratatouille)

v0.2.1

2025_12_25

Hotfix release to make it possible for plugins built with Gratatouille > 0.2.0 to work with the ones built with Gratatouille < 0.2.0 (#​90)

v0.2.0

2025_12_22

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.wiring and the com.gradleup.gratatouille plugins 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

2025_11_04

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 🙏

All changes

v0.1.2

2025_08_27

  • Fix a bug introduced in #​55 where filtering the input files would lose the normalized path (#​68)
  • Remove group and description from the codegen. It is very easy to set those outside of Gratatouille (#​69)

v0.1.1

2025-08-20

v0.1.0

2025-06-30

v0.0.10

2025-06-11

  • Cache classloaders in a build service (#​39)
  • Split the plugin in 3 different parts:
    • com.gradleup.gratatouille for simple cases.
    • com.gradleup.gratatouille and com.gradleup.gratatouille.tasks for classloader isolation cases.
  • Similarly, the runtimes are split:
    • gratatouille-wiring-runtime for the wiring.
    • gratatouille-tasks-runtime for the tasks.

v0.0.9

2025-05-31

v0.0.8

2025-05-14

v0.0.7

2025-04-25

  • Technical release to remove dependency on SNAPSHOT artifacts

v0.0.6

2025-04-25

  • Use @Classpath for classpath properties (#​29)
  • Add support for injecting logger in task actions (#​28)

v0.0.5

2025-04-16

  • Added @GPlugin, @GExtension and @GFileName
  • Made kotlinx.serialization support opt-in
  • Simplify Gradle configuration with only one plugin

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch 3 times, most recently from af7eb0f to c647ee2 Compare April 25, 2025 08:27
@renovate renovate bot changed the title Update plugin gratatouille to v0.0.5 Update plugin gratatouille to v0.0.6 Apr 25, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from c647ee2 to 3fda1b7 Compare April 25, 2025 09:17
@renovate renovate bot changed the title Update plugin gratatouille to v0.0.6 Update plugin gratatouille to v0.0.7 Apr 25, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 3fda1b7 to 912160a Compare May 14, 2025 18:47
@renovate renovate bot changed the title Update plugin gratatouille to v0.0.7 Update plugin gratatouille to v0.0.8 May 14, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 912160a to 802b232 Compare May 31, 2025 13:35
@renovate renovate bot changed the title Update plugin gratatouille to v0.0.8 Update plugin gratatouille to v0.0.9 May 31, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 802b232 to bba9b9b Compare June 11, 2025 18:07
@renovate renovate bot changed the title Update plugin gratatouille to v0.0.9 Update plugin gratatouille to v0.0.10 Jun 11, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from bba9b9b to 08867d5 Compare June 30, 2025 16:38
@renovate renovate bot changed the title Update plugin gratatouille to v0.0.10 Update plugin gratatouille to v0.1.0 Jun 30, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 08867d5 to 36be86e Compare July 8, 2025 17:52
@renovate renovate bot changed the title Update plugin gratatouille to v0.1.0 chore(deps): update plugin gratatouille to v0.1.0 Aug 1, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 36be86e to 5c0e4a8 Compare August 10, 2025 12:26
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 5c0e4a8 to 4471822 Compare August 20, 2025 13:06
@renovate renovate bot changed the title chore(deps): update plugin gratatouille to v0.1.0 chore(deps): update plugin gratatouille to v0.1.1 Aug 20, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 4471822 to 366858e Compare August 27, 2025 17:42
@renovate renovate bot changed the title chore(deps): update plugin gratatouille to v0.1.1 chore(deps): update plugin gratatouille to v0.1.2 Aug 27, 2025
@renovate renovate bot changed the title chore(deps): update plugin gratatouille to v0.1.2 Update plugin gratatouille to v0.1.2 Oct 5, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 366858e to 367cf2f Compare October 9, 2025 11:14
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 367cf2f to 84c1f1a Compare November 4, 2025 14:46
@renovate renovate bot changed the title Update plugin gratatouille to v0.1.2 Update plugin gratatouille to v0.1.3 Nov 4, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 84c1f1a to 18de4f2 Compare November 18, 2025 22:57
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 18de4f2 to 535b6fa Compare December 8, 2025 21:52
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 535b6fa to 7c0ff4a Compare December 22, 2025 13:50
@renovate renovate bot changed the title Update plugin gratatouille to v0.1.3 Update plugin gratatouille to v0.2.0 Dec 22, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.gratatouille-0.x branch from 7c0ff4a to a90a76b Compare December 26, 2025 01:13
@renovate renovate bot changed the title Update plugin gratatouille to v0.2.0 Update plugin gratatouille to v0.2.1 Dec 26, 2025
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Dec 27, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@martinbonnin martinbonnin merged commit cda4cd9 into main Dec 27, 2025
5 checks passed
@martinbonnin martinbonnin deleted the renovate/com.gradleup.gratatouille-0.x branch December 27, 2025 08:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant