@@ -7,6 +7,33 @@ Changelog
7
7
New
8
8
~~~
9
9
10
+ - `highlight() ` accepts custom values on Solr and ES. [Chris Adams]
11
+
12
+ This allows the default values to be overriden and arbitrary
13
+ backend-specific parameters may be provided to Solr or ElasticSearch.
14
+
15
+ Thanks to @tymofij for the patch
16
+
17
+ Closes #1334
18
+
19
+ - Allow Routers to return multiple indexes. [Chris Adams]
20
+
21
+ Thanks to Hugo Chargois (@hchargois) for the patch
22
+
23
+ Closes #1337
24
+ Closes #934
25
+
26
+ - Support for newer versions of Whoosh. [Chris Adams]
27
+
28
+ - Split SearchView.create_response into get_context. [Chris Adams]
29
+
30
+ This makes it easy to override the default `create_response ` behaviour
31
+ if you don't want a standard HTML response.
32
+
33
+ Thanks @seocam for the patch
34
+
35
+ Closes #1338
36
+
10
37
- Django 1.9 support thanks to Claude Paroz. [Chris Adams]
11
38
12
39
- Create a changelog using gitchangelog. [Chris Adams]
19
46
Changes
20
47
~~~~~~~
21
48
49
+ - Moved signal processor loading to app_config.ready. [Chris Adams]
50
+
51
+ Thanks to @claudep for the patch
52
+
53
+ Closes #1260
54
+
22
55
- Handle `__in=[] ` gracefully on Solr. [Chris Adams]
23
56
24
57
This commit avoids the need to check whether a list is empty to avoid an
@@ -30,6 +63,31 @@ Changes
30
63
Fix
31
64
~~~
32
65
66
+ - Queryset slicing and reduced code duplication. [Craig de Stigter]
67
+
68
+ Now pagination will not lazy-load all earlier pages before returning the
69
+ result.
70
+
71
+ Thanks to @craigds for the patch
72
+
73
+ Closes #1269
74
+ Closes #960
75
+
76
+ - Handle negative timestamps returned from ES. [Chris Adams]
77
+
78
+ Elastic search can return negative timestamps for histograms if the
79
+ dates are pre-1970. This PR properly handles these pre-1970 dates.
80
+
81
+ Thanks to @speedplane for the patch
82
+
83
+ Closes #1239
84
+
85
+ - SearchMixin allows form initial values. [Chris Adams]
86
+
87
+ Thanks to @ahoho for the patch
88
+
89
+ Closes #1319
90
+
33
91
- Graceful handling of empty __in= lists on ElasticSearch. [Chris Adams]
34
92
35
93
Thanks to @boulderdave for the ES version of #1311
39
97
Other
40
98
~~~~~
41
99
100
+ - Merge pull request #1225 from gregplaysguitar/patch-1. [Chris Adams]
101
+
102
+ fix: correct docstring for ModelSearchForm.get_models !minor
103
+
104
+ - Fix bogus docstring. [Greg Brown]
105
+
42
106
- Merge pull request #1328 from claudep/travis19. [Chris Adams]
43
107
44
108
Updated test configs to include Django 1.9
0 commit comments