Browse Source

release version 2.0.29

tags/2.0.29^0 2.0.29
Alexander Makarov 5 years ago
parent
commit
0df43397ba
No known key found for this signature in database
GPG Key ID: 3617B79C6A325E4A
  1. 2
      framework/BaseYii.php
  2. 11
      framework/CHANGELOG.md
  3. 1
      framework/db/pgsql/ColumnSchema.php

2
framework/BaseYii.php

@ -93,7 +93,7 @@ class BaseYii
*/
public static function getVersion()
{
return '2.0.29-dev';
return '2.0.29';
}
/**

11
framework/CHANGELOG.md

@ -1,15 +1,16 @@
Yii Framework 2 Change Log
==========================
2.0.29 under development
------------------------
2.0.29 October 22, 2019
-----------------------
- Bug #17602: `EmailValidator` with `checkDNS=true` throws `ErrorException` on bad domains on Alpine (batyrmastyr)
- Enh #17607: Added Yii version 3 DI config compatibility (hiqsol)
- Bug #17606: Fix error in `AssetBundle` when a disabled bundle with custom init() was still published (onmotion)
- Bug #8225: Fixed AJAX validation with checkboxList was only triggered on first select (execut)
- Bug #17597: PostgreSQL 12 and partitioned tables support (batyrmastyr)
- Bug #17602: `EmailValidator` with `checkDNS=true` throws `ErrorException` on bad domains on Alpine (batyrmastyr)
- Bug #17606: Fix error in `AssetBundle` when a disabled bundle with custom init() was still published (onmotion)
- Bug #17625: Fix boolean `data` attributes from subkeys rendering in `Html::renderTagAttributes()` (brandonkelly)
- Enh #17607: Added Yii version 3 DI config compatibility (hiqsol)
2.0.28 October 08, 2019
-----------------------

1
framework/db/pgsql/ColumnSchema.php

@ -49,7 +49,6 @@ class ColumnSchema extends \yii\db\ColumnSchema
* @deprecated Since 2.0.14.1 and will be removed in 2.1.
*/
public $deserializeArrayColumnToArrayExpression = true;
/**
* @var string name of associated sequence if column is auto-incremental
* @since 2.0.29

Loading…
Cancel
Save