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.2 #51

Closed dependabot-preview[bot] closed 3 years ago

dependabot-preview[bot] commented 3 years ago

Bumps wagtail from 2.10 to 2.11.2.

Release notes

Sourced from wagtail's releases.

2.11.2

  • Add custom finder to support Instagram oEmbed API (Luis Nell)
  • Add custom finder to support Facebook oEmbed API (Cynthia Kiser)
  • Fix: Improve performance of permission check on translations for edit page (Karl Hobley)
  • Fix: Gracefully handle missing Locale records on Locale.get_active and .localized (Matt Westcott)
  • Fix: Handle get_supported_language_variant returning a language variant not in LANGUAGES (Matt Westcott)
  • Fix: Reinstate missing icon on settings edit view (Jérôme Lebleu)
  • Fix: Avoid performance and pagination logic issues with a large number of languages (Karl Hobley)
  • Fix: Allow deleting the default locale (Matt Westcott)

2.11.1

  • Fix: Ensure that cached wagtail_site_root_paths structures from older Wagtail versions are invalidated (Sævar Öfjörð Magnússon)
  • Fix: Avoid circular import between wagtail.admin.auth and custom user models (Matt Westcott)
  • Fix: Prevent error on resolving page URLs when a locale outside of WAGTAIL_CONTENT_LANGUAGES is active (Matt Westcott)

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)
Changelog

Sourced from wagtail's changelog.

2.11.2 (17.11.2020)


 * Add custom finder to support Instagram oEmbed API (Luis Nell)
 * Add custom finder to support Facebook oEmbed API (Cynthia Kiser)
 * Fix: Improve performance of permission check on translations for edit page (Karl Hobley)
 * Fix: Gracefully handle missing Locale records on `Locale.get_active` and `.localized` (Matt Westcott)
 * Fix: Handle `get_supported_language_variant` returning a language variant not in `LANGUAGES` (Matt Westcott)
 * Fix: Reinstate missing icon on settings edit view (Jérôme Lebleu)
 * Fix: Avoid performance and pagination logic issues with a large number of languages (Karl Hobley)
 * Fix: Allow deleting the default locale (Matt Westcott)

2.11.1 (06.11.2020)

  • Fix: Ensure that cached wagtail_site_root_paths structures from older Wagtail versions are invalidated (Sævar Öfjörð Magnússon)
  • Fix: Avoid circular import between wagtail.admin.auth and custom user models (Matt Westcott)
  • Fix: Prevent error on resolving page URLs when a locale outside of WAGTAIL_CONTENT_LANGUAGES is active (Matt Westcott)

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)
</tr></table> ... (truncated)
Commits
  • ecf3950 update translators list
  • 49f3e5b Generate new strings for translation
  • 327a50f Fetch new translations from Transifex
  • 0d5839c Fill in release date for 2.11.2
  • 2fdb2e8 Add custom oEmbed finders for Facebook and Instagram (#6550)
  • 28146e0 Allow deleting the default locale (#6553)
  • 734199b Release note for #6544
  • fabc2a5 Fetch all pages of translations
  • 4115ced Fix performance issue in React explorer when there are many languages
  • 6c967df Fix header icon name in settings' edit view (#6554)
  • 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 #52.