File tree 3 files changed +33
-3
lines changed
3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Makefile text
15
15
#
16
16
17
17
/.phan export-ignore
18
+ /tests export-ignore
18
19
/.gitattributes export-ignore
19
20
/.gitignore export-ignore
20
21
/.php_cs export-ignore
Original file line number Diff line number Diff line change @@ -6,9 +6,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.1.0]
10
+
11
+ ### Fixed
12
+
13
+ - Wrong output of the NumericFacet ([ Issue #1 ] , [ PR #2 ] )
14
+ - Missing Composer plugin
15
+ - Missing ` getSeperator ` method in ` TagField `
16
+ - Missing total number of result
17
+ - Fix typo in search parameter (` RETURN ` )
18
+ - Fix prefixes data from index information
19
+
20
+ ### Added
21
+
22
+ - Unit test on NumericFacet ([ PR #2 ] )
23
+ - Index stats can return fields as object.
24
+ - Fields implements Comparable interface
25
+ - Paginate results.
26
+ - Syntax error detection in search.
27
+
28
+ ### Changed
29
+
30
+ - Rename ` Index::addFromArray ` to ` Index::addDocumentFromArray ` for consistency (Depreciation, keeping BC)
31
+ - Rename namespace from ` MacFJA\RedisSearch ` to ` MacFJA\RediSearch ` (Depreciation, keeping BC)
32
+ - Uniformize Builder interface (Deprecation, keeping BC)
33
+
9
34
## [ 1.0.0] - 2020-12-05
10
35
11
36
First version
12
37
13
- [ Unreleased ] : https://github.com/MacFJA/php-redisearch/compare/1.0.0...HEAD
14
- [ 1.0.0 ] : https://github.com/MacFJA/php-redisearch/releases/tag/1.0.0
38
+ [ Unreleased ] : https://github.com/MacFJA/php-redisearch/compare/1.1.0...HEAD
39
+ [ 1.1.0 ] : https://github.com/MacFJA/php-redisearch/compare/1.0.0...1.1.0
40
+ [ 1.0.0 ] : https://github.com/MacFJA/php-redisearch/releases/tag/1.0.0
41
+
42
+ [ Issue#1 ] : https://github.com/MacFJA/php-redisearch/issues/1
43
+ [ PR#2 ] : https://github.com/MacFJA/php-redisearch/pulls/2
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ fix-code: | vendor
20
20
@# $(COMPOSER) exec -v psalm -- --alter --issues=all src
21
21
22
22
test : | vendor
23
- $(COMPOSER ) exec -v phpunit tests
23
+ $(COMPOSER ) exec -v phpunit -- --whitelist=src tests
24
24
25
25
vendor :
26
26
ifneq (prod,${BUILD_MODE})
You can’t perform that action at this time.
0 commit comments