Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.29 KB

CHANGELOG.md

File metadata and controls

40 lines (33 loc) · 1.29 KB

CHANGELOG

A [BC BREAK] means the update will break the project for many reasons :

  • new mandatory configuration
  • new dependencies
  • class refactoring

2015-12-12

  • The services sonata.core.slugify.cocur and sonata.core.slugify.native are deprecated.
  • The Twig filter sonata_slugify is deprecated. Install cocur/slugify and enable CocurSlugifyBundle https://github.com/cocur/slugify#symfony2 for using slugify filter.

[BC BREAK] 2013-12-30

  • Configuration structure for flashmessage has changed to be more generic, this is what is expected now:
sonata_core:
    flashmessage:
        error:
            # You may now override the css class used for rendering the message
            css_class: danger
            types:
                error:
                    domain: SonataCoreBundle
                sonata_error:
                    domain: SonataCoreBundle
        # This is templated, you may add as many flash messages type you want
        warn:
            # You may now override the css class used for rendering the message, optional in the configuration
            css_class: warning
            types:
                warn:
                    domain: SonataCoreBundle
                sonata_warn:
                    domain: SonataCoreBundle
        # ...