Releases: manoss96/onlymaps
Releases · manoss96/onlymaps
v0.2.0
Added
- Oracle databases are now supported via driver
oracledb. [#5] - DuckDB databases are now supported via driver
duckdb. [#14] - Added support for
decimal.Decimaltype. [#13] - (INTERNAL)
BaseDriversubclasses can now optionally implement aninit_connectionmethod which is called right after aPyDbAPIv2Connectionis created so as to perform any driver-specific initialization steps on said connection. [#5], [#14] - (INTERNAL)
BaseDriversubclasses can now optionally implement aninit_transactionmethod which is called right before a
transaction is to be started so as to perform any driver-specific initialization steps regarding the transaction. [#14]
Changed
- (INTERNAL) Renamed certain functions to better convey their meaning. [#5]
- (INTERNAL) Simplified method
onlymaps._connection.Connection._safe_cursorby moving the cursor-obtaining logic into a
separate method__cursor. [#10] - (INTERNAL) Added private method
onlymaps._connection.Connection.__closeso as to remove duplicated logic. [#10] - (INTERNAL) Minor code improvements and fixes in
onlymaps._utils.pyandtests.utils.py. [#11]
Fixed
- Bug that resulted in query parameters not being properly handled when wrapped within
Bulk. [#8]