Replies: 9 comments 47 replies
-
@gsmet are those changes automatically applied when a new extension is created using |
Beta Was this translation helpful? Give feedback.
-
Hi!
Thanks Guillaume for the nice guide!
in the migration guide, section "publishing the config documentation"
[1], it may be worth mentioning that the change only affects the "docs"
submodule. If one takes a close look at the patch, then one can see
this. But I was confused for a minute. WDYT?
[1]:
https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.14#publishing-the-config-documentation
…On 08.08.24 20:23, Guillaume Smet wrote:
Hi @quarkiverse/quarkiverse-members
<https://github.com/orgs/quarkiverse/teams/quarkiverse-members> ,
For Quarkus 3.14, a new extension annotation processor has been developed.
This will probably require some changes in your extension once you
update to 3.14.
I have described the changes in details in the 3.14 migration guide:
https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.14#for-extension-developers
.
If you have any questions or encounter any issues, you can ping me
anytime, I'm here to help.
Thanks.
--
Guillaume
—
Reply to this email directly, view it on GitHub
<#228>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHYTGL33VNDULFOVRYLQPSLZQOZRJAVCNFSM6AAAAABMHARMCOVHI2DSMVQWIX3LMV43ERDJONRXK43TNFXW4OZXGAZDMOJVGI>.
You are receiving this because you are on a team that was
mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Is there a Quarkiverse extension repo, where the migration was done already? |
Beta Was this translation helpful? Give feedback.
-
Speaking of which: is 2024-08-14 still the ETA for 3.14.0? And can we
expect a "CR1" before the final release?
…On 08.08.24 22:17, George Gastaldi wrote:
I think 3.14 needs to be released for that to happen?
—
Reply to this email directly, view it on GitHub
<#228 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHYTGL3TFSTQLHXN72VJQJLZQPG3ZAVCNFSM6AAAAABMHARMCOVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTAMRXHE2TEMY>.
You are receiving this because you are on a team that was
mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I think it would be interesting to add the |
Beta Was this translation helpful? Give feedback.
-
If some of you are considering moving to One very important thing is that the prefix has to be moved to the |
Beta Was this translation helpful? Give feedback.
-
What's the point of the change? Couldn't find it in the links shared here. |
Beta Was this translation helpful? Give feedback.
-
What about Quarkus unit tests, I have @RegisterExtension
static final QuarkusUnitTest unitTest = new QuarkusUnitTest()
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
.addClass(SomeClass.class)
.addClass(SomeOtherClass.class))
.overrideConfigKey("org.neo4j.ogm.base-packages", "org.neo4j.ogm.quarkus.test.domain")
.overrideConfigKey("org.neo4j.ogm.use-native-types", "true")
.overrideConfigKey("org.neo4j.ogm.use-strict-querying", "true")
.overrideConfigKey("org.neo4j.ogm.database", "aDatabase"); and now that tests yells at me
with |
Beta Was this translation helpful? Give feedback.
-
For people coming after me: Here's the commit in an application with a straight forward migration to the new config processor: quarkiverse/quarkus-neo4j@585d499 And here's an another extension that does not live in the Quarkiverse and hence does not use the neo4j/neo4j-ogm-quarkus@fe86876 Thanks a lot for helping me out with the latter, @radcortez I would not have found out this alone. |
Beta Was this translation helpful? Give feedback.
-
Hi @quarkiverse/quarkiverse-members ,
For Quarkus 3.14, a new extension annotation processor has been developed.
This will probably require some changes in your extension once you update to 3.14.
I have described the changes in details in the 3.14 migration guide: https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.14#for-extension-developers .
If you have any questions or encounter any issues, you can ping me anytime, I'm here to help.
Thanks.
--
Guillaume
Beta Was this translation helpful? Give feedback.
All reactions