Browse Source

wording improvement

tags/3.0.0-alpha1
Klimov Paul 7 years ago
parent
commit
3666f2c957
  1. 2
      framework/CHANGELOG.md
  2. 6
      framework/UPGRADE.md
  3. 2
      framework/composer.json

2
framework/CHANGELOG.md

@ -39,7 +39,7 @@ Yii Framework 2 Change Log
- Chg #14178: Removed HHVM-specific code (samdark)
- Enh #14671: use `random_int()` instead of `mt_rand()` to generate cryptographically secure pseudo-random integers (yyxx9988)
- Chg #14761: Removed Yii autoloader in favor of Composer's PSR-4 implementation (samdark)
- Chg: Package "ezyang/htmlpurifier" has been made optional and does installed via Composer by default (klimov-paul)
- Chg: Package "ezyang/htmlpurifier" has been made optional and is not installed by default (klimov-paul)
2.0.14 under development
------------------------

6
framework/UPGRADE.md

@ -154,9 +154,9 @@ Upgrade from Yii 2.0.x
`yii\validators\FileValidator::buildMimeTypeRegexp()` have been made `public`. Make sure you use correct
access level specification in case you override these methods.
* Default script position for the `yii\web\View::registerJs()` changed to `View::POS_END`.
* Package "ezyang/htmlpurifier" has been made optional and does installed via Composer by default. If you need
`yii\helpers\HtmlPurifier` or `yii\i18n\Formatter::asHtml()` (e.g. 'html' data format) you'll have to install
this package manually fro your project.
* Package "ezyang/htmlpurifier" has been made optional and is not installed by default. If you need to use
`yii\helpers\HtmlPurifier` or `yii\i18n\Formatter::asHtml()` (e.g. 'html' data format), you'll have to install
this package manually for your project.
Upgrade from Yii 2.0.13

2
framework/composer.json

@ -77,7 +77,7 @@
"bower-asset/yii2-pjax": "~2.0.1"
},
"suggest": {
"ezyang/htmlpurifier": "required at `yii\\helpers\\HtmlPurifier` for 'html' data format support (e.g. `yii\\i18n\\Formatter:asHtml()`)"
"ezyang/htmlpurifier": "required at 'yii\\helpers\\HtmlPurifier' for 'html' data format support (e.g. 'yii\\i18n\\Formatter:asHtml()')"
},
"autoload": {
"psr-4": {"yii\\": ""},

Loading…
Cancel
Save