marteinn / wagtail-alt-generator

Insert image description and tags with the help of computer vision
MIT License
83 stars 13 forks source link

Bump wagtail from 2.10 to 2.11 #49

Closed dependabot-preview[bot] closed 3 years ago

dependabot-preview[bot] commented 4 years ago

Bumps wagtail from 2.10 to 2.11.

Release notes

Sourced from wagtail's releases.

2.11

  • Add support for multi-lingual content (Karl Hobley)
  • Add support for aliased pages (Karl Hobley)
  • Add support for hierarchical/nested Collections (Robert Rollins)
  • 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 before_edit_snippet, before_create_snippet and before_delete_snippet hooks and documentation (Karl Hobley. Sponsored by the Mozilla Foundation)
  • 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)
  • 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)
  • Support SVG icons in ModelAdmin menu items (Scott Cranfill)
  • Support SVG icons in admin breadcrumbs (Coen van der Kamp)
  • 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 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)
  • Implement bulk_to_python on all structural StreamField block types (Matt Westcott)
  • Add natural key support to GroupCollectionPermission (Jim Jazwiecki)
  • Implement prepopulated_fields for wagtail.contrib.modeladmin (David Bramwell)
  • Change classname keyword argument on basic StreamField blocks to form_classname (Meghana Bhange)
  • Replace page explorer pushPage/popPage with gotoPage for more flexible explorer navigation (Karl Hobley)
  • 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)
  • Fix: Revise edit_handler bind order in ModelAdmin views and fix duplicate form instance creation (Jérôme Lebleu)
  • Fix: Properly distinguish child blocks when comparing revisions with nested StreamBlocks (Martin Mena)
  • Fix: Correctly handle Turkish 'İ' characters in client-side slug generation (Matt Westcott)
  • Fix: Page chooser widgets now reflect custom get_admin_display_title methods (Saptak Sengupta)
  • Fix: Page.copy() now raises an error if the page being copied is unsaved (Anton Zhyltsou)
  • 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)
  • Fix: Fixed padding around checkbox and radio inputs (Cole Maclean)
  • Fix: Fix spacing around the privacy indicator panel (Sævar Öfjörð Magnússon, Dan Braghis)
  • Fix: Consistently redirect to admin home on permission denied (Matt Westcott, Anton Zhyltsou)

2.11rc1

  • Add support for multi-lingual content (Karl Hobley)
  • Add support for aliased pages (Karl Hobley)
  • Add support for hierarchical/nested Collections (Robert Rollins)
Changelog

Sourced from wagtail's changelog.

2.11 LTS (02.11.2020)


 * Add support for multi-lingual content (Karl Hobley)
 * Add support for aliased pages (Karl Hobley)
 * Add support for hierarchical/nested Collections (Robert Rollins)
 * 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 `before_edit_snippet`, `before_create_snippet` and `before_delete_snippet` hooks and documentation (Karl Hobley. Sponsored by the Mozilla Foundation)
 * 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)
 * 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)
 * Support SVG icons in ModelAdmin menu items (Scott Cranfill)
 * Support SVG icons in admin breadcrumbs (Coen van der Kamp)
 * 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 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)
 * Implement `bulk_to_python` on all structural StreamField block types (Matt Westcott)
 * Add natural key support to `GroupCollectionPermission` (Jim Jazwiecki)
 * Implement `prepopulated_fields` for `wagtail.contrib.modeladmin` (David Bramwell)
 * Change `classname` keyword argument on basic StreamField blocks to `form_classname` (Meghana Bhange)
 * Replace page explorer pushPage/popPage with gotoPage for more flexible explorer navigation (Karl Hobley)
 * 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)
 * Fix: Revise `edit_handler` bind order in ModelAdmin views and fix duplicate form instance creation (Jérôme Lebleu)
 * Fix: Properly distinguish child blocks when comparing revisions with nested StreamBlocks (Martin Mena)
 * Fix: Correctly handle Turkish 'İ' characters in client-side slug generation (Matt Westcott)
 * Fix: Page chooser widgets now reflect custom ``get_admin_display_title`` methods (Saptak Sengupta)
 * Fix: `Page.copy()` now raises an error if the page being copied is unsaved (Anton Zhyltsou)
 * 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)
 * Fix: Fixed padding around checkbox and radio inputs (Cole Maclean)
 * Fix: Fix spacing around the privacy indicator panel (Sævar Öfjörð Magnússon, Dan Braghis)
 * Fix: Consistently redirect to admin home on permission denied (Matt Westcott, Anton Zhyltsou)

2.10.2 (25.09.2020) </tr></table> ... (truncated)

Commits
  • d07ca93 Version bump to 2.11 final
  • 30102b2 Fill in release date for 2.11
  • 477b8e3 Check if new pages are site roots and clear the site_root_paths cache (#6507)
  • 65751bd More prominent note about wagtail-localize in i18n docs (#6506)
  • 3dad7ac Fetch new translations from Transifex
  • e96f46c Version bump to 2.11rc1
  • d58f74f Implement locale selector in React page explorer (#6481)
  • 6234023 Changelog / relase note for internationalisation (#6492)
  • 73f1223 Generate new translation strings
  • cacc639 Fetch new translations from Transifex
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
dependabot-preview[bot] commented 3 years ago

Superseded by #50.