Synflag β created an issue.
After using patch #6 (On Acquia):
[notice] Update started: commerce_pricelist_update_8206
> [error] Exception thrown while performing a schema update. SQLSTATE[HY000]: General error: 1709 Index column size too large. The maximum column size is 767 bytes.: ALTER TABLE "commerce_pricelist_item" ADD UNIQUE KEY `price_list_purchasable_currency` (`type`, `price_list_id`, `purchasable_entity`, `quantity`, `price__currency_code`); Array
> (
> )
>
> [error] Update failed: commerce_pricelist_update_8206
Hi, regarding Drupal\color_field\Plugin\Field\FieldFormatter\ColorFieldFormatterText::getColorFormat():
This is 7.4 compatible:
/**
* This function is used to get the color format.
*
* @param string|null $format
* Format is of string type.
*
* @return array|\Drupal\Component\Render\MarkupInterface
* Returns array or string.
*/
protected function getColorFormat(?string $format = NULL) {
$formats = [];
$formats['hex'] = $this->t('Hex triplet');
$formats['rgb'] = $this->t('RGB Decimal');
if ($format !== null) {
return [$format => $formats[$format]];
}
return $formats;
}
Greetings
Lars Jendrzejewski, synflag Web Engineering
Hi, as this was a windows composer problem we can say that the module is working as designed.
I think I have a similar Issue which might fit into this one:
When I update drupal/zurb_foundation from 6 to 9, composer is downloading the "stable" theme into themes/contributed.
But itΒ΄s not deleting core/themes/stable in my case.
this is from the composer installed theme:
# Information added by Drupal.org packaging script on 2022-09-13
version: '2.0.0'
project: 'stable'
datestamp: 1663102969
The composer.json from zurb_foundation has this part:
"require": {
"drupal/stable": "^2.0"
}
and composer installs themes into the themes dir.
Installer path section of the root composer:
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
We should be save by removing the stable theme source from themes/contrib. I try that.
Yep, its working. My site looks fine, my css begins like that:
@charset "UTF-8";
/**
* Foundation for Sites
* Version 6.7.4
* https://get.foundation
* Licensed under MIT Open Source
*/
The old one was version 6.5.3 (btw: 6.7.5 would be nice)
And as always: thx for this wonderful theme.
Best,
Lars Jendrzejewski
it says:
composer require 'drupal/eu_cookie_compliance_matomo:^1.0'
Warning from https://repo.packagist.org: Support for Composer 1 is deprecated and some packages will not be available. You should upgrade to Composer 2.
See https://blog.packagist.com/deprecating-composer-1-support/
Info from https://repo.packagist.org: #StandWithUkraine
[InvalidArgumentException]
Could not find package drupal/eu_cookie_compliance_matomo in a version matching 1.0
FYI: I am on Windows
Do I need an other repo?
Synflag β created an issue.