File tree Expand file tree Collapse file tree 6 files changed +38
-6
lines changed
elasticsearch-api/lib/elasticsearch/api
elasticsearch-transport/lib/elasticsearch/transport
elasticsearch-xpack/lib/elasticsearch/xpack Expand file tree Collapse file tree 6 files changed +38
-6
lines changed Original file line number Diff line number Diff line change 1+ ## 7.1.0
2+
3+ ### Client
4+
5+ * Update elasticsearch-transport README
6+ * Use default port when host and protocol are specified but no port
7+ * Verify that we have a response object before checking its status
8+ * Make code more succinct for supporting host with path and no port
9+ * Support options specified with String keys
10+ * Update elasticsearch-transport/lib/elasticsearch/transport/client.rb
11+ * Add tests showing IPv6 host specified when creating client
12+
13+ ### API
14+
15+ * Update links in elasticsearch-api README
16+
17+ ### DSL
18+
19+ * Update links in elasticsearch-dsl README
20+ * Allow Bool query and Bool filter methods to take objects as arguments
21+ * Edit tests on bool query / filter to match context
22+
23+ ### EXT:7.1.0
24+
25+ * Update elasticsearch-ext README
26+
27+ ### XPACK
28+
29+ * Update elasticsearch-xpack README
30+ * Minor formatting fix
31+ * Remove puts line
32+
133## 7.0.0.pre
234
335* Added ` elastic_ruby_console ` executable
Original file line number Diff line number Diff line change 1717
1818module Elasticsearch
1919 module API
20- VERSION = "7.0 .0"
20+ VERSION = "7.1 .0"
2121 end
2222end
Original file line number Diff line number Diff line change 1717
1818module Elasticsearch
1919 module Transport
20- VERSION = "7.0 .0"
20+ VERSION = "7.1 .0"
2121 end
2222end
Original file line number Diff line number Diff line change 1717
1818module Elasticsearch
1919 module XPack
20- VERSION = "7.0 .0"
20+ VERSION = "7.1 .0"
2121 end
2222end
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ Gem::Specification.new do |s|
4040
4141 s . required_ruby_version = '>= 1.9'
4242
43- s . add_dependency "elasticsearch-transport" , '7.0 .0'
44- s . add_dependency "elasticsearch-api" , '7.0 .0'
43+ s . add_dependency "elasticsearch-transport" , '7.1 .0'
44+ s . add_dependency "elasticsearch-api" , '7.1 .0'
4545
4646 s . add_development_dependency "bundler"
4747
Original file line number Diff line number Diff line change 1616# under the License.
1717
1818module Elasticsearch
19- VERSION = "7.0 .0"
19+ VERSION = "7.1 .0"
2020end
You can’t perform that action at this time.
0 commit comments