Issue #3387544: Introduce opt-in configuration integrity validation
Merged
requested to merge issue/jsonapi_extras-3387544:3387544-introduce-opt-in-configuration into 8.x-3.x
4 unresolved threads
Merge request reports
Activity
15 use Drupal\jsonapi_extras\ResourceType\NullJsonapiResourceConfig; 16 17 /** 18 * Makes sure that all resource config entities contain settings for all fields. 19 * 20 * This will avoid the use of default behavior when a field exists in an entity 21 * but there is no config about it. This typically happens when the field is 22 * added after the resource config was initially saved. 23 */ 24 class FieldConfigIntegrityValidation extends ConfigImportValidateEventSubscriberBase { 25 26 public function __construct( 27 private ConfigManagerInterface $configManager, 28 private EntityTypeManagerInterface $entityTypeManager, 29 private ConfigurableResourceTypeRepository $resourceTypeRepository, 30 ) {} changed this line in version 2 of the diff
75 75 type: boolean 76 76 label: 'Disabled by default' 77 77 description: "If activated, all resource types that don't have a matching enabled resource config will be disabled." 78 validate_configuration_integrity: 79 type: boolean 80 label: 'Validate configuration integrity' 81 description: "Enable a configuration validation step for the fields in your resources. This will ensure that new (and updated) fields also contain configuration for the corresponding resources." added 2 commits
1 1 path_prefix: jsonapi 2 2 include_count: false 3 3 default_disabled: false 4 validate_configuration_integrity: true So with new installs this will be enabled? Is a little more agressive than we talked about. We talked about enabling by default in the next major (although who knows when that will be, maybe when 11 comes out).
Although with the migration path for existing sites it might actually be a good idea i think.
30 */ 31 private ConfigManagerInterface $configManager; 32 33 /** 34 * The entity type manager. 35 * 36 * @var \Drupal\Core\Entity\EntityTypeManagerInterface 37 */ 38 private EntityTypeManagerInterface $entityTypeManager; 39 40 /** 41 * The resource type repository. 42 * 43 * @var \Drupal\jsonapi_extras\ResourceType\ConfigurableResourceTypeRepository 44 */ 45 private ConfigurableResourceTypeRepository $resourceTypeRepository;
Please register or sign in to reply