Liquibase 4.24.0 requires an additional hint due to the use of ChangeLogHistoryServiceFactory that is created via reflection.
This has been reported in the Spring Boot project: spring-projects/spring-boot#38941
Here is a sample that reproduces the issue if you comment @ImportRuntimeHints in the main application:
https://github.com/snicoll-scratches/sb-38941
The missing reflect-config.json entry is as follows:
{
"name": "liquibase.changelog.ChangeLogHistoryServiceFactory",
"methods": [
{
"name": "<init>",
"parameterTypes": [ ]
}
]
}
Liquibase
4.24.0requires an additional hint due to the use ofChangeLogHistoryServiceFactorythat is created via reflection.This has been reported in the Spring Boot project: spring-projects/spring-boot#38941
Here is a sample that reproduces the issue if you comment
@ImportRuntimeHintsin the main application:https://github.com/snicoll-scratches/sb-38941
The missing
reflect-config.jsonentry is as follows:{ "name": "liquibase.changelog.ChangeLogHistoryServiceFactory", "methods": [ { "name": "<init>", "parameterTypes": [ ] } ] }