Browse Source

Updated HTMLPurified dependency to `4.6.*`

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
90d5e5cfe4
  1. 2
      composer.json
  2. 2
      docs/guide/composer.md
  3. 2
      docs/guide/view.md
  4. 1
      framework/CHANGELOG.md
  5. 2
      framework/composer.json

2
composer.json

@ -72,7 +72,7 @@
"yiisoft/yii2-composer": "*", "yiisoft/yii2-composer": "*",
"yiisoft/jquery": "1.10.*", "yiisoft/jquery": "1.10.*",
"phpspec/php-diff": ">=1.0.2", "phpspec/php-diff": ">=1.0.2",
"ezyang/htmlpurifier": "4.5.*", "ezyang/htmlpurifier": "4.6.*",
"michelf/php-markdown": "1.3.*" "michelf/php-markdown": "1.3.*"
}, },
"require-dev": { "require-dev": {

2
docs/guide/composer.md

@ -28,7 +28,7 @@ In this file you list the packages that your application requires. For Yii sites
{ {
"require": { "require": {
"Michelf/php-markdown": ">=1.3", "Michelf/php-markdown": ">=1.3",
"ezyang/htmlpurifier": ">=4.5.0" "ezyang/htmlpurifier": ">=4.6.0"
} }
} }
``` ```

2
docs/guide/view.md

@ -90,7 +90,7 @@ When you want to render HTML it becomes complex so we're delegating the task to
adding the following to `require`: adding the following to `require`:
```javascript ```javascript
"ezyang/htmlpurifier": "v4.5.0" "ezyang/htmlpurifier": "v4.6.0"
``` ```
After it's done run `php composer.phar install` and wait till package is downloaded. Now everything is prepared to use After it's done run `php composer.phar install` and wait till package is downloaded. Now everything is prepared to use

1
framework/CHANGELOG.md

@ -57,6 +57,7 @@ Yii Framework 2 Change Log
- Chg: Renamed `attributeName` and `className` to `targetAttribute` and `targetClass` for `UniqueValidator` and `ExistValidator` (qiangxue) - Chg: Renamed `attributeName` and `className` to `targetAttribute` and `targetClass` for `UniqueValidator` and `ExistValidator` (qiangxue)
- Chg: Added `yii\widgets\InputWidget::options` (qiangxue) - Chg: Added `yii\widgets\InputWidget::options` (qiangxue)
- Chg: Changed the signature of `urlCreator` and button creators for `yii\gridview\ActionColumn` (qiangxue) - Chg: Changed the signature of `urlCreator` and button creators for `yii\gridview\ActionColumn` (qiangxue)
- Chg: Updated HTMLPurified dependency to `4.6.*`.
- New #1438: [MongoDB integration](https://github.com/yiisoft/yii2-mongodb) ActiveRecord and Query (klimov-paul) - New #1438: [MongoDB integration](https://github.com/yiisoft/yii2-mongodb) ActiveRecord and Query (klimov-paul)
- New #1393: [Codeception testing framework integration](https://github.com/yiisoft/yii2-codeception) (Ragazzo) - New #1393: [Codeception testing framework integration](https://github.com/yiisoft/yii2-codeception) (Ragazzo)

2
framework/composer.json

@ -55,7 +55,7 @@
"yiisoft/yii2-composer": "*", "yiisoft/yii2-composer": "*",
"yiisoft/jquery": "1.10.*", "yiisoft/jquery": "1.10.*",
"phpspec/php-diff": ">=1.0.2", "phpspec/php-diff": ">=1.0.2",
"ezyang/htmlpurifier": "4.5.*", "ezyang/htmlpurifier": "4.6.*",
"michelf/php-markdown": "1.3.*" "michelf/php-markdown": "1.3.*"
}, },
"autoload": { "autoload": {

Loading…
Cancel
Save