Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 1.21 KB

Upgrade.md

File metadata and controls

63 lines (43 loc) · 1.21 KB

Upgrade instruction

This document describes the changes needed when upgrading because of a BC break. For the full list of changes, please look at the Changelog file.

0.5 to 0.6

Exceptions

The exception class Sp\BowerBundle\Bower\Exception was removed. If you used this class to catch or throw new exceptions, replace it with one of the new ones:

0.3 to 0.4

Configuration

Deprecations

The configuration option register_assets is deprecated and will be removed in 0.6. You should now use the assetic option

Before:

sp_bower:
    register_assets: true

After:

sp_bower:
    assetic: ~

0.1 to 0.2

Configuration

The configuration for this bundle slightly changed to make it more clear.

Before:

# app/config/config.yml
sp_bower:
    paths:
        DemoBundle: ~

After:

# app/config/config.yml
sp_bower:
    bundles:
        DemoBundle: ~