elasticsearch 7.0.0 → 7.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fd5f1e39ad8a2f30dd4aba0e84cbebc0285d661e6a9614f6adf33277d40730b
4
- data.tar.gz: 1a16397b1cdc34a0201aa231b7fad88aea7eaafeeefd7599269726d0f12b2896
3
+ metadata.gz: 89c5a9a719fabbe7d5bd4c1e1c98ae686e7da2552689213fafc49d4ade5a8c62
4
+ data.tar.gz: 06ac4a280af9bd879e62bf8d244d046b2b5238631427487198fa9fd0fa4e9ca7
5
5
  SHA512:
6
- metadata.gz: bc13393d3c76067f95f2eabbe2f21f572a8522de665f9e21f2ecd812726e6da83d55040c449d3c42eec699e91bef2d6ce3adb7897d41ea40e3b93d4dd60e7c0e
7
- data.tar.gz: 2085b9cdf9c66e9afc3a2b1ad113136ed362f6138fc90310f54cd9f809656ebb00c79c024c8514bed37a980a5ff80ce18c424b933e2d8699455c101d64c30f10
6
+ metadata.gz: 793d00f82d71ec2b909d48cccd51993a53a5c937584fd5c1ee8c083754fcd712fe19a002bbd09113de5577a082947885528319b972b304dec6dcbc4a876b6324
7
+ data.tar.gz: 19d977143f99755f022b04afd534951c303767b5e7d7436b12e17412aabc9e5150d33eaa41af77f3fa9de117d305f7d1dfce3dd43e9e9f801efcb4d0c20fca3a
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Elasticsearch
2
2
 
3
- The `elasticsearch` library provides a Ruby client and API for [Elasticsearch](http://elasticsearch.org).
3
+ The `elasticsearch` library provides a Ruby client and API for [Elasticsearch](http://elasticsearch.com).
4
4
 
5
5
  Features overview:
6
6
 
@@ -55,7 +55,7 @@ or install it from a source code checkout:
55
55
  This library is a wrapper for two separate libraries:
56
56
 
57
57
  * [`elasticsearch-transport`](https://github.com/elasticsearch/elasticsearch-ruby/tree/master/elasticsearch-transport),
58
- which provides a low-level Ruby client for connecting to an [Elasticsearch](http://elasticsearch.org) cluster
58
+ which provides a low-level Ruby client for connecting to an [Elasticsearch](http://elasticsearch.com) cluster
59
59
  * [`elasticsearch-api`](https://github.com/elasticsearch/elasticsearch-ruby/tree/master/elasticsearch-api),
60
60
  which provides a Ruby API for the Elasticsearch RESTful API
61
61
 
@@ -89,16 +89,19 @@ Please refer to the specific library documentation for details:
89
89
 
90
90
  This software is licensed under the Apache 2 license, quoted below.
91
91
 
92
- Copyright (c) 2013 Elasticsearch <http://www.elasticsearch.org>
93
-
94
- Licensed under the Apache License, Version 2.0 (the "License");
95
- you may not use this file except in compliance with the License.
92
+ Licensed to Elasticsearch B.V. under one or more contributor
93
+ license agreements. See the NOTICE file distributed with
94
+ this work for additional information regarding copyright
95
+ ownership. Elasticsearch B.V. licenses this file to you under
96
+ the Apache License, Version 2.0 (the "License"); you may
97
+ not use this file except in compliance with the License.
96
98
  You may obtain a copy of the License at
97
-
98
- http://www.apache.org/licenses/LICENSE-2.0
99
-
100
- Unless required by applicable law or agreed to in writing, software
101
- distributed under the License is distributed on an "AS IS" BASIS,
102
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
103
- See the License for the specific language governing permissions and
104
- limitations under the License.
99
+
100
+ http://www.apache.org/licenses/LICENSE-2.0
101
+
102
+ Unless required by applicable law or agreed to in writing,
103
+ software distributed under the License is distributed on an
104
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
105
+ KIND, either express or implied. See the License for the
106
+ specific language governing permissions and limitations
107
+ under the License.
@@ -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
 
@@ -16,5 +16,5 @@
16
16
  # under the License.
17
17
 
18
18
  module Elasticsearch
19
- VERSION = "7.0.0"
19
+ VERSION = "7.1.0"
20
20
  end
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.0.0
4
+ version: 7.1.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-04-30 00:00:00.000000000 Z
11
+ date: 2019-05-22 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.0.0
19
+ version: 7.1.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.0.0
26
+ version: 7.1.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.0.0
33
+ version: 7.1.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.0.0
40
+ version: 7.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement