File tree 6 files changed +38
-6
lines changed
elasticsearch-api/lib/elasticsearch/api
elasticsearch-transport/lib/elasticsearch/transport
elasticsearch-xpack/lib/elasticsearch/xpack
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
+
1
33
## 7.0.0.pre
2
34
3
35
* Added ` elastic_ruby_console ` executable
Original file line number Diff line number Diff line change 17
17
18
18
module Elasticsearch
19
19
module API
20
- VERSION = "7.0 .0"
20
+ VERSION = "7.1 .0"
21
21
end
22
22
end
Original file line number Diff line number Diff line change 17
17
18
18
module Elasticsearch
19
19
module Transport
20
- VERSION = "7.0 .0"
20
+ VERSION = "7.1 .0"
21
21
end
22
22
end
Original file line number Diff line number Diff line change 17
17
18
18
module Elasticsearch
19
19
module XPack
20
- VERSION = "7.0 .0"
20
+ VERSION = "7.1 .0"
21
21
end
22
22
end
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ Gem::Specification.new do |s|
40
40
41
41
s . required_ruby_version = '>= 1.9'
42
42
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'
45
45
46
46
s . add_development_dependency "bundler"
47
47
Original file line number Diff line number Diff line change 16
16
# under the License.
17
17
18
18
module Elasticsearch
19
- VERSION = "7.0 .0"
19
+ VERSION = "7.1 .0"
20
20
end
You can’t perform that action at this time.
0 commit comments