elasticsearch 7.2.1 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +3 -16
- data/Gemfile +3 -16
- data/{LICENSE.txt → LICENSE} +0 -0
- data/README.md +1 -18
- data/Rakefile +3 -16
- data/elasticsearch.gemspec +6 -19
- data/lib/elasticsearch-ruby.rb +3 -16
- data/lib/elasticsearch.rb +3 -16
- data/lib/elasticsearch/version.rb +4 -17
- data/test/integration/client_integration_test.rb +3 -16
- data/test/test_helper.rb +3 -16
- data/test/unit/wrapper_gem_test.rb +3 -16
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9f346dc5362652460acdc52b80c347e4460f8895e6b49c221a79022977e426c
|
|
4
|
+
data.tar.gz: c8f476a3158d05d555cc2e38d8f0991091d27dd461aab0ff17dc988b45f0dd58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35c3719af46071769aeb6b2bb9d87a30dd75ec789b799a05f5e59c5837531d56d8427a92d0b9450c49722062e8198322fadd767455fa0edb4a559ed36d8f941c
|
|
7
|
+
data.tar.gz: 8d60cb8344cd6df33bc5244aab49faeeaa7468715ea1604bb93125991f133d977164c28710d56ed4c3b48743a0d174731416bc7a5971280afaef61be12749670
|
data/.gitignore
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
*.gem
|
|
19
6
|
*.rbc
|
data/Gemfile
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
source 'https://rubygems.org'
|
|
19
6
|
|
data/{LICENSE.txt → LICENSE}
RENAMED
|
File without changes
|
data/README.md
CHANGED
|
@@ -88,21 +88,4 @@ Please refer to the specific library documentation for details:
|
|
|
88
88
|
|
|
89
89
|
## License
|
|
90
90
|
|
|
91
|
-
This software is licensed under the Apache 2 license
|
|
92
|
-
|
|
93
|
-
Licensed to Elasticsearch B.V. under one or more contributor
|
|
94
|
-
license agreements. See the NOTICE file distributed with
|
|
95
|
-
this work for additional information regarding copyright
|
|
96
|
-
ownership. Elasticsearch B.V. licenses this file to you under
|
|
97
|
-
the Apache License, Version 2.0 (the "License"); you may
|
|
98
|
-
not use this file except in compliance with the License.
|
|
99
|
-
You may obtain a copy of the License at
|
|
100
|
-
|
|
101
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
102
|
-
|
|
103
|
-
Unless required by applicable law or agreed to in writing,
|
|
104
|
-
software distributed under the License is distributed on an
|
|
105
|
-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
106
|
-
KIND, either express or implied. See the License for the
|
|
107
|
-
specific language governing permissions and limitations
|
|
108
|
-
under the License.
|
|
91
|
+
This software is licensed under the [Apache 2 license](./LICENSE).
|
data/Rakefile
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
require "bundler/gem_tasks"
|
|
19
6
|
|
data/elasticsearch.gemspec
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
lib = File.expand_path('../lib', __FILE__)
|
|
19
6
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
@@ -35,13 +22,13 @@ Gem::Specification.new do |s|
|
|
|
35
22
|
s.require_paths = ["lib"]
|
|
36
23
|
s.bindir = "bin"
|
|
37
24
|
|
|
38
|
-
s.extra_rdoc_files = [ "README.md", "LICENSE
|
|
25
|
+
s.extra_rdoc_files = [ "README.md", "LICENSE" ]
|
|
39
26
|
s.rdoc_options = [ "--charset=UTF-8" ]
|
|
40
27
|
|
|
41
28
|
s.required_ruby_version = '>= 1.9'
|
|
42
29
|
|
|
43
|
-
s.add_dependency "elasticsearch-transport", '7.
|
|
44
|
-
s.add_dependency "elasticsearch-api", '7.
|
|
30
|
+
s.add_dependency "elasticsearch-transport", '7.3.0'
|
|
31
|
+
s.add_dependency "elasticsearch-api", '7.3.0'
|
|
45
32
|
|
|
46
33
|
s.add_development_dependency "bundler"
|
|
47
34
|
|
data/lib/elasticsearch-ruby.rb
CHANGED
|
@@ -1,18 +1,5 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
require 'elasticsearch'
|
data/lib/elasticsearch.rb
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
require "elasticsearch/version"
|
|
19
6
|
|
|
@@ -1,20 +1,7 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
module Elasticsearch
|
|
19
|
-
VERSION = "7.
|
|
6
|
+
VERSION = "7.3.0"
|
|
20
7
|
end
|
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
require 'test_helper'
|
|
19
6
|
require 'logger'
|
data/test/test_helper.rb
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
ELASTICSEARCH_HOSTS = if hosts = ENV['TEST_ES_SERVER'] || ENV['ELASTICSEARCH_HOSTS']
|
|
19
6
|
hosts.split(',').map do |host|
|
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
1
|
+
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
2
|
+
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
3
|
+
# See the LICENSE file in the project root for more information
|
|
17
4
|
|
|
18
5
|
require 'test_helper'
|
|
19
6
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticsearch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karel Minarik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: elasticsearch-transport
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 7.
|
|
19
|
+
version: 7.3.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 7.
|
|
26
|
+
version: 7.3.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: elasticsearch-api
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 7.
|
|
33
|
+
version: 7.3.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 7.
|
|
40
|
+
version: 7.3.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: bundler
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -272,11 +272,11 @@ executables:
|
|
|
272
272
|
extensions: []
|
|
273
273
|
extra_rdoc_files:
|
|
274
274
|
- README.md
|
|
275
|
-
- LICENSE
|
|
275
|
+
- LICENSE
|
|
276
276
|
files:
|
|
277
277
|
- ".gitignore"
|
|
278
278
|
- Gemfile
|
|
279
|
-
- LICENSE
|
|
279
|
+
- LICENSE
|
|
280
280
|
- README.md
|
|
281
281
|
- Rakefile
|
|
282
282
|
- bin/elastic_ruby_console
|