elasticsearch 8.1.2 → 8.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -10
- data/elasticsearch.gemspec +1 -1
- data/lib/elasticsearch/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6dfc81ae78b24729cb05459a3b56a343d6c333510f42f93dd8dbecfeebb2ca2e
|
4
|
+
data.tar.gz: 73be00750376671184b6875928e7f6dfe257e47c2c525cb0999ab8f498d01a8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 273b436f0ffda47c3ffddb12e4a92b3e55a49870635c52bf8e90697c79a0be081ff418c14b50c7b035ed028d53c31241486790f04f0c01bc868dcebce1e6236b
|
7
|
+
data.tar.gz: 9dfd5e198fde2d85aaf7efb755129f3585e5f4aa621977c7016091060d5fb24abb4bc2f545cc5153597a2fd0df0aa67ad61065735e6964fb40fccd060e189d79
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@ The `elasticsearch` library provides a Ruby client and API for [Elasticsearch](h
|
|
6
6
|
|
7
7
|
This gem is a wrapper for two separate libraries:
|
8
8
|
|
9
|
-
* [`
|
9
|
+
* [`elastic-transport`](https://github.com/elastic/elastic-transport-ruby/), which provides a low-level Ruby client for connecting to [Elastic](http://elasticsearch.com) services.
|
10
10
|
* [`elasticsearch-api`](https://github.com/elasticsearch/elasticsearch-ruby/tree/main/elasticsearch-api), which provides a Ruby API for the Elasticsearch RESTful API.
|
11
11
|
|
12
12
|
Install the `elasticsearch` package and use the API directly:
|
@@ -117,17 +117,12 @@ Elasticsearch::Client.new(
|
|
117
117
|
Please refer to the specific library documentation for details:
|
118
118
|
|
119
119
|
* **Transport**:
|
120
|
-
[[README]](https://github.com/
|
121
|
-
[[Documentation]](
|
120
|
+
[[README]](https://github.com/elastic/elastic-transport-ruby#elastic-transport)
|
121
|
+
[[Documentation]](https://rubydoc.info/github/elastic/elastic-transport-ruby/)
|
122
122
|
|
123
123
|
* **API**:
|
124
|
-
[[README]](https://github.com/
|
125
|
-
[[Documentation]](
|
126
|
-
|
127
|
-
|
128
|
-
## Development
|
129
|
-
|
130
|
-
You can run `rake -T` to check the test tasks. Use `COVERAGE=true` before running a test task to check the coverage with Simplecov.
|
124
|
+
[[README]](https://github.com/elastic/elasticsearch-ruby/tree/main/elasticsearch-api#elasticsearchapi)
|
125
|
+
[[Documentation]](https://rubydoc.info/gems/elasticsearch-api)
|
131
126
|
|
132
127
|
## License
|
133
128
|
|
data/elasticsearch.gemspec
CHANGED
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
|
|
46
46
|
s.required_ruby_version = '>= 2.5'
|
47
47
|
|
48
48
|
s.add_dependency 'elastic-transport', '8.0.0'
|
49
|
-
s.add_dependency 'elasticsearch-api', '8.
|
49
|
+
s.add_dependency 'elasticsearch-api', '8.2.0'
|
50
50
|
|
51
51
|
s.add_development_dependency 'bundler'
|
52
52
|
s.add_development_dependency 'byebug' unless defined?(JRUBY_VERSION) || defined?(Rubinius)
|
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: 8.
|
4
|
+
version: 8.2.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: 2022-
|
11
|
+
date: 2022-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: elastic-transport
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 8.
|
33
|
+
version: 8.2.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: 8.
|
40
|
+
version: 8.2.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|