Support h5p/h5p-core 1.27 and h5p/h5p-editor 1.25 in H5PDrupal.php

Created on 7 January 2025, 3 months ago

Problem/Motivation

Updating/installing h5p content libraries produce an error like:

Validating h5p package failed.
The system was unable to install the Multiple Choice component from the package, it requires a newer version of the H5P plugin. This site is currently running version 1.24, whereas the required version is 1.27 or higher. You should consider upgrading and then try again.

Proposed resolution

Solution:

  1. Use the dev-2.0.x branch instead of 2.0-alpha
  2. Add the patch included here to your project
  3. Add newer h5p/h5p-editor and h5p/h5p-core libraries to your project

Eg.:

## Step 1: include the patch in this issue in your project's root composer.
Refer to this tutorial on applying patches: https://gorannikolovski.com/blog/how-to-apply-a-patch-in-drupal

## Step 2: Require dev branch:
composer require drupal/h5p:dev-2.0.x

## Step 3: Require newer h5p-core and h5p-editor in your project
composer require h5p/h5p-core:^1.27
composer require h5p/h5p-editor:^1.25

After that you should be able to update/install content types.

πŸ’¬ Support request
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡¨πŸ‡¦Canada ydahi Waterloo, Canada

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @ydahi
  • πŸ‡¨πŸ‡¦Canada ydahi Waterloo, Canada
  • πŸ‡§πŸ‡·Brazil aluzzardi Pelotas, RS
  • πŸ‡§πŸ‡·Brazil aluzzardi Pelotas, RS

    The patch from #2 can be applied to dev, it's not doing what needs for some functions but helps to install the module.

  • First commit to issue fork.
  • πŸ‡¨πŸ‡¦Canada shaundychko

    The merge request adds to the provided patch by also increasing the version requirement of h5/h5p-core in composer.json in order to automatically retrieve a version of \H5PFrameworkInterface that is compatible with the updated H5PDrupal class.

  • πŸ‡¨πŸ‡¦Canada ydahi Waterloo, Canada

    Still a lot more to be done.

    One current hang-up is the new metadata field introduce in h5p-core:1.27: a11y_title

    Updating to core:1.27 means that existing h5p cannot be saved/updated.

  • πŸ‡¨πŸ‡¦Canada ydahi Waterloo, Canada

    The merge request adds to the provided patch by also increasing the version requirement of h5/h5p-core in composer.json in order to automatically retrieve a version of \H5PFrameworkInterface that is compatible with the updated H5PDrupal class.

    MR26: h5p/h5p-core 1.24.4 is still installing even with bumping the requirement to 1.27 as in this MR. I think this is because the compose.lock is set to 1.24.4.

    To circumvent:

    cd web/module/contrib/h5p
    composer update
    

    This installs h5p-core 1.27 and h5p-editor 1.25

  • πŸ‡¨πŸ‡¦Canada shaundychko

    Yes, the composer.lock would have that effect of locking the version despite changing composer.json. That issue didn't show up for me since I also applied πŸ“Œ Remove vendor directory and composer.lock from project repository Active . The vendor dependencies should not be committed to the module.

  • πŸ‡ΊπŸ‡ΈUnited States NicholasS

    Can someone explain more about the a11y_title, I am not seeing it when editing H5P content. But it does run the update just fine, just don't want to say this is reviewed without understanding the a11y_title.

    I was able to update and save a hotspot that previously existed. So maybe that is enough testing.

     -------- ----------- --------------- --------------------------------------------------------------------------- 
      Module   Update ID   Type            Description                                                                
     -------- ----------- --------------- --------------------------------------------------------------------------- 
      h5p      8005        hook_update_n   8005 - Update hook to modify the database schema to include 'a11y_title'.  
     -------- ----------- --------------- --------------------------------------------------------------------------- 
    
    
     // Do you wish to run the specified pending updates?: yes.                                                             
    
    >  [notice] Update started: h5p_update_8005
    >  [notice] Update completed: h5p_update_8005
     [success] Finished performing updates.
  • πŸ‡¨πŸ‡¦Canada ydahi Waterloo, Canada

    The new field introduced in the newer h5p editor version is called "Assistive Technologies label". It's in the metadata modal. Screenshot attached.

Production build 0.71.5 2024