All Versions
30
Latest Version
Avg Release Cycle
215 days
Latest Release
-

Changelog History
Page 2

  • v2.1 Changes

    December 15, 2015

    ๐Ÿš€ Released 2015-12-15

    • 0๏ธโƒฃ Added render_kw to allow default rendering time options.
    • โšก๏ธ Updated / added a number of localizations.
    • โšก๏ธ Updated docs.
    • Allow widgets to set flags.
  • v2.0.2 Changes

    January 18, 2015

    ๐Ÿš€ Released 2015-01-18

    • โšก๏ธ Added more localizations and updated some.
    • Validators for email and URL can validate IDNA-encoded domain names and new TLDs.
    • ๐Ÿ—„ Better DeprecationWarnings.
    • ๐Ÿ‘ Support localization files in /usr/share/locale for distro packaging.
  • v2.0.1 Changes

    July 01, 2014

    ๐Ÿš€ Released 2014-07-01

    • โšก๏ธ Update wheel install to conditionally install ordereddict for Python 2.6.
    • Doc improvements.
  • v2.0 Changes

    May 20, 2014

    ๐Ÿš€ Released 2014-05-20

    • Add new class Meta paradigm for much more powerful customization of WTForms.
    • ๐Ÿšš Move i18n into core. Deprecate wtforms.ext.i18n.
    • ๐Ÿšš Move CSRF into core. Deprecate wtforms.ext.csrf.
    • Fix issue rendering SelectFields with value=True.
    • Make DecimalField able to use babel locale-based number formatting.
    • ๐Ÿ‘ Drop Python 3.2 support (Python3 support for 3.3+ only).
    • Passing attr=False to WTForms widgets causes the value to be ignored.
    • ๐Ÿšš Unique validator in wtforms.ext.sqlalchemy has been removed.
  • v1.0.5 Changes

    September 11, 2013

    ๐Ÿš€ Released 2013-09-10

    • ๐ŸŒ Fix a bug in validators which causes translations to happen once then clobber any future translations.
    • ext.sqlalchemy and ext.appengine minor cleanups / deprecation.
    • Allow blank string and the string false to be considered false values for BooleanField (configurable). This is technically a breaking change, but it is not likely to affect the majority of users adversely.
    • ext.i18n form allows passing LANGUAGES to the constructor.
  • v1.0.4 Changes

    April 29, 2013

    ๐Ÿš€ Released 2013-04-28

    • Add widgets and field implementations for HTML5 specialty input types.
    • ๐Ÿ‘ ext.appengine add NDB support.
    • ๐ŸŒ Add translations for Korean, Traditional Chinese.
  • v1.0.3 Changes

    January 24, 2013

    ๐Ÿš€ Released 2013-01-24

    • โœ… Tests complete in python 3.2/3.3.
    • Localization for ru, fr.
    • ๐Ÿ“š Minor fixes in documentation for clarity.
    • FieldList now can take validators on the entire FieldList.
    • Fix issue with ext.sqlalchemy QuerySelectField.
    • 0๏ธโƒฃ Fix issue in ext.sqlalchemy ColumnDefault conversion.
    • ๐Ÿ‘ ext.sqlalchemy supports Enum type.
    • Field class now allows traversal in Django 1.4 templates.
  • v1.0.2 Changes

    August 24, 2012

    ๐Ÿš€ Released August 24, 2012

    • ๐Ÿ‘ We now support Python 2.x and 3.x on the same codebase, thanks to a lot of hard work by Vinay Sajip.

    • โž• Add in ability to convert relationships to ext.sqlalchemy model_form

    • Built-in localizations for more languages

    • Validator cleanup:

      • Distinguish Required validator into InputRequired and DataRequired
      • Better IP address validation, including IPv6 support.
      • AnyOf / NoneOf now work properly formatting other datatypes than strings.
      • Optional validator can optionally pass through whitespace.
  • v1.0.1 Changes

    ๐Ÿš€ Released February 29, 2012

    • ๐Ÿ›  Fixed issues related to building for python 3 and python pre-releases.

    • โž• Add object_data to fields to get at the originally passed data.

  • v1.0 Changes

    ๐Ÿš€ Released 2012-02-28

    • 0๏ธโƒฃ Output HTML5 compact syntax by default.
    • โœ… Substantial code reorg, cleanup, and test improvements.
    • Added ext.csrf for a way to implement CSRF protection.
    • ๐Ÿ‘ ext.sqlalchemy supports PGInet, MACADDR, and UUID field conversion.
    • 0๏ธโƒฃ ext.sqlalchemy supports callable defaults.
    • ๐Ÿ‘ ext.appengine model_form now supports generating forms with the same ordering as model.
    • ext.appengine ReferencePropertyField now gets get_label like the other ORM fields.
    • ๐Ÿ‘ Add localization support for WTForms built-in messages.
    • ๐Ÿ‘ Python 3 support (via 2to3).
    • An empty label string can be specified on fields if desired.
    • Option widget can now take kwargs customization.
    • 0๏ธโƒฃ Field subclasses can provide default validators as a class property.
    • DateTimeField can take time in microseconds.
    • Numeric fields all set .data to None on coercion error for consistency.