mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-20 13:01:56 +00: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:
parent
30f6a590b4
commit
a3dc9ed477
3 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue