From 1469efbaba0714a4d32c7a8d70642f7a3c8739ea Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Thu, 9 Jan 2014 09:48:05 +0400 Subject: [PATCH 1/2] Changelog for #1852 --- framework/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/framework/CHANGELOG.md b/framework/CHANGELOG.md index ccae779..537e3b1 100644 --- a/framework/CHANGELOG.md +++ b/framework/CHANGELOG.md @@ -55,6 +55,7 @@ Yii Framework 2 Change Log - Enh #1681: Added support for automatically adjusting the "for" attribute of label generated by `ActiveField::label()` (qiangxue) - Enh #1706: Added support for registering a single JS/CSS file with dependency (qiangxue) - Enh #1773: keyPrefix property of Cache is not restricted to alnum characters anymore, however it is still recommended (cebe) +- Enh #1852: ActiveRecord::tableName() now returns table name using DbConnection::tablePrefix (creocoder) - Enh: Added `favicon.ico` and `robots.txt` to default application templates (samdark) - Enh: Added `Widget::autoIdPrefix` to support prefixing automatically generated widget IDs (qiangxue) - Enh: Support for file aliases in console command 'message' (omnilight) @@ -69,6 +70,7 @@ Yii Framework 2 Change Log - Chg #1835: `CheckboxColumn` now renders checkboxes whose values are the corresponding data key values (qiangxue) - Chg #1821: Changed default values for yii\db\Connection username and password to null (cebe) - Chg #1844: `Response::sendFile()` and other file sending methods will not send the response (qiangxue) +- Cng #1852: DbConnection::tablePrefix default value now 'tbl_' (creocoder) - Chg: Renamed `yii\jui\Widget::clientEventsMap` to `clientEventMap` (qiangxue) - Chg: Renamed `ActiveRecord::getPopulatedRelations()` to `getRelatedRecords()` (qiangxue) - Chg: Renamed `attributeName` and `className` to `targetAttribute` and `targetClass` for `UniqueValidator` and `ExistValidator` (qiangxue) From 5ebe8163e10a0150f243f5e26250084efa26b353 Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Thu, 9 Jan 2014 11:04:14 +0400 Subject: [PATCH 2/2] Typo fix --- framework/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/CHANGELOG.md b/framework/CHANGELOG.md index 537e3b1..bf9e59b 100644 --- a/framework/CHANGELOG.md +++ b/framework/CHANGELOG.md @@ -70,7 +70,7 @@ Yii Framework 2 Change Log - Chg #1835: `CheckboxColumn` now renders checkboxes whose values are the corresponding data key values (qiangxue) - Chg #1821: Changed default values for yii\db\Connection username and password to null (cebe) - Chg #1844: `Response::sendFile()` and other file sending methods will not send the response (qiangxue) -- Cng #1852: DbConnection::tablePrefix default value now 'tbl_' (creocoder) +- Chg #1852: DbConnection::tablePrefix default value now 'tbl_' (creocoder) - Chg: Renamed `yii\jui\Widget::clientEventsMap` to `clientEventMap` (qiangxue) - Chg: Renamed `ActiveRecord::getPopulatedRelations()` to `getRelatedRecords()` (qiangxue) - Chg: Renamed `attributeName` and `className` to `targetAttribute` and `targetClass` for `UniqueValidator` and `ExistValidator` (qiangxue)