Releases: nackjicholson/aiosql
Releases · nackjicholson/aiosql
v12.2
- Minor release to trigger the doc deployment
v12.1
- drop support for Python 3.8.
- enable DuckDB with Python 3.13.
- fix duckdb adapter for DuckDB 1.1.
v12.0
- add official support for MS SQL Server with
pymssql
.
- pass misc parameters to cursor in generic adapter.
- further improve typing to please pyright.
- minor doc fixes…
- improve one error message.
- reduce verbosity when overriding an adapter.
- refactor tests, simplifying the structure and adding over 50 tests. in particular, schema creation now relies on aiosql features instead of using driver capabilities directly.
v11.1
- improve documentation.
- upgrade sphinx and corresponding read-the-doc theme.
v11.0
- update and improve documentation.
- do not allow to override existing queries, as it can lead to hard to understand bugs.
- use
pytest.fail
instead of assert False
in tests.
v10.4
- add history of versions to documentation.
- improved comments and doc strings.
v10.3
Add Pypy 3.10 and Python 3.13 to GitHub CI.
v10.2
- keep special hint comments
/*+ ... */
V10.1
Update GitHub CI scripts and checks.
10.0
- add support for attributes in queries with
:param.attribute
- parameter
attribute
controls how the dot ("."
) is substitude, default is "__"
.
use None to disable the feature.