Skip to content

Releases: candango/tornado-wtforms

Tornado WTForms 0.0.1

22 Jan 21:36

Choose a tag to compare

What's new in Tornado WTForms 0.0.1

Jan 22, 2022

We are pleased to announce the release of Tornado WTForms 0.0.1.

This is the re-branded form from WTForms Tornado, fixing some issues and updating the tool to be used with newer versions of WTForms.

You can use this project as a direct replacement for WTForms Tornado but is advised to use the new module name for now on:

# Direct replacement
from wtforms_tornado import Form
# New module
from tornado_wtforms.form import TornadoForm

Here are the highlights:

Bug Fixes

  • Fix broken translation feature for 3.x bug. #8

Build

  • Setup github action as test ci build. #2

Features

  • Make the project direct replacement of wtforms-tornado. #7

Refactory

  • Re-brand project to tornado-wtfroms refactory. #1
  • Remove references to wtforms compat. #3
  • Remove support to any python prior to 3.6 and down. #4
  • Replace any reference from Required to DataRequired validator. #5