CHANGELOG.md 1.29 KB
Newer Older
1 2 3
Yii Framework 2 redis extension Change Log
==========================================

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

Carsten Brandt committed
7
- Enh #3520: Added `unlinkAll()`-method to active record to remove all records of a model relation (NmDimas, samdark, cebe)
Qiang Xue committed
8 9


10 11
2.0.0-beta April 13, 2014
-------------------------
12

Carsten Brandt committed
13
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
Carsten Brandt committed
14
- Enh #1773: keyPrefix property of Session and Cache is not restricted to alnum characters anymore (cebe)
Carsten Brandt committed
15
- Enh #2002: Added filterWhere() method to yii\redis\ActiveQuery to allow easy addition of search filter conditions by ignoring empty search fields (samdark, cebe)
16
- Enh #2892: ActiveRecord dirty attributes are now reset after call to `afterSave()` so information about changed attributes is available in `afterSave`-event (cebe)
17
- Chg #2281: Renamed `ActiveRecord::create()` to `populateRecord()` and changed signature. This method will not call instantiate() anymore (cebe)
18 19 20
- 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)
21

Carsten Brandt committed
22
2.0.0-alpha, December 1, 2013
23 24 25
-----------------------------

- Initial release.