File tree Expand file tree Collapse file tree 3 files changed +33
-2
lines changed Expand file tree Collapse file tree 3 files changed +33
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ Changelog
7
7
New
8
8
~~~
9
9
10
+ - Expose the full Solr response in `Results ` [Chris Adams]
11
+
12
+ This makes life easier for anyone using custom extensions by
13
+ removing the need to create a `Results ` subclass just to get
14
+ access to an extra dictionary key.
15
+
16
+ - Start maintaining a changelog from gitchangelog. [Chris Adams]
17
+
10
18
- Overwrite flag for Solr.add (closes #182) [Chris Adams]
11
19
12
20
Thanks to @robinsonkwame for the patch
21
29
Other
22
30
~~~~~
23
31
32
+ - Tests: avoid timeout-based CI failures. [Chris Adams]
33
+
34
+ These caused sporadic CI build failures and weren’t
35
+ otherwise testing actual functionality since we don’t have a
36
+ test which does something like SIGSTOP the test Solr server
37
+ long enough to confirm a timeout.
38
+
39
+ We’ll confirm that the timeout is passed through but
40
+ otherwise use the defaults.
41
+
42
+ - Update Travis CI badge in the README. [Chris Adams]
43
+
44
+ - Merge pull request #184 from atuljangra/master. [Chris Adams]
45
+
46
+ Correct documentation for `_update `
47
+
48
+ Thanks to @atuljangra for the patch!
49
+
50
+ - Merge branch 'master' of https://github.com/atuljangra/pysolr.
51
+ [atuljangra]
52
+
53
+ - Misleading comments. [atuljangra]
54
+
24
55
- Travis: use build matrix for regular and SolrCloud tests. [Chris
25
56
Adams]
26
57
Original file line number Diff line number Diff line change 55
55
56
56
__author__ = 'Daniel Lindsley, Joseph Kocherhans, Jacob Kaplan-Moss'
57
57
__all__ = ['Solr' ]
58
- __version__ = (3 , 4 , 0 )
58
+ __version__ = (3 , 5 , 0 )
59
59
60
60
61
61
def get_version ():
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = "pysolr" ,
9
- version = "3.4 .0" ,
9
+ version = "3.5 .0" ,
10
10
description = "Lightweight python wrapper for Apache Solr." ,
11
11
author = 'Daniel Lindsley' ,
12
12
You can’t perform that action at this time.
0 commit comments