Releases: artem-frolov/yii-sass
Releases · artem-frolov/yii-sass
Version 2.0.1
Changelog for Version 2.0.1 — 2017-11-09
- #15: Fix an error with the compilation of empty files (tomaszbrunarski)
Version 2.0.0
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
Changelog for Version 1.3.0 — 2015-02-21
- Fix
CAssetManager::publish()
call - pass$hashByName
value used in
Yii::app()->sass->publish()
andYii::app()->sass->register()
methods - Remove deprecated PHPUnit
strict
setting - Do not use unstable (
dev-master
) version ofscssphp
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 to0666
),
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
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
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
ofscssphp
compiler requires it - Add new formatting type
SassHandler::OUTPUT_FORMATTING_CRUNCHED
which
can be used withcompilerOutputFormatting
parameter (alexdevid) - Add unit tests to check integration with
scssphp
compiler
and withscssphp-compass
library - Fix a bug:
$hashByName=true
argument wasn't properly passed to the Yii's asset manager - Minor fixes and improvements