CHANGELOG.md 2.03 KB
Newer Older
1 2 3
Yii Framework 2 sphinx extension Change Log
===========================================

Qiang Xue committed
4 5 6
2.0.0-rc under development
--------------------------

7
- Bug #3668: Escaping of the special characters at 'MATCH' statement added (klimov-paul)
8
- Bug #4018: AR relation eager loading does not work with db models (klimov-paul)
9
- Bug #4375: Distributed indexes support provided (klimov-paul)
Carsten Brandt committed
10
- Enh #3520: Added `unlinkAll()`-method to active record to remove all records of a model relation (NmDimas, samdark, cebe)
11
- Enh #4048: Added `init` event to `ActiveQuery` classes (qiangxue)
Carsten Brandt committed
12 13
- Enh #4086: changedAttributes of afterSave Event now contain old values (dizews)
- Enh: Added support for using sub-queries when building a DB query with `IN` condition (qiangxue)
14
- Chg #2287: Split `yii\sphinx\ColumnSchema::typecast()` into two methods `phpTypecast()` and `dbTypecast()` to allow specifying PDO type explicitly (cebe)
Qiang Xue committed
15 16


17 18
2.0.0-beta April 13, 2014
-------------------------
19

Carsten Brandt committed
20
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
21
- Bug #2160: SphinxQL does not support `OFFSET` (qiangxue, romeo7)
22
- Enh #1398: Refactor ActiveRecord to use BaseActiveRecord class of the framework (klimov-paul)
Carsten Brandt committed
23
- Enh #2002: Added filterWhere() method to yii\spinx\Query to allow easy addition of search filter conditions by ignoring empty search fields (samdark, cebe)
24
- Enh #2892: ActiveRecord dirty attributes are now reset after call to `afterSave()` so information about changed attributes is available in `afterSave`-event (cebe)
25
- Enh #3964: Gii generator for Active Record model added (klimov-paul)
26
- Chg #2281: Renamed `ActiveRecord::create()` to `populateRecord()` and changed signature. This method will not call instantiate() anymore (cebe)
27 28 29
- Chg #2146: Removed `ActiveRelation` class and moved the functionality to `ActiveQuery`.
             All relational queries are now directly served by `ActiveQuery` allowing to use
             custom scopes in relations (cebe)
30

Carsten Brandt committed
31
2.0.0-alpha, December 1, 2013
32 33 34
-----------------------------

- Initial release.