kopia lustrzana https://github.com/wagtail/wagtail
rodzic
c8eb58ddac
commit
10137b0162
|
@ -10,21 +10,22 @@ Changelog
|
|||
* Add `register_snippet_listing_buttons` and `construct_snippet_listing_buttons` hooks and documentation (Karl Hobley. Sponsored by the Mozilla Foundation)
|
||||
* Add `wagtail --version` to available Wagtail CLI commands (Kalob Taulien)
|
||||
* Add `hooks.register_temporarily` utility function for testing hooks (Karl Hobley. Sponsored by the Mozilla Foundation)
|
||||
* Remove unidecode and use anyascii in for Unicode to ASCII conversion (Robbie Mackay)
|
||||
* Remove `unidecode` and use `anyascii` in for Unicode to ASCII conversion (Robbie Mackay)
|
||||
* Add `render` helper to `RoutablePageMixin` to support serving template responses according to Wagtail conventions (Andy Babic)
|
||||
* Specify minimum Python version in setup.py (Vince Salvino)
|
||||
* Show user's full name in report views (Matt Westcott)
|
||||
* Improve Wagtail admin page load performance by caching SVG icons sprite in localstorage (Coen van der Kamp)
|
||||
* Improve Wagtail admin page load performance by caching SVG icons sprite in localStorage (Coen van der Kamp)
|
||||
* Support SVG icons in ModelAdmin menu items (Scott Cranfill)
|
||||
* Serve PDFs inline in the browser (Matt Westcott)
|
||||
* Make document `content-type` and `content-disposition` configurable via `WAGTAILDOCS_CONTENT_TYPES` and `WAGTAILDOCS_INLINE_CONTENT_TYPES` (Matt Westcott)
|
||||
* Slug generation no longer removes stopwords (Andy Chosak, Scott Cranfill)
|
||||
* Add check to disallow StreamField block names that do not match Python variable syntax (François Poulain)
|
||||
* The `BASE_URL` setting is now converted to a str, if it isn't already, when constructing API URLs (thenewguy)
|
||||
* The `BASE_URL` setting is now converted to a string, if it isn't already, when constructing API URLs (thenewguy)
|
||||
* Preview from 'pages awaiting moderation' now opens in a new window (Cynthia Kiser)
|
||||
* Add document extension validation if `WAGTAIL_DOCS_EXTENSIONS` is set (Meghana Bhange)
|
||||
* Use `django-admin` command in place of `django-admin.py` (minusf)
|
||||
* Add `register_snippet_action_menu_item` and `construct_snippet_action_menu` hooks to modify the actions available when creating / editing a snippet (Karl Hobley)
|
||||
* Moved `generate_signature` and `verify_signature` functions into `wagtail.images.utils` (Noah H)
|
||||
* Fix: Make page-level actions accessible to keyboard users in page listing tables (Jesse Menn)
|
||||
* Fix: `WAGTAILFRONTENDCACHE_LANGUAGES` was being interpreted incorrectly. It now accepts a list of strings, as documented (Karl Hobley)
|
||||
* Fix: Update oEmbed endpoints to use https where available (Matt Westcott)
|
||||
|
@ -36,6 +37,7 @@ Changelog
|
|||
* Fix: `Page.copy()` now triggers a `page_published` if the copied page is live (Anton Zhyltsou)
|
||||
* Fix: The Elasticsearch `URLS` setting can now take a string on its own instead of a list (Sævar Öfjörð Magnússon)
|
||||
* Fix: Avoid retranslating month / weekday names that Django already provides (Matt Westcott)
|
||||
* Fixed: Fixed padding around checkbox and radio inputs (Cole Maclean)
|
||||
|
||||
|
||||
2.10.2 (25.09.2020)
|
||||
|
|
|
@ -480,6 +480,8 @@ Contributors
|
|||
* Ameet Virdee
|
||||
* Anton Zhyltsou
|
||||
* Meghana Bhange
|
||||
* Cole Maclean
|
||||
* Noah H
|
||||
|
||||
Translators
|
||||
===========
|
||||
|
|
|
@ -23,23 +23,24 @@ Other features
|
|||
* Add ``register_snippet_listing_buttons`` and ``construct_snippet_listing_buttons`` hooks and documentation (Karl Hobley. Sponsored by the Mozilla Foundation)
|
||||
* Add ``wagtail --version`` to available Wagtail CLI commands (Kalob Taulien)
|
||||
* Add ``hooks.register_temporarily`` utility function for testing hooks (Karl Hobley. Sponsored by the Mozilla Foundation)
|
||||
* Remove unidecode and use anyascii in for Unicode to ASCII conversion (Robbie Mackay)
|
||||
* Remove ``unidecode`` and use ``anyascii`` in for Unicode to ASCII conversion (Robbie Mackay)
|
||||
* Add ``render`` helper to ``RoutablePageMixin`` to support serving template responses according to Wagtail conventions (Andy Babic)
|
||||
* Specify minimum Python version in setup.py (Vince Salvino)
|
||||
* Extend treebeard's ``fix_tree`` method with the ability to non-destructively fix path issues and add a --full option to apply path fixes (Matt Westcott)
|
||||
* Add support for hierarchical/nested Collections (Robert Rollins)
|
||||
* Show user's full name in report views (Matt Westcott)
|
||||
* Improve Wagtail admin page load performance by caching SVG icons sprite in localstorage (Coen van der Kamp)
|
||||
* Improve Wagtail admin page load performance by caching SVG icons sprite in localStorage (Coen van der Kamp)
|
||||
* Support SVG icons in ModelAdmin menu items (Scott Cranfill)
|
||||
* Serve PDFs inline in the browser (Matt Westcott)
|
||||
* Make document ``content-type`` and ``content-disposition`` configurable via ``WAGTAILDOCS_CONTENT_TYPES`` and ``WAGTAILDOCS_INLINE_CONTENT_TYPES`` (Matt Westcott)
|
||||
* Slug generation no longer removes stopwords (Andy Chosak, Scott Cranfill)
|
||||
* Add check to disallow StreamField block names that do not match Python variable syntax (François Poulain)
|
||||
* The ``BASE_URL`` setting is now converted to a str, if it isn't already, when constructing API URLs (thenewguy)
|
||||
* The ``BASE_URL`` setting is now converted to a string, if it isn't already, when constructing API URLs (thenewguy)
|
||||
* Preview from 'pages awaiting moderation' now opens in a new window (Cynthia Kiser)
|
||||
* Add document extension validation if ``WAGTAIL_DOCS_EXTENSIONS`` is set to a list of allowed extensions (Meghana Bhange)
|
||||
* Use ``django-admin`` command in place of ``django-admin.py`` (minusf)
|
||||
* Add ``register_snippet_action_menu_item`` and ``construct_snippet_action_menu`` hooks to modify the actions available when creating / editing a snippet (Karl Hobley)
|
||||
* Moved ``generate_signature`` and ``verify_signature`` functions into ``wagtail.images.utils`` (Noah H)
|
||||
|
||||
|
||||
Bug fixes
|
||||
|
@ -56,6 +57,7 @@ Bug fixes
|
|||
* ``Page.copy()`` now triggers a ``page_published`` if the copied page is live (Anton Zhyltsou)
|
||||
* The Elasticsearch ``URLS`` setting can now take a string on its own instead of a list (Sævar Öfjörð Magnússon)
|
||||
* Avoid retranslating month / weekday names that Django already provides (Matt Westcott)
|
||||
* Fixed padding around checkbox and radio inputs (Cole Maclean)
|
||||
|
||||
Upgrade considerations
|
||||
======================
|
||||
|
|
Ładowanie…
Reference in New Issue