Change record status: 
Introduced in branch: 
2.1.x
Introduced in version: 
2.1.1-beta1
Description: 

The constructor for the UserRestrictionsManager class no longer requires the $type_manager argument.

Before

public function __construct(
  EntityTypeManagerInterface $entity_manager,
  UserRestrictionTypeManagerInterface $typeManager,
  LoggerInterface $logger,
  TimeInterface $time,
) {
  // …
}

After

public function __construct(
  EntityTypeManagerInterface $entity_manager,
  LoggerInterface $logger,
  TimeInterface $time,
) {
  // …
}
{
Impacts: 
Module developers
Site templates, recipes and distribution developers