File: changelog.rst

package info (click to toggle)
python-django-formtools 2.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,052 kB
  • sloc: python: 2,141; makefile: 196
file content (98 lines) | stat: -rw-r--r-- 2,663 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Changelog
=========

This page details the changes in the various ``django-formtools`` releases.

2.4.1 (2023-05-13)
------------------

- Fixed a regression causing a recursion error when getting ``get_form_list()``
  from a form condition (#220).

- Removed Python 3.6 support and added Python 3.11 to test matrix.

- Dropped testing for Django < 3.2 and confirmed support for Django 4.2.

2.4 (2022-09-28)
----------------

- Updated translations from Transifex.

- Any kwarg passed to ``render_goto_step()`` is passed over to ``render``.

- ``WizardView`` is using ``get_form_list()`` instead of directly accessing
  ``form_list`` (#168).

- Added Python 3.10 to test matrix.

- Dropped testing for Django 3.1.

- Confirmed support for Django 4.0 and 4.1.

2.3 (2021-04-18)
----------------

- Dropped testing for Django 1.11, 2.0 and 2.1.

- Added support for Django 3.1 and Python 3.9.

- Added support for Django 3.2.

- Dropped support for Django 3.0.

- Dropped support for Python 3.5.

2.2 (2019-12-05)
----------------

- Dropped testing for Django 1.8, 1.9, 1.10.

- Dropped support for Python 2.

- Added support for Django 2.1, 2.2, 3.0, and Python 3.7.

- Updated translations from Transifex.

2.1 (2017-10-04)
----------------

- Added testing for Django 1.11 (no code changes were required).

- Added support for Django 2.0.

- Dropped testing for Python 3.3 (now end-of-life) on Django 1.8.

2.0 (2017-01-07)
----------------

- Added the ``request`` parameter to :meth:`FormPreview.parse_params()
  <formtools.preview.FormPreview.parse_params>`.

- Added support for Django 1.10.

- Dropped support for Django 1.7 and Python 3.2 on Django 1.8.

1.0 (2015-03-25)
----------------

- Added the ``request`` parameter to :meth:`WizardView.get_prefix()
  <formtools.wizard.views.WizardView.get_prefix>`.

  This was originally reported and fixed in the main Django repository:

    https://code.djangoproject.com/ticket/19981

- A :doc:`form wizard </wizard>` using the
  :class:`~formtools.wizard.views.CookieWizardView` will now ignore an invalid
  cookie, and the wizard will restart from the first step. An invalid cookie
  can occur in cases of intentional manipulation, but also after a secret key
  change. Previously, this would raise ``WizardViewCookieModified``, a
  ``SuspiciousOperation``, causing an exception for any user with an invalid
  cookie upon every request to the wizard, until the cookie is removed.

  This was originally reported and fixed in the main Django repository:

    https://code.djangoproject.com/ticket/22638

- Added missing form element to default wizard form template
  ``formtools/wizard/wizard_form.html``.