Skip to content

Latest commit

 

History

History
61 lines (49 loc) · 1.71 KB

CHANGELOG.md

File metadata and controls

61 lines (49 loc) · 1.71 KB

2013-05-06

  • Create console actions, run php index.php to see more informations
  • Option to disable/enable generating assets on fly 'buildOnRequest' => true - by default is set to true for backward compatybility. My recomendation is to set this to false on production enviroment.
  • Cleanup, refactoring

2013-04-21

  • Added cache buster strategy
  • Start tagging releases

2013-04-11

  • Optional filters in debug mode

2013-04-10

  • Added configurable umask

2013-04-01

  • Added configurable acceptable errors #54

2012-12-26:

  • Update description how to merge
  • Change behavior for option "baseUrl" now is detected by ZF2 (in ServiceFactory::createService)
  • New configuration option "basePath"
  • Composer is now recommended way of installation.
  • Fix issue #36: Case insesitive module name in configuration required
  • Fix issue #30: Possible Assets may apply where they are not wanted

2012-12-25:

  • Wrote tests
  • Add travis-ci
  • Remove old code
  • Add AsseticBundleServiceAwareInterface

2012-09-04:

  • Composer support added, now is recommended way of installation
  • Remove vendor directory
  • New installation process

2012-08-26:

  • Rewrite AsseticBundle\Service to determinate how to set up template to use resources (link, script) depending on Zend\View\Renderer
  • Assetic configuration namespace was change from:
array(
    'di' => array(
        'instance' => array(
            'assetic-configuration' => array(
                'parameters' => array(
                    'config' => array(/* configuration */)
                )
            )
        )
    )
);

to:

array('assetic_configuration' => array(/* configuration */));