Skip to content

Latest commit

 

History

History
185 lines (130 loc) · 6.61 KB

changelog.rst

File metadata and controls

185 lines (130 loc) · 6.61 KB

Changelog

This is a list of changes made in released versions of django-contact-form over time.

Version numbering

django-contact-form uses "DjangoVer", a version number system based on the corresponding supported Django versions. The format of a django-contact-form version number is A.B.C, where A.B is the version number of the latest Django feature release supported by that version of django-contact-form, and C is an incrementing value for releases of django-contact-form paired to that Django feature release.

The policy of django-contact-form is to support the Django feature release indicated in the version number, along with any other lower-numbered Django feature releases receiving support from the Django project at the time of release.

For example, consider a hypothetical django-contact-form version 5.0.2. This indicates that the most recent supported Django feature release is 5.0, and that it is the third release of django-contact-form to support Django 5.0 (after 5.0.0 and 5.0.1). Since the Django project at the time was supporting Django 5.0 and 4.2, that version of django-contact-form would also support Django 5.0 and 4.2.

API stability and deprecations

The API stability/deprecation policy for django-contact-form is as follows:

  • The supported stable public API is the set of symbols which are documented in this documentation. For classes, the supported stable public API is the set of methods and attributes of those classes whose names do not begin with one or more underscore (_) characters and which are documented in this documentation.
  • When a public API is to be removed, or undergo a backwards-incompatible change, it will emit a deprecation warning which serves as notice of the intended removal or change. This warning will be emitted for at least two releases, after which the removal or change may occur without further warning. This is different from Django's own deprecation policy, which avoids completing a removal/change in "LTS"-designated releases. Since django-contact-form does not have "LTS" releases, it does not need that exception.
  • Security fixes, and fixes for high-severity bugs (such as those which might cause unrecoverable crash or data loss), are not required to emit deprecation warnings, and may -- if needed -- impose backwards-incompatible change in any release. If this occurs, this changelog document will contain a note explaining why the usual deprecation process could not be followed for that case.
  • This policy is in effect as of the adoption of "DjangoVer" versioning, with version 5.0.0 of django-contact-form.

Releases under DjangoVer

Version 5.1.2

Released March 2025

  • Fixed a bug with the Akismet integration where the first call to create an Akismet client would succeed in creating and returning it, but subsequent calls would not return the cached client instance. Now subsequent calls do correctly return the cached instance.

Version 5.1.1

Released November 2024

  • Supported Python versions are now 3.9, 3.10, 3.11, 3.12, and 3.13.

Version 5.1.0

Released August 2024

  • Supported Django versions are now 4.2, 5.0, and 5.1.

Version 5.0.1

Released May 2024

  • Correct an issue in the changelog for 5.0.0.
  • Correct an issue with the display of the package's documentation/source URLs on the Python Package Index.

Version 5.0.0

Released May 2024

  • Adopted "DjangoVer" versioning.
  • The :class:`~django_contact_form.forms.AkismetContactForm` and its Akismet integration have been rewritten to make use of more recent versions of the Python Akismet client. Configuring the Akismet client via Django settings is now deprecated, and support for configuring via Django settings will be removed in a future version of django-contact-form. The AkismetContactForm class now also provides two overridable public methods to allow customization of the Akismet API client instance and the arguments passed to the Akismet spam check.

Releases not under DjangoVer

Version 2.1

Released July 2023

  • The supported Django versions are now 3.2, 4.1, and 4.2.

Version 2.0.1

Released May 2022

  • Corrected several issues in the documentation of the 2.0 release.

Version 2.0

Released May 2022

Major version bump, with several changes:

Pre-2.0 versions

django-contact-form 1.0 was released in August 2013. Between that release and 2.0 in 2022, no new features were added to django-contact-form, and releases were concerned solely with ensuring and documenting support for new Django releases.