Skip to content

Releases: wtforms/wtforms-sqlalchemy

0.4.1

05 Jan 08:56
0.4.1
f025f54
Compare
Choose a tag to compare

Released on January 5th, 2024

  • Allow to override the default blank value. (#38)

0.4.0

04 Jan 17:31
0.4.0
3c11665
Compare
Choose a tag to compare

Released on January 4th, 2024

  • Stop support for python 3.6 and 3.7. Start support for python3 3.11 and 3.12. (#41)
  • render_kw support (#42)
  • optgroup support (#44)
  • SQLAlchemy 2.0 support (#45)

0.3.0

06 Nov 16:23
Compare
Choose a tag to compare

Released on November 6th, 2021

  • Wtforms 3 support. #35
  • SQLAlchemy 1.4 tests fixes. #34
  • Switched from Travis CI to Github Actions #33
  • Abandon deperecated validator. #32

0.2.0

26 Jul 16:29
Compare
Choose a tag to compare

Released on June 21st, 2020

  • Auto-generated DecimalField does not limit places for Float
    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 in field_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, like QuerySelectField except
    it renders a list of radio fields. Add QueryCheckboxField, 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 a ValueError. (#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
    with sqlalchemy (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)