0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-21 18:09:02 +01:00

Increase dependencies version range to cover security vulneribility

This commit is contained in:
Rizwan Mansuri 2022-01-19 14:55:00 +00:00 committed by Matt Westcott
parent 149b5d2e8e
commit 8529a4017a
6 changed files with 26 additions and 2 deletions

View File

@ -1,6 +1,12 @@
Changelog
=========
2.11.9 (24.01.2022)
~~~~~~~~~~~~~~~~~~~
* Fix: Update Pillow dependency to allow 9.x (Rizwan Mansuri)
2.11.8 (17.06.2021)
~~~~~~~~~~~~~~~~~~~

View File

@ -489,6 +489,7 @@ Contributors
* Kristin Riebe
* Helder Correia
* Kevin Breen
* Rizwan Mansuri
Translators
===========

16
docs/releases/2.11.9.rst Normal file
View File

@ -0,0 +1,16 @@
============================
Wagtail 2.11.9 release notes
============================
.. contents::
:local:
:depth: 1
What's new
==========
Bug fixes
~~~~~~~~~
* Update Pillow dependency to allow 9.x (Rizwan Mansuri)

View File

@ -5,6 +5,7 @@ Release notes
:maxdepth: 1
upgrading
2.11.9
2.11.8
2.11.7
2.11.6

View File

@ -27,7 +27,7 @@ install_requires = [
"djangorestframework>=3.11.1,<4.0",
"django-filter>=2.2,<3.0",
"draftjs_exporter>=2.1.5,<3.0",
"Pillow>=4.0.0,<9.0.0",
"Pillow>=4.0.0,<10.0.0",
"beautifulsoup4>=4.8,<4.9",
"html5lib>=0.999,<2",
# RemovedInWagtail212Warning: unidecode is only used by _migrate_legacy_clean_name in wagtail.contrib.forms

View File

@ -7,7 +7,7 @@ from wagtail.utils.version import get_semver_version, get_version
# major.minor.patch.release.number
# release must be one of alpha, beta, rc, or final
VERSION = (2, 11, 8, 'final', 1)
VERSION = (2, 11, 9, 'final', 1)
__version__ = get_version(VERSION)