- Issue created by @solideogloria
- Open on Drupal.org →Core: 9.5.x + Environment: PHP 7.4 & MySQL 5.7last update
about 1 year ago Waiting for branch to pass - @solideogloria opened merge request.
- last update
about 1 year ago Build Successful - Status changed to Needs review
about 1 year ago 9:14pm 25 October 2023 - Open on Drupal.org →Core: 9.5.x + Environment: PHP 7.4 & MySQL 5.7last update
about 1 year ago Waiting for branch to pass - Open on Drupal.org →Core: 9.5.x + Environment: PHP 7.4 & MySQL 5.7last update
about 1 year ago Waiting for branch to pass I can't get any of the changes I made to work with 🐛 Multiple multiday events the second event is not showing on the next row. It is showing in the column after first event colspan ends. Needs work , even after changing the code from that issue as well in the same way I did here.
So for now I'm just going to use
#[\AllowDynamicProperties]
so that I can continue making progress toward Drupal 10.I haven't been able to figure out why the code with the changes I make doesn't have the same result.
- 🇬🇧United Kingdom chriscant
Hello. Could this be released to as a new beta please? We're seeing on our production site and cannot easily install patches. Thanks, Chris
- Status changed to RTBC
10 months ago 9:37pm 22 January 2024 I'm getting these same "Deprecated function: ..." messages on my Drupal 10.2.5 site.
I'm unclear. Is there something I can do temporarily until the next version is released?Thanks!
Yes, you can add the following to your composer.patches.json
"drupal/calendar": { "#3396700: Creation of dynamic properties is deprecated": "https://www.drupal.org/files/issues/2023-10-26/calendar-dynamic-properties-3396700-5.patch" },
And in composer.json, you would need
"require": { "cweagans/composer-patches": "^1.7" }, "extra": { "patches-file": "composer.patches.json", ... }
Then run
drush composer install
-
joelpittet →
committed beafabdb on 8.x-1.x
Issue #3396700 by solideogloria, trickfun: Creation of dynamic...
-
joelpittet →
committed beafabdb on 8.x-1.x
- Status changed to Fixed
8 months ago 6:27pm 9 April 2024 - 🇨🇦Canada joelpittet Vancouver
I've patched dev with a new release shortly. Thanks for looking into it @solideogloria
When I did the steps in #10, I got this output:
Gathering patches from patch file.
In Patches.php line 516:
[TypeError]
cweagans\Composer\Patches::arrayMergeRecursiveDistinct(): Argument #1 ($arr
ay1) must be of type array, null given, called in /home/landremanadmin/publ
ic_html/landreman/vendor/cweagans/composer-patches/src/Patches.php on line
123Exception trace:
at /home/landremanadmin/public_html/landreman/vendor/cweagans/composer-patches/src/Patches.php:516
cweagans\Composer\Patches->arrayMergeRecursiveDistinct() at /home/landremanadmin/public_html/landreman/vendor/cweagans/composer-patches/src/Patches.php:123
cweagans\Composer\Patches->checkPatches() at phar:///opt/cpanel/composer/bin/composer/src/Composer/EventDispatcher/EventDispatcher.php:206
Composer\EventDispatcher\EventDispatcher->doDispatch() at phar:///opt/cpanel/composer/bin/composer/src/Composer/EventDispatcher/EventDispatcher.php:129
Composer\EventDispatcher\EventDispatcher->dispatchScript() at phar:///opt/cpanel/composer/bin/composer/src/Composer/Installer.php:280
Composer\Installer->run() at phar:///opt/cpanel/composer/bin/composer/src/Composer/Command/InstallCommand.php:147
Composer\Command\InstallCommand->execute() at phar:///opt/cpanel/composer/bin/composer/vendor/symfony/console/Command/Command.php:298
Symfony\Component\Console\Command\Command->run() at phar:///opt/cpanel/composer/bin/composer/vendor/symfony/console/Application.php:1040
Symfony\Component\Console\Application->doRunCommand() at phar:///opt/cpanel/composer/bin/composer/vendor/symfony/console/Application.php:301
Symfony\Component\Console\Application->doRun() at phar:///opt/cpanel/composer/bin/composer/src/Composer/Console/Application.php:382
Composer\Console\Application->doRun() at phar:///opt/cpanel/composer/bin/composer/vendor/symfony/console/Application.php:171
Symfony\Component\Console\Application->run() at phar:///opt/cpanel/composer/bin/composer/src/Composer/Console/Application.php:145
Composer\Console\Application->run() at phar:///opt/cpanel/composer/bin/composer/bin/composer:93
require() at /opt/cpanel/composer/bin/composer:29install [--prefer-source] [--prefer-dist] [--prefer-install PREFER-INSTALL] [--dry-run] [--download-only] [--dev] [--no-suggest] [--no-dev] [--no-autoloader] [--no-progress] [--no-install] [--audit] [--audit-format AUDIT-FORMAT] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--apcu-autoloader-prefix APCU-AUTOLOADER-PREFIX] [--ignore-platform-req IGNORE-PLATFORM-REQ] [--ignore-platform-reqs] [--] [
...]Is there something else I need to do?
I didn't post a complete composer.patches.json. Make sure your file is valid JSON.
{ "patches": { "drupal/calendar": { "#3396700: Creation of dynamic properties is deprecated": "https://www.drupal.org/files/issues/2023-10-26/calendar-dynamic-properties-3396700-5.patch" } } }
Thanks for that clarification.
The modules works much better now.Thanks again.
Note that when the module has a new version released, you will need to remove the patch when updating your site.
Automatically closed - issue fixed for 2 weeks with no activity.