Skip to content

0.11.0

Compare
Choose a tag to compare
@darkxanter darkxanter released this 18 Feb 13:11
· 15 commits to master since this release
1646695

Breaking changes

Such extension functions will no longer be created due to a conflict between fromDto and other tables with the same type signature:

public fun UserTable.insertDto(
    username: String,
    password: String,
    birthDate: LocalDate? = null,
)

public fun UserTable.updateDto(
    id: Long,
    username: String,
    password: String,
    birthDate: LocalDate? = null,
)

public fun UpdateBuilder<*>.fromDto(
    username: String,
    password: String,
    birthDate: LocalDate? = null,
): Unit {
    this[UserTable.username] = username
    this[UserTable.password] = password
    this[UserTable.birthDate] = birthDate
}

Full Changelog: 0.10.0...0.11.0