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
* 4.x:
Fix more deprecations
Bump development version
Prepare 4.27.1 release
Update CrudAutocompleteSubscriber to also handle array of UUIDs correctly
Minor tweaks
Fix for EasyCorp#7208
Bump development version
Prepare 4.27.0 release
Minor reword
Set CrudFormType as default entry_type for CollectionFields if the property is an association
Fix Symfony 7.4 deprecations
Minor fix docs related to admin routes
Fix some deprecations in form templates
Deprecate remaining Doctrine wrappers in EntityDto and access mapping values by offset (works in orm v2 and v3)
thrownew \RuntimeException(sprintf('Could not guess a field class for "%s" field. It possibly is an association field or an embedded class field.', $fieldDto->getProperty()));
166
161
} else {
167
-
// Doctrine ORM 2.x returns an array and Doctrine ORM 3.x returns a FieldMapping object
thrownew \RuntimeException(sprintf('The Doctrine type of the "%s" field is "%s", which is not supported by EasyAdmin. For Doctrine\'s Custom Mapping Types have a look at EasyAdmin\'s field docs.', $fieldDto->getProperty(), $doctrineFieldMappingType));
165
+
thrownew \RuntimeException(sprintf('The Doctrine type of the "%s" field is "%s", which is not supported by EasyAdmin. For Doctrine\'s Custom Mapping Types have a look at EasyAdmin\'s field docs.', $fieldDto->getProperty(), $fieldMapping['type']));
0 commit comments