0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00

Bump draftjs_exporter version to fix entities export bug

This bumps the `draftjs_exporter` dependency requirement of Wagtail to [v2.1.5](https://github.com/springload/draftjs_exporter/blob/master/CHANGELOG.md#v215), which fixes an export bug when entities (say, links) are adjacent in the content.

See https://github.com/springload/draftjs_exporter/issues/106.
This commit is contained in:
Thibaud Colas 2018-11-20 18:14:36 +02:00 committed by Matt Westcott
parent 30f6a590b4
commit a3dc9ed477
3 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,7 @@ Changelog
* Fix: Allow nav menu to take up all available space instead of scrolling (Meteor0id)
* Fix: Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey)
* Fix: Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen)
* Fix: Updated draftjs_exporter to 2.1.5 to fix bug in handling adjacent entities (Thibaud Colas)
2.3 LTS (23.10.2018)

View File

@ -52,6 +52,7 @@ Bug fixes
* Users without the edit permission no longer see "Edit" links in list of pages waiting for moderation (Justin Focus, Fedor Selitsky)
* Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey)
* Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen)
* Updated draftjs_exporter to 2.1.5 to fix bug in handling adjacent entities (Thibaud Colas)
Upgrade considerations

View File

@ -26,7 +26,7 @@ install_requires = [
"django-taggit>=0.23,<0.24",
"django-treebeard>=4.2.0,<5.0",
"djangorestframework>=3.7.4,<4.0",
"draftjs_exporter>=2.0,<3.0",
"draftjs_exporter>=2.1.5,<3.0",
"Pillow>=4.0.0,<6.0",
"beautifulsoup4>=4.5.1,<4.6.1",
"html5lib>=0.999,<2",