* ``sa_session`` as a synonym for ``get_session``; * ``sa_session_factory`` as a synonym for ``get_session_factory``.
**Changed**
* Rename ``sa_session`` to ``get_session``; * Rename ``sa_session_factory`` to ``get_session_factory``.
0.18.1
-------------- **Added**
* ``SAView`` as a synonym for ``SAModelView``.
**Changed**
* Rename ``SAView`` to ``SAModelView``.
0.18
------------ **Changed**
* First argument of function ``aiohttp_sqlalchemy.bind()`` renamed from ``bind_to`` to ``target``; * Type hint alias ``TBinding`` renamed to ``TBind``; * Type hint alias ``TBindings`` renamed to ``TBinds``; * Type hint alias ``TBindTo`` renamed to ``TTarget``.
0.17
------------ **Added**
* ``views.SAAbstractView`` as a synonym for ``views.SAMixin``; * ``views.SAOneModelMixin`` as a synonym for ``views.SAModelMixin``;
**Changed**
* type checks in ``aiohttp_sqlalchemy.bind()``including replacing from ``ValueError`` to ``TypeError``; * ``views.SAAbstractView`` renamed ``views.SAMixin``; * ``views.SAOneModelMixin`` renamed ``views.SAModelMixin``.
**Removed**
* Removed type check of result of call session factory.
0.16
------------ **Added**
* Added utility ``sa_session_factory(source, key = SA_DEFAULT_KEY)``, when ``source`` can be instance of ``aiohttp.web.Request`` or ``aiohttp.web.Application``.