- First commit to issue fork.
- @earthday47 opened merge request.
- 🇺🇸United States earthday47 New York
Created fork with the automated fixes, added core_version_requirement.
- 🇦🇺Australia marc.groth
Thanks @earthday47. I was able to use your PR to create a patch which I applied to the module... Which makes it D10 compatible.
I have attached the patch in case it is useful for somebody.
- 🇦🇺Australia marc.groth
I just noticed that a line break is added to the .info.yml file as part of this patch which actually breaks when Drupal metadata is added to the file (because the line break should not be there according to the original file). I have attached an updated patch that takes this into account.
The original .info.yml file will need to updated to include the line break if needed (which is suggested to keep it consistent with Drupal coding standards).
- 🇫🇷France devil2005
Hi,
Is there any release of a stable version for D10 please ?
thanks
- 🇺🇸United States amanire
The patch in #7 applied to 8.x-2.0 for me. Thank you!
- Status changed to RTBC
about 1 year ago 3:45pm 7 November 2023 - 🇺🇦Ukraine vlad.dancer Kyiv
Hey @devil2005 you can require d10 compatible module version in the next way:
composer remove drupal/ckeditor_uploadimage
Then edit composer.json:
{ "type": "package", "package": { "name": "drupal/ckeditor_uploadimage", "type": "drupal-module", "version": "dev-2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/issue/ckeditor_uploadimage-3296782.git", "reference": "f87155bc4d671a6763b93c49bd0bececcd37d763" } } },
And place the above right before:
{ "type": "composer", "url": "https://packages.drupal.org/8" }, { "type": "composer", "url": "https://asset-packagist.org" },
Then run
composer require drupal/ckeditor_uploadimage:dev-2.x
The last step you might need to run two times.