Skip to content

Release v1.2.0

Compare
Choose a tag to compare
@aiudirog aiudirog released this 11 Mar 04:17
· 81 commits to master since this release

First release of the async version of HappyBase!

The version number is the same because the API is almost identical
(albeit async) except for a few updates:

  • Only Python 3.6+ will be supported (I like f-strings and ordered dictionaries,
    sue me:P)
  • Connection and ConnectionPool objects can be used as context managers
    (async and regular).
  • Explicitly closing non-context managed Connection and ConnectionPool
    objects is now required due the asyncio event loop being mostly unavailable
    during del.
  • Connection.create_table() now returns the Table instance.
  • Support for the framed transport and compact protocol have been dropped until
    thriftpy2.contrib.aio supports them as well.