CHANGELOG.md 2.94 KB
Newer Older
1 2 3
Yii Framework 2 sphinx 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 #6621: Creating sub query at `yii\sphinx\Query::queryScalar()` fixed (klimov-paul)
Qiang Xue committed
14 15


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

19
- Bug #5601: Simple conditions in Query::where() and ActiveQuery::where() did not allow `yii\db\Expression` to be used as the value (cebe, stevekr)
20
- Bug #5634: Fixed `yii\sphinx\QueryBuilder` does not support comparison operators (>,<,>= etc) in where specification (klimov-paul)
21
- Bug #6164: Added missing support for `yii\db\Exression` to QueryBuilder `LIKE` conditions (cebe)
22
- Enh #5223: Query builder now supports selecting sub-queries as columns (qiangxue)
Qiang Xue committed
23 24


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

28
- Enh #5211: `yii\sphinx\Query` now supports 'HAVING' (klimov-paul)
Qiang Xue committed
29 30


31 32
2.0.0-rc September 27, 2014
---------------------------
Qiang Xue committed
33

34
- Bug #3668: Escaping of the special characters at 'MATCH' statement added (klimov-paul)
35
- Bug #4018: AR relation eager loading does not work with db models (klimov-paul)
36
- Bug #4375: Distributed indexes support provided (klimov-paul)
37
- Bug #4830: `ActiveQuery` instance reusage ability granted (klimov-paul)
Carsten Brandt committed
38
- Enh #3520: Added `unlinkAll()`-method to active record to remove all records of a model relation (NmDimas, samdark, cebe)
39
- Enh #4048: Added `init` event to `ActiveQuery` classes (qiangxue)
Carsten Brandt committed
40 41
- 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)
42
- Chg #2287: Split `yii\sphinx\ColumnSchema::typecast()` into two methods `phpTypecast()` and `dbTypecast()` to allow specifying PDO type explicitly (cebe)
Qiang Xue committed
43 44


45 46
2.0.0-beta April 13, 2014
-------------------------
47

Carsten Brandt committed
48
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
49
- Bug #2160: SphinxQL does not support `OFFSET` (qiangxue, romeo7)
50
- Enh #1398: Refactor ActiveRecord to use BaseActiveRecord class of the framework (klimov-paul)
Carsten Brandt committed
51
- Enh #2002: Added filterWhere() method to yii\spinx\Query to allow easy addition of search filter conditions by ignoring empty search fields (samdark, cebe)
52
- Enh #2892: ActiveRecord dirty attributes are now reset after call to `afterSave()` so information about changed attributes is available in `afterSave`-event (cebe)
53
- Enh #3964: Gii generator for Active Record model added (klimov-paul)
54
- Chg #2281: Renamed `ActiveRecord::create()` to `populateRecord()` and changed signature. This method will not call instantiate() anymore (cebe)
55 56 57
- 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)
58

59

Carsten Brandt committed
60
2.0.0-alpha, December 1, 2013
61 62 63
-----------------------------

- Initial release.