Dopo l'aggiornamento a 11.2.0 ho due avvisi.

1.
Redundant filters detected
The following views use the Stato di pubblicazione o utente amministratore filter but it has no effect because the following module(s) control access: View Unpublished. Review and consider removing the filter from these views:

    Contenuto (Predefinito)
    Content calendar (Predefinito)

Se tento di eliminarli ho questo messaggio:

Oops, something went wrong. Check your browser's developer console for more details.

2. The anonymous user does not exist.

You can also do it in an update hook like:

function hook_update_n(&$sandbox) {
  $storage = \Drupal::entityTypeManager()->getStorage('user');
  // Insert a row for the anonymous user.
  $storage->create([
    'uid' => 0,
    'status' => 0,
    'name' => '',
  ])->save();
}

This will insert a new user with uid 0.

Dove si inserisce questo? Non capisco niente di queste cose.

Per favore, qualcuno mi può aiutare?

ciao e grazie