-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Migration Guide 2.11
Falko Modler edited this page Jun 22, 2022
·
9 revisions
Previously, the default scope attached to a @GraphQLApi
endpoint was @Dependent
. Now, unless you explicitly add a scope annotation to your endpoint, it will act as a @Singleton
bean. This is thus aligned with the default behavior of JAX-RS endpoints.
All database Dev Services now use the same database name, username and password:
- Database name:
quarkus
- Username:
quarkus
- Password:
quarkus
Except for Microsoft SQL Server, for which both the database and Testcontainers are less flexible:
- Database name: none
- Username:
SA
- Password:
Quarkus123
As a result of updating to Maven 3.8.6, jsoup
was removed from quarkus-bootstrap-bom
(quarkus-bom
respectively).
If you are using jsoup
, you will have to add an explicit version to the respective dependency declaration.