Change record status: 
Project: 
Introduced in branch: 
8.0.x
Introduced in version: 
8.0.0-beta3
Description: 

ForumManagerInterface::getParents() is deprecated. You should call loadAllParents() on Taxonomy Term Storage directly.

Before:

\Drupal::service('forum_manager')->getParents($tid)

Now:
\Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadAllParents($tid);

Impacts: 
Site builders, administrators, editors
Module developers