v0.3.0
Changes in this Release
release-2024-10-17 (#145)
The new update brings several changes. Mainly in the core, all SQL and parameters are now rust-prepared using pysqlx-core.
The PySQLX Engine maintains almost all compatibility with version 0.2.*. This release brings an extra layer of security for your SQL parameters.
Note: You may need some revisions or small changes to your code.
- (
Native SQL Params
): Add native support to send the parameters separately to the database. Now, the PySQLX Engine supports sending the SQL and Parameters to the database. - (
New Pool
): Add new Pool async and sync. This release includes a new pool class for the PySQLX Engine to support concurrency connections. - (
Dev Mode
): Now the SQL built could be showing using the env varPYSQLX_DEV_MODE
; this SQL is not sent to the database; it is just a help to dev identify possible bugs previously. - (
Remove
): Remove support to Python3.7 - (
Add
): - Add support to Python3.13