Released 2023-09-11
- Deprecate the
__version__attribute. Use feature detection, orimportlib.metadata.version("flask-sqlalchemy"), instead. :issue:`5230`
Released 2023-09-11
- Drop support for Python 3.7. :pr:`1251`
- Add support for the SQLAlchemy 2.x API via
model_classparameter. :issue:`1140` - Bump minimum version of SQLAlchemy to 2.0.16.
- Remove previously deprecated code.
- Pass extra keyword arguments from
get_or_404tosession.get. :issue:`1149` - Fix bug with finding right bind key for clause statements. :issue:`1211`
Released 2023-06-21
Pagination.next()enforcesmax_per_page. :issue:`1201`- Improve type hint for
get_or_404return value to be non-optional. :pr:`1226`
Released 2023-06-19
- Fix type hint for
get_or_404return value. :pr:`1208` - Fix type hints for pyright (used by VS Code Pylance extension). :issue:`1205`
Released 2023-01-31
- Show helpful errors when mistakenly using multiple
SQLAlchemyinstances for the same app, or without callinginit_app. :pr:`1151` - Fix issue with getting the engine associated with a model that uses polymorphic table inheritance. :issue:`1155`
Released 2022-10-14
- Update compatibility with SQLAlchemy 2. :issue:`1122`
Released 2022-10-11
- Export typing information instead of using external typeshed definitions. :issue:`1112`
- If default engine options are set, but
SQLALCHEMY_DATABASE_URIis not set, an invalid default bind will not be configured. :issue:`1117`
Released 2022-10-04
- Drop support for Python 2, 3.4, 3.5, and 3.6.
- Bump minimum version of Flask to 2.2.
- Bump minimum version of SQLAlchemy to 1.4.18.
- Remove previously deprecated code.
- The session is scoped to the current app context instead of the thread. This requires that an app context is active. This ensures that the session is cleaned up after every request.
- An active Flask application context is always required to access
sessionandengine, regardless of if an application was passed to the constructor. :issue:`508, 944` - Different bind keys use different SQLAlchemy
MetaDataregistries, allowing tables in different databases to have the same name. Bind keys are stored and looked up on the resulting metadata rather than the model or table. SQLALCHEMY_DATABASE_URIdoes not default tosqlite:///:memory:. An error is raised if neither it norSQLALCHEMY_BINDSdefine any engines. :pr:`731`- Configuring SQLite with a relative path is relative to
app.instance_pathinstead ofapp.root_path. The instance folder is created if necessary. :issue:`462` - Added
get_or_404,first_or_404,one_or_404, andpaginatemethods to the extension object. These use SQLAlchemy's preferredsession.execute(select())pattern instead of the legacy query interface. :issue:`1088` - Setup methods that create the engines and session are renamed with a leading underscore. They are considered internal interfaces which may change at any time.
- All parameters to
SQLAlchemyexceptappare keyword-only. - Renamed the
bindparameter tobind_keyand removed theappparameter from variousSQLAlchemymethods. - The extension object uses
__getattr__to alias names from the SQLAlchemy package, rather than copying them as attributes. - The extension object is stored directly as
app.extensions["sqlalchemy"]. :issue:`698` - The session class can be customized by passing the
class_key in thesession_optionsparameter. :issue:`327` SignallingSessionis renamed toSession.Session.get_bindmore closely matches the base implementation.- Model classes and the
dbinstance are available without imports inflask shell. :issue:`1089` - The
CamelCasetosnake_casetable name converter handles more patterns correctly. If model that was already created in the database changed, either use Alembic to rename the table, or set__tablename__to keep the old name. :issue:`406` Modelreprdistinguishes between transient and pending instances. :issue:`967`- A custom model class can implement
__init_subclass__with class parameters. :issue:`1002` db.Tableis a subclass instead of a function.- The
engine_optionsparameter is applied as defaults before per-engine configuration. SQLALCHEMY_BINDSvalues can either be an engine URL, or a dict of engine options including URL, for each bind.SQLALCHEMY_DATABASE_URIandSQLALCHEMY_ENGINE_OPTIONScorrespond to theNonekey and take precedence. :issue:`783`- Engines are created when calling
init_apprather than the first time they are accessed. :issue:`698` db.enginesexposes the map of bind keys to engines for the current app.get_engine,get_tables_for_bind, andget_bindsare deprecated.- SQLite driver-level URIs that look like
sqlite:///file:name.db?uri=trueare supported. :issue:`998, 1045` - SQLite engines do not use
NullPoolifpool_sizeis 0. - MySQL engines use the "utf8mb4" charset by default. :issue:`875`
- MySQL engines do not set
pool_sizeto 10. - MySQL engines don't set a default for
pool_recycleif not using a queue pool. :issue:`803` Queryis renamed fromBaseQuery.- Added
Query.one_or_404. - The query class is applied to
backrefinrelationship. :issue:`417` - Creating
Paginationobjects manually is no longer a public API. They should be created withdb.paginateorquery.paginate. :issue:`1088` Pagination.iter_pagesandQuery.paginateparameters are keyword-only.Paginationis iterable, iterating over its items. :issue:`70`- Pagination count query is more efficient.
Pagination.iter_pagesis more efficient. :issue:`622`Pagination.iter_pagesright_currentparameter is inclusive.- Pagination
per_pagecannot be 0. :issue:`1091` - Pagination
max_per_pagedefaults to 100. :issue:`1091` - Added
Pagination.firstandlastproperties, which give the number of the first and last item on the page. :issue:`567` SQLALCHEMY_RECORD_QUERIESis disabled by default, and is not enabled automatically withapp.debugorapp.testing. :issue:`1092`get_debug_queriesis renamed toget_recorded_queriesto better match the config and functionality.- Recorded query info is a dataclass instead of a tuple. The
contextattribute is renamed tolocation. Finding the location uses a more inclusive check. SQLALCHEMY_TRACK_MODIFICATIONSis disabled by default. :pr:`727`SQLALCHEMY_COMMIT_ON_TEARDOWNis deprecated. It can cause various design issues that are difficult to debug. Calldb.session.commit()directly instead. :issue:`216`
Released 2021-03-18
- Fix compatibility with Python 2.7.
Released 2021-03-18
- Update to support SQLAlchemy 1.4.
- SQLAlchemy
URLobjects are immutable. Some internal methods have changed to return a new URL instead ofNone. :issue:`885`
Released 2020-07-14
- Change base class of meta mixins to
type. This fixes an issue caused by a regression in CPython 3.8.4. :issue:`852`
Released 2020-05-26
- Deprecate
SQLALCHEMY_COMMIT_ON_TEARDOWNas it can cause various design issues that are difficult to debug. Calldb.session.commit()directly instead. :issue:`216`
Released 2020-05-25
- Fix bad pagination when records are de-duped. :pr:`812`
Released 2019-09-24
- Fix
AttributeErrorwhen using multiple binds with polymorphic models. :pr:`651`
Released 2019-04-24
- Drop support for Python 2.6 and 3.3. :pr:`687`
- Address SQLAlchemy 1.3 deprecations. :pr:`684`
- Make engine configuration more flexible. Added the
engine_optionsparameter andSQLALCHEMY_ENGINE_OPTIONSconfig. Deprecated the individual engine option config keysSQLALCHEMY_NATIVE_UNICODE,SQLALCHEMY_POOL_SIZE,SQLALCHEMY_POOL_TIMEOUT,SQLALCHEMY_POOL_RECYCLE, andSQLALCHEMY_MAX_OVERFLOW. :pr:`684` get_or_404()andfirst_or_404()now accept adescriptionparameter to control the 404 message. :issue:`636`- Use
time.perf_counterfor Python 3 on Windows. :issue:`638` - Add an example of Flask's tutorial project, Flaskr, adapted for Flask-SQLAlchemy. :pr:`720`
Released 2017-10-11
- Don't mask the parent table for single-table inheritance models. :pr:`561`
Released 2017-10-05
- If a model has a table name that matches an existing table in the metadata, use that table. Fixes a regression where reflected tables were not picked up by models. :issue:`551`
- Raise the correct error when a model has a table name but no primary key. :pr:`556`
- Fix
repron models that don't have an identity because they have not been flushed yet. :issue:`555` - Allow specifying a
max_per_pagelimit for pagination, to avoid users specifying high values in the request args. :pr:`542` - For
paginatewitherror_out=False, the minimum value forpageis 1 andper_pageis 0. :issue:`558`
Released 2017-09-28
- Multiple bugs with
__tablename__generation are fixed. Names will be generated for models that define a primary key, but not for single-table inheritance subclasses. Names will not override adeclared_attr.PrimaryKeyConstraintis detected. :pr:`541` - Passing an existing
declarative_base()asmodel_classtoSQLAlchemy.__init__will use this as the base class instead of creating one. This allows customizing the metaclass used to construct the base. :issue:`546` - The undocumented
DeclarativeMetainternals that the extension uses for binds and table name generation have been refactored to work as mixins. Documentation is added about how to create a custom metaclass that does not do table name generation. :issue:`546` - Model and metaclass code has been moved to a new
modelsmodule._BoundDeclarativeMetais renamed toDefaultMeta; the old name will be removed in 3.0. :issue:`546` - Models have a default
reprthat shows the model name and primary key. :pr:`530` - Fixed a bug where using
init_appwould cause connectors to always use thecurrent_apprather than the app they were created for. This caused issues when multiple apps were registered with the extension. :pr:`547`
Released 2017-02-27, codename Dubnium
- Minimum SQLAlchemy version is 0.8 due to use of
sqlalchemy.inspect. - Added support for custom
query_classandmodel_classas args to theSQLAlchemyconstructor. :pr:`328` - Allow listening to SQLAlchemy events on
db.session. :pr:`364` - Allow
__bind_key__on abstract models. :pr:`373` - Allow
SQLALCHEMY_ECHOto be a string. :issue:`409` - Warn when
SQLALCHEMY_DATABASE_URIis not set. :pr:`443` - Don't let pagination generate invalid page numbers. :issue:`460`
- Drop support of Flask < 0.10. This means the db session is always tied to the app context and its teardown event. :issue:`461`
- Tablename generation logic no longer accesses class properties unless they are
declared_attr. :issue:`467`
Released 2015-10-23, codename Caesium
- Table names are automatically generated in more cases, including subclassing mixins and abstract models.
- Allow using a custom MetaData object.
- Add support for binds parameter to session.
Released 2014-08-29, codename Bohrium
- Changed how the builtin signals are subscribed to skip non-Flask-SQLAlchemy sessions. This will also fix the attribute error about model changes not existing.
- Added a way to control how signals for model modifications are tracked.
- Made the
SignallingSessiona public interface and added a hook for customizing session creation. - If the
bindparameter is given to the signalling session it will no longer cause an error that a parameter is given twice. - Added working table reflection support.
- Enabled autoflush by default.
- Consider
SQLALCHEMY_COMMIT_ON_TEARDOWNharmful and remove from docs.
Released 2013-07-20, codename Aurum
- Added Python 3.3 support.
- Dropped Python 2.5 compatibility.
- Various bugfixes.
- Changed versioning format to do major releases for each update now.
- New distribution format (flask_sqlalchemy).
- Added support for Flask 0.9 specifics.
- Added session support for multiple databases.
- Make relative sqlite paths relative to the application root.
- Fixed an issue with Flask-SQLAlchemy not selecting the correct binds.
- Added support for multiple databases.
- Expose
BaseQueryasdb.Query. - Set default
query_classfordb.relation,db.relationship, anddb.dynamic_loadertoBaseQuery. - Improved compatibility with Flask 0.7.
- Fixed a bug introduced in 0.10 with alternative table constructors.
- Added support for signals.
- Table names are now automatically set from the class name unless overridden.
Model.querynow always works for applications directly passed to theSQLAlchemyconstructor. Furthermore the property now raises aRuntimeErrorinstead of beingNone.- Added session options to constructor.
- Fixed a broken
__repr__. db.Tableis now a factory function that creates table objects. This makes it possible to omit the metadata.
- Applied changes to pass the Flask extension approval process.
- Added a few configuration keys for creating connections.
- Automatically activate connection recycling for MySQL connections.
- Added support for the Flask testing mode.
- Initial public release