elastic-app-search 7.9.0 → 7.10.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/README.md +11 -1
- data/lib/elastic/app-search/version.rb +1 -1
- data/spec/documents_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26d0afae8c9cdefaf96ebf4ba72cbda4509f87327a68badb058fe90b22a772eb
|
|
4
|
+
data.tar.gz: 3edf7e70985084dc6771e1ec7de4a22848bc118ecf54fef8e8b7454228cebed8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbafac3cc2a8902a958a3a95a693230671c0ac2fcfbf255f296e5010b4f1659285fee4306e10a92d92b2b5f26743714043c52b0232deb519796f947a09a8a36a
|
|
7
|
+
data.tar.gz: 4d6b6a32d0b9b3cdd610898c596a83dc4ea6bcc4679b9424d4d9f1e62a66d13a11c9999ae6b9d7d523e34fc89a00bbc60c065d5dadcfaf2e0211191e373627ba
|
data/README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
> **⚠️ This client is deprecated ⚠️**
|
|
2
|
+
>
|
|
3
|
+
> As of Enterprise Search version 7.10.0, we are directing users to the new [Enterprise Search Ruby Client](https://github.com/elastic/enterprise-search-ruby) and
|
|
4
|
+
> deprecating this client.
|
|
5
|
+
>
|
|
6
|
+
> This client will be compatible with all Enterprise Search 7.x releases, but will not be compatible with 8.x releases. Our development effort on this project will
|
|
7
|
+
> be limited to bug fixes. All future enhancements will be focused on the Enterprise Search Ruby Client.
|
|
8
|
+
>
|
|
9
|
+
> Thank you! - Elastic
|
|
10
|
+
|
|
1
11
|
<p align="center"><img src="https://github.com/elastic/app-search-ruby/blob/master/logo-app-search.png?raw=true" alt="Elastic App Search Logo"></p>
|
|
2
12
|
|
|
3
13
|
<p align="center"><a href="https://circleci.com/gh/elastic/app-search-ruby"><img src="https://circleci.com/gh/elastic/app-search-ruby.svg?style=svg" alt="CircleCI build"></a></p>
|
|
@@ -25,7 +35,7 @@ To install the gem, execute:
|
|
|
25
35
|
gem install elastic-app-search
|
|
26
36
|
```
|
|
27
37
|
|
|
28
|
-
Or place `gem 'elastic-app-search', '~> 7.
|
|
38
|
+
Or place `gem 'elastic-app-search', '~> 7.10.0'` in your `Gemfile` and run `bundle install`.
|
|
29
39
|
|
|
30
40
|
## Versioning
|
|
31
41
|
|
data/spec/documents_spec.rb
CHANGED
|
@@ -71,7 +71,7 @@ describe Elastic::AppSearch::Client::Documents do
|
|
|
71
71
|
it 'should return respective errors in an array of document processing hashes' do
|
|
72
72
|
expected = [
|
|
73
73
|
{ 'id' => anything, 'errors' => [] },
|
|
74
|
-
{ 'id' => anything, 'errors' => [
|
|
74
|
+
{ 'id' => anything, 'errors' => [anything] },
|
|
75
75
|
]
|
|
76
76
|
expect(subject).to(match(expected))
|
|
77
77
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elastic-app-search
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Quin Hoxie
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: awesome_print
|