File tree 5 files changed +32
-5
lines changed
elasticsearch-api/lib/elasticsearch/api
elasticsearch-transport/lib/elasticsearch/transport
5 files changed +32
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.6
2
+
3
+ ### Client
4
+
5
+ * Added Manticore transport for JRuby platforms
6
+ * Fixed, that ` ServerError ` inherits from ` Transport::Error `
7
+ * Fix problems with gems on JRuby
8
+ * Added the ` send_get_body_as ` setting
9
+
10
+ ## API
11
+
12
+ * Added the "Verify Snapshot" API
13
+ * Added the "Upgrade Index" API
14
+ * Added support for the ` realtime ` parameter to the Term Vectors APIs
15
+ * Fixed ` delete_by_query ` example in documentation
16
+ * Added the support for ` metric ` URL parameter to the "Reroute" API
17
+ * Added the "Get Indices Info" API
18
+ * Added support for versioning for the "Put Script" and "Delete Script" APIs
19
+
20
+ ### Extensions
21
+
22
+ * Added, that ` wait_for_green ` timeout for test cluster is configurable with environment variable
23
+
24
+ ### Various
25
+
26
+ * Added Ruby 2.0.0 and updated 2.1 build specification in the Travis configuration
27
+
1
28
## 1.0.5
2
29
3
30
### Client
Original file line number Diff line number Diff line change 1
1
module Elasticsearch
2
2
module API
3
- VERSION = "1.0.5 "
3
+ VERSION = "1.0.6 "
4
4
end
5
5
end
Original file line number Diff line number Diff line change 1
1
module Elasticsearch
2
2
module Transport
3
- VERSION = "1.0.5 "
3
+ VERSION = "1.0.6 "
4
4
end
5
5
end
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ Gem::Specification.new do |s|
20
20
s . extra_rdoc_files = [ "README.md" , "LICENSE.txt" ]
21
21
s . rdoc_options = [ "--charset=UTF-8" ]
22
22
23
- s . add_dependency "elasticsearch-transport" , '1.0.5 '
24
- s . add_dependency "elasticsearch-api" , '1.0.5 '
23
+ s . add_dependency "elasticsearch-transport" , '1.0.6 '
24
+ s . add_dependency "elasticsearch-api" , '1.0.6 '
25
25
26
26
s . add_development_dependency "bundler" , "> 1"
27
27
s . add_development_dependency "rake"
Original file line number Diff line number Diff line change 1
1
module Elasticsearch
2
- VERSION = "1.0.5 "
2
+ VERSION = "1.0.6 "
3
3
end
You can’t perform that action at this time.
0 commit comments