-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document compatible rewrite-maven-plugin
and rewrite-gradle-plugin
on release for quarkus-updates
#23
Comments
Hi @gsmet ; Ideally these issues are rare because of some automations we use, and I'm not quite sure how this one slipped in. I've flushed it out with a new release though, and followed up with a release of rewrite-quarkus for good measure. To give you a bit of background: all our repositories can have individual patch releases, and depend on each other's latest version. For the Maven plugin we have a small step ahead of a release to ensure we pick up any new versions before a release: When I just ran the release for rewrite-maven-plugin it did indeed pick up the version of We (I ;)) take extra care to only release the next modules and plugins downstream once the previous ones are fully available from Maven Central. That's also why I'm puzzled how we ended up not aligning as well with the last plugin release. Separate of any individual patch releases, we do a full release train once every two weeks or so, which sees updates to all modules and plugins, and culminates in a release of our Open to other options or suggestions, and happy to help work through any issues that might remain. |
OK, I understand things better now. Yeah, you cannot define the versions of plugins in a BOM. I would not add the Maven and Gradle plugins as a dependency in the I'm not sure how you build this BOM though and if it would be easy to do it. Another thing that would be extremely helpful is if you were able to inject the versions of the plugins in the GitHub releases notes of the I'm not exactly sure how pluggable your release process is but https://github.com/hub4j/github-api/ might come handy, we use it a lot for our automation. |
Thanks for the suggestions! I like the option of adding the version numbers to the release notes; I'll see if I can fit that in. For now I've added the compatible plugin versions to the release notes of the new rewrite-recipe-bom; hope that already helps: |
Yeah, I can confirm it's really useful: quarkusio/quarkus-updates#99 |
rewrite-maven-plugin
and rewrite-gradle-plugin
on release for quarkus-updates
I've renamed and moved this issue to reflect the changed scope; we're revising our release process and will plead for this to make it in. |
I'm pretty sure the ask here reflects what just happened to use. This patch release brought in this patch-released change, which is breaking for us (for various reasons we needed to use Java constructor for instantiation). Our build uses the recipe-bom, which is currently coupled with a rewrite-maven version that does not have this change. So our build succeeds even when keeping up to date. So far, we have been guiding our users to stay current with rewrite-maven-plugin patch releases, but that broke us because some of our recipes just stopped getting included. What makes things worse is they are more or less silently excluded (code). So +1 on seeing a compatibility matrix. Additionally, is there any thought to delaying the Maven plugin release until after this BOM is released? |
Ah sorry to hear! The compatibility matrix is pretty much every release of rewrite-recipe-bom that's listed here: We roll up all the changes over the past two weeks into new releases on a schedule; the next one is slated for tomorrow to flush out any of these issues. You're right in pointing out that We of course never intend to break things, and to stay predictable; that's why every two weeks you get new On our end we do need |
Ah, I missed that rewrite-maven-plugin is somehow managed in this bom, unless I'm misreading your release notes. I think this project uses gradle-magic I'm unaware of:) |
It's not as much managed (no such mechanism that I'm aware of) as it is released together and announced in tandem, such that there's always a combination that will work well. We of course recommend the latest based on what's listed here, but welcome to pick any other aligned versions from there. |
As part of the
quarkus-updates
project, we have been struggling a bit to find a setup that would actually reflect the current version used by the Maven plugin and the Gradle plugin.Typically, when developing our recipes and tests, we want to make sure that we are using the version of the rewrite-bom that is used in the Maven plugin - and ideally it would be the same one used in the Gradle plugin or we will have some discrepancies.
And similarly, for the Gradle plugin.
A good example of this issue is that a new version of the Maven plugin was released yesterday, apparently together with the core project but the Maven plugin is still referencing
8.11.3
, while the core project (with I think the fix I wanted) is at8.11.5
.I can enforce
8.11.5
in my project but when running the Maven plugin, the jars around will be at8.11.3
thus not having the fix.I was wondering if there was a good strategy to actually make sure that we are using consistent versioning, apart from manually checking each update?
Also was it a mistake that
5.17.0
of the Maven plugin is pointing to8.11.3
and not8.11.5
?The text was updated successfully, but these errors were encountered: