Peewee-async

Latest version: v1.0.0

Safety actively analyzes 682404 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 2

1.0.0

What's Changed
Breaking changes:
* Removed deprecated api: Manager, execute, count, scalar, prefetch, atomic, transaction, savepoint
* Removed deprecated database classes: PostgresqlDatabase, MySQLDatabase, PostgresqlExtDatabase
* Removed deprecated database methods: atomic_async, savepoint_async, connect_async, close_async, transaction_async
* Removed peewee_asyncext module
* aio_execute returns list of models now not AsyncQueryWrapper. AsyncQueryWrapper is removed

Features:
* Added typing
* Added [pool_params](https://peewee-async-lib.readthedocs.io/en/v1.0.0/peewee_async/api.html#peewee_async.databases.AioDatabase) parameter
* Docs updated

Fixes:
* Fixed deferred db init by F1int0m in https://github.com/05bit/peewee-async/pull/278
* Fixed logging by kalombos in https://github.com/05bit/peewee-async/pull/292
* fix: update cryptography dependency by kalombos in https://github.com/05bit/peewee-async/pull/297


**Full Changelog**: https://github.com/05bit/peewee-async/compare/v0.12.0...v1.0.0

0.12.2

What's Changed
* fix: backported 06710cc33c8b8d21fc522865ba0b861d1ffd2a5c to v0.12 by strizhechenko in https://github.com/05bit/peewee-async/pull/301

New Contributors
* strizhechenko made their first contribution in https://github.com/05bit/peewee-async/pull/301

**Full Changelog**: https://github.com/05bit/peewee-async/compare/v0.12.1...v0.12.2

0.12.1

What's Changed
* feat: update ci by kalombos in https://github.com/05bit/peewee-async/pull/279
* Return deferred db init (278) by F1int0m in https://github.com/05bit/peewee-async/pull/280


**Full Changelog**: https://github.com/05bit/peewee-async/compare/v0.12.0...v0.12.1

0.12.0

What's Changed
* feat: added aio_save method by kalombos in https://github.com/05bit/peewee-async/pull/252
* feat: add aio_get_or_create by kalombos in https://github.com/05bit/peewee-async/pull/255
* feat: add aio_exists by kalombos in https://github.com/05bit/peewee-async/pull/256
* feat: add aio_prefetch by kalombos in https://github.com/05bit/peewee-async/pull/257
* chore: remove unused imports by kalombos in https://github.com/05bit/peewee-async/pull/258
* chore: deprecate unusable databases by kalombos in https://github.com/05bit/peewee-async/pull/259
* feat: added compoundselect support by kalombos in https://github.com/05bit/peewee-async/pull/261
* chore: module is splited by files by kalombos in https://github.com/05bit/peewee-async/pull/262
* chore: rewriting old tests by kalombos in https://github.com/05bit/peewee-async/pull/263
* feat: started typing by kalombos in https://github.com/05bit/peewee-async/pull/264
* feat: typing database file by kalombos in https://github.com/05bit/peewee-async/pull/265
* feat: typing result wrappers by kalombos in https://github.com/05bit/peewee-async/pull/266
* feat: removed last_insert_id_async typing by kalombos in https://github.com/05bit/peewee-async/pull/267
* chore: rewrite old tests by kalombos in https://github.com/05bit/peewee-async/pull/268
* feat: docs updated by kalombos in https://github.com/05bit/peewee-async/pull/269
* feat: update readme and examples by kalombos in https://github.com/05bit/peewee-async/pull/271


**Full Changelog**: https://github.com/05bit/peewee-async/compare/v0.11.0-beta...v0.12.0

0.11.0beta

What's Changed
* chore: refactoring fetching result by kalombos in https://github.com/05bit/peewee-async/pull/214
* fix: add ConnectionContext class by kalombos in https://github.com/05bit/peewee-async/pull/216
* Remove unused use_speedup property by F1int0m in https://github.com/05bit/peewee-async/pull/217
* fix: deprecated connection timeout in pg ext by kalombos in https://github.com/05bit/peewee-async/pull/218
* Added base usage example for aiohttp server by rudyryk in https://github.com/05bit/peewee-async/pull/231
* Extracted compatibility module to work without AioModel subclassing by rudyryk in https://github.com/05bit/peewee-async/pull/232
* transaction refactoring by kalombos in https://github.com/05bit/peewee-async/pull/234
* chore: aio prefix for database, rename manager fixture by kalombos in https://github.com/05bit/peewee-async/pull/238
* chore: add warnings to the manager by kalombos in https://github.com/05bit/peewee-async/pull/239
* chore: move deprecated methods to the end of the class by kalombos in https://github.com/05bit/peewee-async/pull/240
* updated load-testing app by kalombos in https://github.com/05bit/peewee-async/pull/242
* fix: rewrite transaction context manager by kalombos in https://github.com/05bit/peewee-async/pull/243
* chore: rewrite tests for not using manager by kalombos in https://github.com/05bit/peewee-async/pull/244
* feat: should call connect manually if close database by kalombos in https://github.com/05bit/peewee-async/pull/246
* feat: add AioModelRaw by kalombos in https://github.com/05bit/peewee-async/pull/247
* add aio_scalar test by kalombos in https://github.com/05bit/peewee-async/pull/248
* feat: aio_count method added by kalombos in https://github.com/05bit/peewee-async/pull/249
* feat: added aio_delete_instance method by kalombos in https://github.com/05bit/peewee-async/pull/250
* fix: terminate method idempotent by kalombos in https://github.com/05bit/peewee-async/pull/251

New Contributors
* F1int0m made their first contribution in https://github.com/05bit/peewee-async/pull/217

**Full Changelog**: https://github.com/05bit/peewee-async/compare/v0.10.1-beta...v0.11.0-beta

0.10.1beta

What's Changed
* add acid test which should be made passed by kalombos in https://github.com/05bit/peewee-async/pull/210
* added load-testing app by kalombos in https://github.com/05bit/peewee-async/pull/211
* [connection leaks fix](https://github.com/05bit/peewee-async/commit/9e3dda81ddb3918ec987a071aacbdca3b2580020)
* chore: Refactor Async(Postgresql/MySQL)Connection by akerlay in https://github.com/05bit/peewee-async/pull/213

New Contributors
* akerlay made their first contribution in https://github.com/05bit/peewee-async/pull/213

**Full Changelog**: https://github.com/05bit/peewee-async/compare/v0.10.0...v0.10.1-beta

Page 1 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.