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

In order to not throw deprecated warnings on sites, we should no longer use deprecated APIs.

The following bits changed:

* Dependency injection: https://github.com/symfony/symfony/blob/2.7/UPGRADE-3.0.md#dependencyinj...

This means:

Before

  factory_class: ExampleClass
  factory_method: someMethod

After

  factory: ExampleClass::someMethod

Before

  factory_service: some_service
  factory_method: someMethod

After

  factory: some_service:someMethod

* Routing: https://github.com/symfony/symfony/blob/2.7/UPGRADE-3.0.md#routing
* Validator: https://github.com/symfony/symfony/blob/2.7/UPGRADE-3.0.md#validator

Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done