V3.11.4

  • 427 sfm-jdbc crud allow autogenerated to provide value generation, support autogenerated value on sequence with no default value
     Crud<DbObject, Long> objectCrud =
                      JdbcMapperFactory
                              .newInstance()
                              .addColumnProperty("id", KeyProperty.DEFAULT, AutoGeneratedProperty.of("nextval('test_seq_seq')"))
                              .<DbObject, Long>crud(DbObject.class, Long.class)
                              .table(connection, "test_db_object_seq");
    
  • 428 sfm-jdbc crud postgres upsert version check fail on 9.6