-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Migration Guide 1.6
The maximum size allowed for the request body used to be unlimited by default, it's now limited to a safer default value of 10 MB.
You can go back to the previous unlimited behavior by explicitly adding quarkus.http.limits.max-body-size=
to your application.properties
.
The charset for DDL generation and SQL import files is now UTF-8 by default instead of being the system charset.
You can override it by adding quarkus.hibernate-orm.database.charset=<your charset>
to your application.properties
.
The OptaPlanner Quarkus extensions have been moved to the OptaPlanner project and are now part of the Quarkus Platform.
The new GA are:
org.optaplanner:optaplanner-quarkus
org.optaplanner:optaplanner-quarkus-jackson
org.optaplanner:optaplanner-quarkus-jsonb
The versions are included in the Platform BOM.
The trustStore handling for native images was broken in previous versions since the migration to GraalVM 19.3.
It has been fixed. Be careful that the trustStore will be included in the native image at compilation time.