- 🇨🇭Switzerland berdir Switzerland
-
+++ b/bynder.module @@ -263,5 +263,16 @@ function bynder_ckeditor_css_alter(array &$css, Editor $editor) { +/** + * Implements hook_library_info_alter(). + */ +function bynder_library_info_alter(&$libraries, $extension) { + if ($extension == 'bynder' && isset($libraries['formatter'])) { + if (\Drupal::moduleHandler()->moduleExists('jquery_ui_tooltip')) { + $libraries['formatter']['dependencies'][] = 'jquery_ui_tooltip/tooltip'; + } + }
this is no longer needed.
-
+++ b/composer.json @@ -1,18 +1,17 @@ "suggest": { + "drupal/jquery_ui_tooltip": "Adds a nicer tooltip.", "drupal/entity_usage": "Required for the optional submodule bynder_usage to track bynder media usage (entity_usage 8.x-2.x)", "drupal/dropzonejs": "Will help provide an 'Upload to Bynder' entity browser plugin." }
nor this.
Removed on commit.
-
- Status changed to Needs review
almost 2 years ago 6:58pm 7 February 2023 - 🇺🇸United States dave reid Nebraska USA
FYI this change just declared all the sub-modules incompatible with Drupal 9:
diff --git a/modules/bynder_sns/bynder_sns.info.yml b/modules/bynder_sns/bynder_sns.info.yml index 0634af4..5520b93 100644 --- a/modules/bynder_sns/bynder_sns.info.yml +++ b/modules/bynder_sns/bynder_sns.info.yml @@ -2,7 +2,7 @@ name: Bynder SNS description: 'Supports asset updates through Amazon SNS notifications' type: module package: Media -core_version_requirement: ^8.7.7 || ^9 +core_version_requirement: ^8.7.7 || ^10 dependencies: - bynder:bynder diff --git a/modules/bynder_usage/bynder_usage.info.yml b/modules/bynder_usage/bynder_usage.info.yml index afc052f..3160a58 100644 --- a/modules/bynder_usage/bynder_usage.info.yml +++ b/modules/bynder_usage/bynder_usage.info.yml @@ -2,7 +2,7 @@ name: Bynder Usage description: 'Reports usage tracking of media items back to the Bynder API' type: module package: Media -core_version_requirement: ^8.8 || ^9 +core_version_requirement: ^8.8 || ^10 dependencies: - bynder:bynder diff --git a/modules/demo/bynder_demo.info.yml b/modules/demo/bynder_demo.info.yml index 3fe0831..82631f0 100644 --- a/modules/demo/bynder_demo.info.yml +++ b/modules/demo/bynder_demo.info.yml @@ -2,7 +2,7 @@ name: Bynder Demo description: 'Demonstration of the Bynder integration.' type: module package: Media -core_version_requirement: ^8.8 || ^9 +core_version_requirement: ^8.8 || ^10
- 🇺🇸United States dave reid Nebraska USA
Upgrading to critical as this prevents several of the modules from working or being enabled on Drupal 9 anymore.
-
Berdir →
committed d5127266 on 4.x authored by
Dave Reid →
Issue #3286396 by Primsi, Project Update Bot, Dave Reid, Berdir:...
-
Berdir →
committed d5127266 on 4.x authored by
Dave Reid →
- Status changed to Fixed
almost 2 years ago 1:23pm 8 February 2023 - 🇨🇭Switzerland berdir Switzerland
That's very weird, no idea how I missed, that, fixed. Thanks for noticing just in time.
If you were on dev then I guess you already noticed the problem with the jquery_ui_tooltip dependency that composer might remove if you don't depend on it otherwise. I'll add some notes about that to the release.
Automatically closed - issue fixed for 2 weeks with no activity.
- 🇷🇴Romania mihai_brb
The Bynder formatter library depends on core/popperjs
However this has been deprecated
The popperjs asset library is deprecated in Drupal 9.5.0 and will be removed in Drupal 10.0.0. There is no replacement. See https://www.drupal.org/node/3307518 →