Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Releases: jpsca/sqla-wrapper

v6.0.0

17 Feb 01:07
d09abd2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v5.6.1...v6.0.0

v5.6.1

26 May 21:29
049d150
Compare
Choose a tag to compare

What's Changed

  • "verbose" argument to alembic.history cli command by @krnr in #40

New Contributors

  • @krnr made their first contribution in #40

Full Changelog: v5.4...v5.6.1

v5.4

31 Jan 21:39
Compare
Choose a tag to compare

Do no quote datetimes in the __repr__

v5.3

31 Jan 21:33
Compare
Choose a tag to compare

Add a pretty default repr

v5.2

02 Jan 21:59
Compare
Choose a tag to compare

Add proper_cli support

v5.1

19 Oct 23:16
Compare
Choose a tag to compare
  • Make public some previously private Alembic wrapper methods
  • Fix Paginator.showing when padding is used

v5.0.0

19 Oct 18:21
Compare
Choose a tag to compare

A new beginning...

This version is a complete rewrite of the library and the documentation. From now on, only the new SQLAlchemy API (v1.4+) will be supported.

SQLA-wrapper now includes:

  1. A wrapper for SQLAlchemy that does all the setup and gives you:
  • A session class and a scoped session, both extended with some useful active-record-like methods and pagination.
  • A declarative base class.
  • A helper for performant testing with a real database.
  1. A new Alembic wrapper that loads the config from your application instead of from separated alembic.ini and env.py files.
  • CLI integrations with click and pyCEO.