You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can be reproduced with PluginSkeleton v1.12.2
It seems that schema validation fails for any project where dependencies were doctrine/orm we bumped up to 2.14.2.
libxml error: Element '{http://gediminasm.org/schemas/orm/doctrine-extensions-mapping}sortable-position': No matching global element declaration available, but demanded by the strict wildcard.
in src/Resources/config/doctrine/TaxonGalleryItem.orm.xml at line 20
It seems to work ok with 2.14.1.
Workaround?
Potential solution can be avoiding 2.14.2 (if this is doctrine bug) or finding root cause. I did not investigated it deeper yet.
I solved it so far with:
"conflict": {
"doctrine/orm": "2.14.2"
},
Simple steps to reproduce:
For project using Sylius/PluginSkeleton v1.12.2
and define doctrine entities in xml
and use gedmo:timestampable tag within a field tag
run:
rm -fr composer.lock && composer install --no-scripts --no-plugins --no-cache
(cd tests/Application && bin/console doctrine:schema:validate) # same effect with schema create or update
The text was updated successfully, but these errors were encountered:
Can be reproduced with PluginSkeleton v1.12.2
It seems that schema validation fails for any project where dependencies were doctrine/orm we bumped up to 2.14.2.
It seems to work ok with 2.14.1.
Workaround?
Potential solution can be avoiding 2.14.2 (if this is doctrine bug) or finding root cause. I did not investigated it deeper yet.
I solved it so far with:
Simple steps to reproduce:
For project using Sylius/PluginSkeleton v1.12.2
and define doctrine entities in xml
and use gedmo:timestampable tag within a field tag
run:
The text was updated successfully, but these errors were encountered: