Skip to content

Commit f3d1534

Browse files
committed
release version 2.0.21
1 parent 662e367 commit f3d1534

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

framework/BaseYii.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class BaseYii
9393
*/
9494
public static function getVersion()
9595
{
96-
return '2.0.21-dev';
96+
return '2.0.21';
9797
}
9898

9999
/**

framework/CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
Yii Framework 2 Change Log
22
==========================
33

4-
2.0.21 under development
5-
------------------------
4+
2.0.21 June 18, 2019
5+
--------------------
66

7+
- Bug #16565: Added missing parts of the context message in `\yii\log\Target::collect` (alexkart)
8+
- Bug #17070: Striped invalid character from fallback file name in `Content-Disposition` header when using `\yii\web\Response::sendFile` (alexkart)
9+
- Bug #17332: Trigger 'change' for checkboxes in GridView (andrii-borysov-me)
710
- Bug #17341: Fixed error from yii.activeForm.js in strict mode (mikehaertl)
11+
- Bug #17341: Allowed callable objects to be set to `\yii\filters\AccessRule::$roleParams` (alexkart)
12+
- Bug #17356: MSSQL Schema was not detecting string field size (ricarnevale, sdlins)
813
- Enh #17344: Improved performance of `yii\db\Connection::addSelect()` (brandonkelly)
914
- Enh #17345: Improved performance of `yii\db\Connection::quoteColumnName()` (brandonkelly)
1015
- Enh #17348: Improved performance of `yii\db\Connection::quoteTableName()` (brandonkelly)
1116
- Enh #17353: Added `sameSite` support for `yii\web\Cookie` and `yii\web\Session::cookieParams` (rhertogh)
12-
- Bug #17356: MSSQL Schema was not detecting string field size (ricarnevale, sdlins)
13-
- Bug #17341: Allowed callable objects to be set to `\yii\filters\AccessRule::$roleParams` (alexkart)
14-
- Bug #17070: Striped invalid character from fallback file name in `Content-Disposition` header when using `\yii\web\Response::sendFile` (alexkart)
15-
- Bug #16565: Added missing parts of the context message in `\yii\log\Target::collect` (alexkart)
16-
- Bug #17332: Trigger 'change' for checkboxes in GridView (andrii-borysov-me)
1717

1818

1919
2.0.20 June 04, 2019

framework/web/Cookie.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Cookie extends \yii\base\BaseObject
6767
public $httpOnly = true;
6868
/**
6969
* @var string SameSite prevents the browser from sending this cookie along with cross-site requests.
70-
* Please note that this feature is only supported since PHP 7.3.0
70+
* Please note that this feature is only supported since PHP 7.3.0
7171
* For better security, an exception will be thrown if `sameSite` is set while using an unsupported version of PHP.
7272
* To use this feature across different PHP versions check the version first. E.g.
7373
* ```php

0 commit comments

Comments
 (0)