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

4 5 6 7 8 9
2.0.3 under development
-----------------------

- no changes in this release.


Qiang Xue committed
10 11
2.0.2 January 11, 2015
----------------------
Qiang Xue committed
12

13
- Bug #6547: Fixed redis connection to deal with large data in combination with `mget()` (pyurin)
Qiang Xue committed
14 15


Qiang Xue committed
16
2.0.1 December 07, 2014
Qiang Xue committed
17 18
-----------------------

19
- Bug #4745: value of simple string returns was ignored by redis client and `true` is returned instead, now only `OK` will result in a `true` while all other values are returned as is (cebe)
20 21
- Enh #3714: Added support for connecting to redis server using a unix socket (savvot, robregonm)

Qiang Xue committed
22

Qiang Xue committed
23 24
2.0.0 October 12, 2014
----------------------
Qiang Xue committed
25 26 27 28

- no changes in this release.


29 30
2.0.0-rc September 27, 2014
---------------------------
Qiang Xue committed
31

32
- Bug #1311: Fixed storage and finding of `null` and boolean values (samdark, cebe)
Carsten Brandt committed
33
- Enh #3520: Added `unlinkAll()`-method to active record to remove all records of a model relation (NmDimas, samdark, cebe)
34
- Enh #4048: Added `init` event to `ActiveQuery` classes (qiangxue)
Carsten Brandt committed
35
- Enh #4086: changedAttributes of afterSave Event now contain old values (dizews)
Qiang Xue committed
36 37


38 39
2.0.0-beta April 13, 2014
-------------------------
40

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

Carsten Brandt committed
50
2.0.0-alpha, December 1, 2013
51 52 53
-----------------------------

- Initial release.