Yuriy
Yuriy
It improved some security issues, but not all of them. To fix all of them we will need to much more work: * update commons-scxml (last update from 2009) *...
Can someone verify updates and merge it, please? Thanks.
I think we can start from 'TPC-DS'. It's more close to massive data generation tools.
There are a lot of work need to be done here. I don't think about January release - i'm focusing on other issues now...
My mvn config: ` 4.0.0 XXX XXX 1.1-SNAPSHOT jar 17 UTF-8 17 17 11.5.0 org.junit.jupiter junit-jupiter 5.10.1 test com.h2database h2 2.2.224 org.flywaydb flyway-core ${flywaydb.version} org.flywaydb flyway-database-postgresql ${flywaydb.version} org.postgresql postgresql 42.7.5...
java code: ` public static void main(String[] args) throws SQLException { ... System.out.println("Test the connection:"); try (Connection conn = DriverManager.getConnection(flywayUrl, flywayUser, flywayPassword)) { System.out.println("Database connection successful!"); } Flyway flyway =...
It worked fine with Flyway 9.x and doesn't work for 10.x+... P.S. As you see from my pom.xml, i added: ``` org.flywaydb flyway-database-postgresql ${flywaydb.version} ```