Releases: pallets-eco/wtforms-sqlalchemy
Releases · pallets-eco/wtforms-sqlalchemy
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
Released on June 21st, 2020
- Auto-generated
DecimalField
does not limit places forFloat
columns. (#2) - Add an example of using this library with Flask-SQAlchemy. (#3)
- Generating a form from a model copies any lists of validators
passed infield_args
to prevent modifying a shared value across
forms. (#5) - Don't add a
Length
validator when the column's length is not an
int. (#6) - Add
QueryRadioField
, likeQuerySelectField
except
it renders a list of radio fields. AddQueryCheckboxField
, like
QuerySelectMultipleField
except it renders a list of checkbox
fields. (#8) - Fix a compatibility issue with SQLAlchemy 2.1 that caused
QuerySelectField
to fail with aValueError
. (#9, #10,
#11) - QuerySelectField.query allowing no results instead of falling back to
query_factory
. (#15) - Explicitly check if db_session is None in converter. (#17)
- Check for
sqlalchemy.
to avoid matching packages with names starting
withsqlalchemy
(6237a0f_) - Use SQLAlchemy's Column.doc for WTForm's Field.description (#21)
- Stopped support for python < 3.5 and added a style pre-commit hook. (#23)
- Documentation cleanup. (#24)