All Versions
13
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History
Page 1

  • v0.7.0 Changes

    • ๐Ÿ‘Œ Support for multiple databases (thanks @dingyaguang117_!)
    1. Drop :code:session_factory and :code:make_session_factory in favor of the new :code:SQLAlchemy instance
    2. Drop :code:declarative_base in favor of the new :code:SQLAlchemy.Model property
    3. Allow models to be associated to separate databases using :code:__bind_key__
    • โฌ†๏ธ [Please refer to UPGRADING.rst_ for help with upgrading.]
  • v0.6.1 Changes

    • Pass :code:SessionMixin arguments directly to :code:create_engine
    • Format code using :code:black
    • โž• Add test cases for concurrent session usage
  • v0.5.0 Changes

    • Avoid initializing the pool executor at import time
    • โฌ‡๏ธ Drop support for Python 3.3 and 3.4
    • ๐Ÿ‘Œ Improve documentation and example code
  • v0.4.1 Changes

    • โšก๏ธ Update README
  • v0.4.0 Changes

    • โฌ‡๏ธ Drop support for Python 2
    • Extend :code:SessionMixin to suport :code:self.session
    • Use :code:__call__ pattern on :code:declarative_base
    • โž• Add more test cases
    • ๐Ÿ‘Œ Improve documentation and example code
  • v0.3.3 Changes

    • Limit :code:use_native_unicode only to PostgreSQL connections
    • โšก๏ธ Update example code
  • v0.3.2 Changes

    • Set :code:default_max_workers default value to CPU count
  • v0.3.1 Changes

    • Minor improvements to :code:setup.py
  • v0.3.0 Changes

    • ๐Ÿ“ฆ Include README and LICENSE files in the package
  • v0.2.2 Changes

    • Support SQLAlchemy's :code:use_native_unicode argument
    • โœ‚ Remove unused code
    • ๐Ÿ‘Œ Improve documentation