Releases: huanshankeji/exposed-vertx-sql-client
v0.5.0
What's Changed
Because of the Exposed SELECT DSL design changes, and also because the old DatabaseClient
creation APIs were poorly designed and too cumbersome, causing additional cognitive burdens on the users, this release has been completely overhauled. Some old APIs are removed directly because deprecating and delegating them to new ones fills the code base with unused code. Therefore, this release is not source-compatible or binary-compatible with v0.4.0. Please do not update unless you have time to adapt to the refactored changes. We are sorry for the inconvenience. From this version on, we will try to maintain source and binary compatibility, deprecating APIs instead of removing them in the foreseeable future.
Please check out the updated README to upgrade to v0.5.0.
Functional changes:
-
adapt to the Exposed SELECT DSL design changes (resolve #8)
-
rename the SQL DSL functions taking mapper parameters, adding "withMapper" prefixes (resolve #6)
-
split the library into multiple modules including "core", "postgresql", "sql-dsl", and "sql-dsl-with-mapper"
-
generalize the functions with the types
PgPool
andPgConnection
to work with different RDBMSs, replacing them withPool
andSqlConnection
-
get rid of all usages of
PgPool
which was deprecated in Vert.x 4.5 -
extract some new APIs and move some existing APIs into finer-grained subpackages, including
jdbc
,exposed
,vertx.sqlclient
, andlocal
in the "core" module, andpostgresql
in the "postgresql" module -
overhaul the APIs related to the creation of Exposed
Database
s, Vert.x SQL clients, andDatabaseClient
s-
remove the
create...andSetRole
functions to create Vert.x SQL Clients, with their functionalities merged into thecreate...
functions to create Vert.x SQL Clients -
refactor the Exposed
Database
and Vert.xSqlClient
creation APIs to be more configurable and straightforward -
remove the extra shortcut
DatabaseClient
creation APIs such ascreatePgPoolDatabaseClient
as they were poorly designed and too cumbersome, causing additional cognitive burdens on the usersThere are too many different combinations with different RDMBSs such as PostgreSQL and MySQL, and different Vert.x SQL Clients such as
SqlClient
,Pool
, andSqlConnection
. Therefore we don't provide such shortcut APIs anymore as they are just too cumbersome and cause additional cognitive burdens on the users, and we encourage the library users to create their own (see the updated guide in README.md for instructions). In this way, the ExposedDatabse
s and Vert.x SQL Clients are also more configurable.
-
-
adopt
EvscConfig
as the single-source-of-truth database client config and no longer prefer local connectionsLocalConnectionConfig
should be converted toEvscConfig
orConnectionConfig
to be used. -
mark some APIs as experimental as they are subject to change
-
make
DatabaseClient
implement our newCoroutineAutoCloseable
interface -
add a version of
selectWithMapper
withoutbuildQuery
-
point out in the usage guide that you are encouraged to share/reuse an Exposed
Database
which generates SQLs among multipleDatabaseClient
s in multiple verticles, which improves performance as shown in our benchmark results
Miscellaneous changes:
- add API documentation generated by Dokka hosted at https://huanshankeji.github.io/exposed-vertx-sql-client/
- add CODE_OF_CONDUCT.md and CONTRIBUTING.md
- use the Kotlin binary compatibility validator
- bump Exposed to v0.56.0
v0.4.0
v0.3.0
Full Changelog: v0.2.0...v0.3.0
v0.2.0
v0.1.0-kotlin-1.6.10
v0.1.0-kotlin-1.6.10 release