Releases: Erudika/para-dao-sql
v1.30.2
v1.30.1
3dd9187 [maven-release-plugin] prepare for next development iteration
07a0d80 [maven-release-plugin] prepare release 1.30.1
bc1b7ce Release v1.30.1.
203254c updated Para to v1.30.0, fixed H2 TCP configuration issue for server mode
8a85c45 added option to throw on write errors
bb6316d added option to throw on write errors
2d77b30 fixed data path and tests
c8f2b05 added option to enable server mode for H2
752801b readme
9bdb73f [maven-release-plugin] prepare for next development iteration
📦 Download JAR
v1.30.0
⚠️ BREAKING CHANGE:
The schema has changed in v1.30.0 - columns timestamp
and updated
were removed,
column json_updates
was added. H2DAO
attempts to apply these changes automatically or error, but SqlDAO
does not.
Execute the following statements one after another before switching to the new version:
ALTER TABLE {app_identifier} DROP COLUMN timestamp, updated;
ALTER TABLE {app_identifier} ADD json_updates NVARCHAR;
This is not required for tables created after v1.30.0.
5563804 updated H2 to 1.4.197, HikariCP to 3.2.0, added Dockerfile
412b850 fixed updateRows()
method to not do an extra read operation, modified the schema
3626e7f refactored the pagination SQL for readAll()
6db4a56 fixed SQL update and added ALTER
command to update schema
46aa5a6 fixed SQL syntax for MS SQL server and other fixes to schema
88f4666 updated Para to 1.29.2
5f877b5 fixed #44
4612b4b fixed erronous state where both H2DAO and SqlDAO are called on app create/delete events
977e7dd updated HikariCP to 3.1.0, Para core to 1.29.1
a4ffc89 fixed #41