Skip to content

Releases: artem-frolov/yii-sass

Version 2.0.1

09 Nov 18:05
Compare
Choose a tag to compare

Changelog for Version 2.0.1 — 2017-11-09

  • #15: Fix an error with the compilation of empty files (tomaszbrunarski)

Version 2.0.0

30 Apr 21:27
Compare
Choose a tag to compare

Changelog for Version 2.0.0 — 2017-05-01

  • Update scssphp compiler to version ~0.6.7
  • Minimum required PHP version is changed to >= 5.4.0
  • Allow to use custom Yii caching components by configuring "cacheComponentId" option

Version 1.3.0

21 Feb 16:40
Compare
Choose a tag to compare

Changelog for Version 1.3.0 — 2015-02-21

  • Fix CAssetManager::publish() call - pass $hashByName value used in
    Yii::app()->sass->publish() and Yii::app()->sass->register() methods
  • Remove deprecated PHPUnit strict setting
  • Do not use unstable (dev-master) version of scssphp compiler anymore
    when Composer is used to install yii-sass extension
  • Make installation via Composer easier - minimum-stability setting
    is not needed anymore
  • Add writableFilePermissions option (defaults to 0666),
    fix file permissions issues with certain umask settings in OS by calling
    chmod for created/updated files, always call chmod for writable directories
  • Add defaultHashByName setting which allows to set a default $hashByName
    value for all plugin's methods
  • Add more information to exceptions' messages
  • Enable Travis CI builds
  • Update documentation

Version 1.2.1

04 Nov 16:29
Compare
Choose a tag to compare

Changelog for Version 1.2.1 — 2014-11-04

  • Bug #4: Don't overwrite a compiled file during the compilation of another source file which has the same basename

Version 1.2.0

12 Aug 12:22
Compare
Choose a tag to compare

Changelog for Version 1.2.0 — 2014-08-12

  • Fix compatibility with the new 0.1 version of the
    scssphp compiler (alexdevid)
  • Set minimum required PHP version to 5.3 because the new version
    of scssphp compiler requires it
  • Add new formatting type SassHandler::OUTPUT_FORMATTING_CRUNCHED which
    can be used with compilerOutputFormatting parameter (alexdevid)
  • Add unit tests to check integration with scssphp compiler
    and with scssphp-compass library
  • Fix a bug: $hashByName=true argument wasn't properly passed to the Yii's asset manager
  • Minor fixes and improvements