elastic-enterprise-search 8.1.0 → 8.2.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: bdfa7f9a297b7be12956c4afb18c566ef6362be6f80b7ddcdf210a63de35792b
4
- data.tar.gz: c0ea8e919e929a7a9a03dd183198d7a29f49b95a9fc1e044fb6d1c4becf87adf
3
+ metadata.gz: 5beefad27301e777c767b0759b154f6e0bba47db65e0e02cacd206f4ff2c2696
4
+ data.tar.gz: 86610a1a51529bf54c454e93f2977a1968887e3737e1bfd2ef058b255a1b1975
5
5
  SHA512:
6
- metadata.gz: 9bf7a70b4070b475c5929dee3dce93841db5150bd3502b1b22595ed037cc7f9fbb60e4ade158009af80059ee84f727c192663efd4e9913697bb5860110a327f5
7
- data.tar.gz: 11ce05ae809478b90e8980b43b0c28fdfa33d79bb3d398fcf832d1bdb25c7495600cde089bb9d448d3a39599e17484c59bce1704f8f4f0fc5fc362eb2215ce37
6
+ metadata.gz: f0e0e3f3bcf5994ea89f6dc399527c1a02b5b2699ed3af62fedf9d7bf62b32d2c475b104988190b7be5f1d1368ed73241f53392c6934663a76425648bfadf5f7
7
+ data.tar.gz: 691d3a79357db4880f777fd4a6975c9a434ade303037d7a94523d82e67266c553d7fded40e7f883b6e283d438b7a66d8d8dce7a72a48c4387c65b746c359aa4b
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  - job:
3
- name: elastic+enterprise-search-ruby+7.15
4
- display-name: 'elastic / enterprise-search-ruby # 7.15'
5
- description: Testing the enterprise-search-ruby 7.15 branch.
3
+ name: elastic+enterprise-search-ruby+7.17
4
+ display-name: 'elastic / enterprise-search-ruby # 7.17'
5
+ description: Testing the enterprise-search-ruby 7.17 branch.
6
6
  junit_results: "*-junit.xml"
7
7
  parameters:
8
8
  - string:
9
9
  name: branch_specifier
10
- default: refs/heads/7.15
10
+ default: refs/heads/7.17
11
11
  description: the Git branch specifier to build (<branchName>, <tagName>,
12
12
  <commitId>, etc.)
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  - job:
3
- name: elastic+enterprise-search-ruby+7.16
4
- display-name: 'elastic / enterprise-search-ruby # 7.16'
5
- description: Testing the enterprise-search-ruby 7.16 branch.
3
+ name: elastic+enterprise-search-ruby+8.0
4
+ display-name: 'elastic / enterprise-search-ruby # 8.0'
5
+ description: Testing the enterprise-search-ruby 8.0 branch.
6
6
  junit_results: "*-junit.xml"
7
7
  parameters:
8
8
  - string:
9
9
  name: branch_specifier
10
- default: refs/heads/7.16
10
+ default: refs/heads/8.0
11
11
  description: the Git branch specifier to build (<branchName>, <tagName>,
12
12
  <commitId>, etc.)
@@ -54,6 +54,7 @@ docker run \
54
54
  --env "elasticsearch.ssl.certificate=/usr/share/app-search/config/certs/testnode.crt" \
55
55
  --env "elasticsearch.ssl.certificate_authority=/usr/share/app-search/config/certs/ca.crt" \
56
56
  --env "elasticsearch.ssl.key=/usr/share/app-search/config/certs/testnode.key" \
57
+ --env "ELASTICSEARCH_SEARCH_API=true" \
57
58
  --volume $ssl_cert:/usr/share/app-search/config/certs/testnode.crt \
58
59
  --volume $ssl_key:/usr/share/app-search/config/certs/testnode.key \
59
60
  --volume $ssl_ca:/usr/share/app-search/config/certs/ca.crt \
data/.ci/test-matrix.yml CHANGED
@@ -5,7 +5,7 @@ RUBY_VERSION:
5
5
  - 2.7
6
6
 
7
7
  STACK_VERSION:
8
- - 8.1-SNAPSHOT
8
+ - 8.2.0-SNAPSHOT
9
9
 
10
10
  SERVICE:
11
11
  - appsearch
@@ -336,6 +336,27 @@ client.put_adaptive_relevance_settings(engine_name, body: body)
336
336
  client.refresh_adaptive_relevance_update_process(engine_name, adaptive_relevance_suggestion_type: 'curation')
337
337
  ----------------------------
338
338
 
339
+ === Elasticsearch Search
340
+
341
+ Utilize the API to passthrough and execute raw Elasticsearch queries against the indices that power Enterprise Search engines.
342
+
343
+ [source,rb]
344
+ ----------------------------
345
+ es_request = { body: { query: { bool: { must: { term: { title: 'test' } } } } } }
346
+ client.search_es_search(engine_name, body: { request: es_request })
347
+ ----------------------------
348
+
349
+ === Search Explain
350
+
351
+ Submit a search and retrieve an Elasticsearch query.
352
+
353
+ [source,rb]
354
+ ----------------------------
355
+ response = client.search_explain(engine_name, body: { query: 'test' })
356
+ response.body['query_string']
357
+ # => "GET enterprise-search-engine-app-search-explain/_search"
358
+ ----------------------------
359
+
339
360
  === Other API Endpoints
340
361
 
341
362
  [source,rb]
@@ -0,0 +1,31 @@
1
+ [[release_notes_82]]
2
+ === 8.2.0 Release notes
3
+
4
+ [discrete]
5
+ ==== General
6
+
7
+ - Tested with Elastic Enterprise Search API version 8.2.0.
8
+ - Tested with Ruby 2.7, 3.0, 3.1, JRuby 9.3. Older versions of Ruby have reached end of life and been removed from the testing matrices. Minimum required Ruby version is Ruby 2.6 to keep compatibility with JRuby 9.3, but it may be upgraded to 2.7 once JRuby 9.4 comes out.
9
+
10
+ [discrete]
11
+ ==== App Search
12
+ [discrete]
13
+ ==== New APIs
14
+
15
+ * Adds Elasticsearch Search API (In Technical Preview): Utilize the API to passthrough and execute raw Elasticsearch queries against the indices that power Enterprise Search engines.
16
+
17
+ +
18
+ [source,rb]
19
+ ----------------------------
20
+ es_request = { body: { query: { bool: { must: { term: { title: 'test' } } } } } }
21
+ client.search_es_search(engine_name, body: { request: es_request })
22
+ ----------------------------
23
+
24
+ * Adds Search Explain API: Submit a search and retrieve an Elasticsearch query.
25
+ +
26
+ [source,rb]
27
+ ----------------------------
28
+ response = client.search_explain(engine_name, body: { query: 'test' })
29
+ response.body['query_string']
30
+ # => "GET enterprise-search-engine-app-search-explain/_search"
31
+ ----------------------------
@@ -3,6 +3,8 @@
3
3
 
4
4
  [discrete]
5
5
  === 8.x
6
+
7
+ * <<release_notes_82, 8.2.0 Release Notes>>
6
8
  * <<release_notes_81, 8.1.0 Release Notes>>
7
9
  * <<release_notes_80, 8.0.0 Release Notes>>
8
10
 
@@ -18,6 +20,7 @@
18
20
  * <<release_notes_711, 7.11.0 Release Notes>>
19
21
  * <<release_notes_710, 7.10.0.beta.1 Release Notes>>
20
22
 
23
+ include::82.asciidoc[]
21
24
  include::81.asciidoc[]
22
25
  include::80.asciidoc[]
23
26
  include::717.asciidoc[]
@@ -47,7 +47,7 @@ Gem::Specification.new do |s|
47
47
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
48
48
  s.require_paths = ['lib']
49
49
 
50
- s.add_dependency 'elastic-transport', '8.0.0.pre.1'
50
+ s.add_dependency 'elastic-transport', '8.0.0.pre.3'
51
51
  s.add_runtime_dependency 'jwt', '>= 1.5', '< 3.0'
52
52
  s.add_development_dependency 'awesome_print'
53
53
  s.add_development_dependency 'byebug' unless defined?(JRUBY_VERSION)
@@ -29,7 +29,7 @@ module Elastic
29
29
  # @option arguments [String] :search_suggestion_query Query to obtain suggestions (*Required*)
30
30
  # @option arguments [Hash] :body
31
31
  # @option body :page
32
- # @option body [string] :filters
32
+ # @option body [Hash] :filters
33
33
  # @option arguments [Hash] :headers optional HTTP headers to send with the request
34
34
  #
35
35
  # @see https://www.elastic.co/guide/en/app-search/current/adaptive-relevance-api-reference.html#adaptive-relevance-api-get-engine-adaptive-relevance-suggestions-query
@@ -31,7 +31,7 @@ module Elastic
31
31
  # @option body [Array<string>] :queries List of affected search queries
32
32
  # @option body [Array<string>] :promoted List of promoted document IDs
33
33
  # @option body [Array<string>] :hidden List of hidden document IDs
34
- # @option body [Hash] :suggestion
34
+ # @option body :suggestion
35
35
  # @option arguments [Hash] :headers optional HTTP headers to send with the request
36
36
  #
37
37
  # @see https://www.elastic.co/guide/en/app-search/current/curations.html#curations-create
@@ -28,7 +28,7 @@ module Elastic
28
28
  # @param [Hash] arguments endpoint arguments
29
29
  # @option arguments [Hash] :body
30
30
  # @option body :page
31
- # @option body [string] :filters
31
+ # @option body [Hash] :filters
32
32
  # @option arguments [Hash] :headers optional HTTP headers to send with the request
33
33
  #
34
34
  # @see https://www.elastic.co/guide/en/app-search/current/adaptive-relevance-api-reference.html#adaptive-relevance-api-get-engine-adaptive-relevance-suggestions
@@ -27,7 +27,7 @@ module Elastic
27
27
  # @param [String] engine_name Name of the engine (*Required*)
28
28
  # @param [Hash] arguments endpoint arguments
29
29
  # @option arguments [Hash] :body (Required: curation)
30
- # @option body [Hash] :curation (Required: )
30
+ # @option body [Hash] :curation
31
31
  # @option arguments [Hash] :headers optional HTTP headers to send with the request
32
32
  #
33
33
  # @see https://www.elastic.co/guide/en/app-search/current/adaptive-relevance-api-reference.html#adaptive-relevance-api-put-engine-adaptive-relevance-settings
@@ -32,7 +32,7 @@ module Elastic
32
32
  # @option body [Array<string>] :queries List of affected search queries
33
33
  # @option body [Array<string>] :promoted List of promoted document IDs
34
34
  # @option body [Array<string>] :hidden List of hidden document IDs
35
- # @option body [Hash] :suggestion
35
+ # @option body :suggestion
36
36
  # @option arguments [Hash] :headers optional HTTP headers to send with the request
37
37
  #
38
38
  # @see https://www.elastic.co/guide/en/app-search/current/curations.html#curations-update
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to Elasticsearch B.V. under one or more contributor
4
+ # license agreements. See the NOTICE file distributed with
5
+ # this work for additional information regarding copyright
6
+ # ownership. Elasticsearch B.V. licenses this file to you under
7
+ # the Apache License, Version 2.0 (the "License"); you may
8
+ # not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ module Elastic
21
+ module EnterpriseSearch
22
+ module AppSearch
23
+ module Actions
24
+ # ElasticsearchSearch - Run a search
25
+ # Execute the provided Elasticsearch search query against an App Search Engine
26
+ #
27
+ # @param [String] engine_name Name of the engine (*Required*)
28
+ # @param [Hash] arguments endpoint arguments
29
+ # @option arguments [Hash] :body (Required: request)
30
+ # @option body :request
31
+ # @option body :analytics
32
+ # @option arguments [Hash] :headers optional HTTP headers to send with the request
33
+ #
34
+ # @see https://www.elastic.co/guide/en/app-search/current/elasticsearch-search-api-reference.html
35
+ #
36
+ def search_es_search(engine_name, arguments = {})
37
+ raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
38
+ raise ArgumentError, "Required parameter 'body (request)' missing" unless arguments[:body]
39
+
40
+ body = arguments.delete(:body) || {}
41
+ headers = arguments.delete(:headers) || {}
42
+ request(
43
+ :post,
44
+ "api/as/v0/engines/#{engine_name}/elasticsearch/_search/",
45
+ arguments,
46
+ body,
47
+ headers
48
+ )
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,61 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to Elasticsearch B.V. under one or more contributor
4
+ # license agreements. See the NOTICE file distributed with
5
+ # this work for additional information regarding copyright
6
+ # ownership. Elasticsearch B.V. licenses this file to you under
7
+ # the Apache License, Version 2.0 (the "License"); you may
8
+ # not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ module Elastic
21
+ module EnterpriseSearch
22
+ module AppSearch
23
+ module Actions
24
+ # SearchExplain - Retrieve the search query
25
+ # Submit a search and retrieve an Elasticsearch query
26
+ #
27
+ # @param [String] engine_name Name of the engine (*Required*)
28
+ # @param [Hash] arguments endpoint arguments
29
+ # @option arguments [Hash] :body (Required: query)
30
+ # @option body [string] :query
31
+ # @option body :analytics
32
+ # @option body :boost
33
+ # @option body :facets
34
+ # @option body :filters
35
+ # @option body :group
36
+ # @option body :page
37
+ # @option body :result_fields
38
+ # @option body :search_fields
39
+ # @option body :sort
40
+ # @option arguments [Hash] :headers optional HTTP headers to send with the request
41
+ #
42
+ # @see https://www.elastic.co/guide/en/app-search/current/search-explain.html
43
+ #
44
+ def search_explain(engine_name, arguments = {})
45
+ raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
46
+ raise ArgumentError, "Required parameter 'body (query)' missing" unless arguments[:body]
47
+
48
+ body = arguments.delete(:body) || {}
49
+ headers = arguments.delete(:headers) || {}
50
+ request(
51
+ :post,
52
+ "api/as/v0/engines/#{engine_name}/search_explain/",
53
+ arguments,
54
+ body,
55
+ headers
56
+ )
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
@@ -26,7 +26,7 @@ module Elastic
26
26
  # @param [Hash] arguments endpoint arguments
27
27
  # @option arguments [Hash] :headers optional HTTP headers to send with the request
28
28
  #
29
- # @see https://www.elastic.co/guide/en/enterprise-search/current/management-apis.html
29
+ # @see https://www.elastic.co/guide/en/enterprise-search/current/monitoring-apis.html#monitoring-apis-version-api
30
30
  #
31
31
  def version(arguments = {})
32
32
  headers = arguments.delete(:headers) || {}
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Elastic
21
21
  module EnterpriseSearch
22
- VERSION = '8.1.0'
22
+ VERSION = '8.2.0'
23
23
  end
24
24
  end
@@ -0,0 +1,63 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
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.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ require_relative "#{__dir__}/app_search_helper.rb"
21
+
22
+ describe Elastic::EnterpriseSearch::AppSearch::Client do
23
+ context 'Elasticsearch Search' do
24
+ let(:engine_name) { 'elasticsearch-books' }
25
+ let(:documents) do
26
+ [
27
+ { title: 'Beasts Before Us', author: 'Elsa Panciroli' },
28
+ { title: 'The Rise and Fall of the Dinosaurs', author: 'Steve Brusatte' },
29
+ { title: 'Raptor Red', author: 'Robert T. Bakker' },
30
+ { title: 'The Earth: A biography of life', author: 'Dr. Elsa Panciroli' }
31
+ ]
32
+ end
33
+ let(:api_key_name) { 'my-api-key' }
34
+
35
+ before do
36
+ # Use API Key in client, save a backup to restore original auth:
37
+ @old_client = @client.dup
38
+ api_key_body = { name: api_key_name, type: 'private', read: true, write: true, access_all_engines: true }
39
+ response = client.create_api_key(body: api_key_body)
40
+ @client.http_auth = response.body['key']
41
+ create_engine(engine_name)
42
+ client.index_documents(engine_name, documents: documents)
43
+ sleep 1
44
+ end
45
+
46
+ after do
47
+ # Restore original client:
48
+ @client = @old_client
49
+ delete_engines
50
+ client.delete_api_key(api_key_name: api_key_name)
51
+ end
52
+
53
+ it 'performs an ES search' do
54
+ es_request = { body: { query: { bool: { must: { term: { author: 'panciroli' } } } } } }
55
+ response = client.search_es_search(engine_name, body: { request: es_request })
56
+ expect(response.status).to eq 200
57
+ expect(response.body['hits']['hits'].count).to eq 2
58
+ expect do
59
+ response.body['hits']['hits'].map { |a| a['_source']['author'] } == ['Elsa Panciroli', 'Dr. Elsa Panciroli']
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,59 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
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.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ require_relative "#{__dir__}/app_search_helper.rb"
21
+
22
+ describe Elastic::EnterpriseSearch::AppSearch::Client do
23
+ context 'Elasticsearch Search' do
24
+ let(:engine_name) { 'app-search-explain' }
25
+ let(:documents) do
26
+ [
27
+ { title: 'Beasts Before Us', author: 'Elsa Panciroli' },
28
+ { title: 'The Rise and Fall of the Dinosaurs', author: 'Steve Brusatte' },
29
+ { title: 'Raptor Red', author: 'Robert T. Bakker' },
30
+ { title: 'The Earth: A biography of life', author: 'Dr. Elsa Panciroli' }
31
+ ]
32
+ end
33
+ let(:api_key_name) { 'my-api-key' }
34
+
35
+ before do
36
+ # Use API Key in client, save a backup to restore original auth:
37
+ @old_client = @client.dup
38
+ api_key_body = { name: api_key_name, type: 'private', read: true, write: true, access_all_engines: true }
39
+ response = client.create_api_key(body: api_key_body)
40
+ @client.http_auth = response.body['key']
41
+ create_engine(engine_name)
42
+ client.index_documents(engine_name, documents: documents)
43
+ sleep 1
44
+ end
45
+
46
+ after do
47
+ # Restore original client:
48
+ @client = @old_client
49
+ delete_engines
50
+ client.delete_api_key(api_key_name: api_key_name)
51
+ end
52
+
53
+ it 'explains a Search query' do
54
+ response = client.search_explain(engine_name, body: { query: 'Raptor Red' })
55
+ expect(response.status).to eq 200
56
+ expect(response.body['query_string']).to eq 'GET enterprise-search-engine-app-search-explain/_search'
57
+ end
58
+ end
59
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elastic-enterprise-search
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.0
4
+ version: 8.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Briano
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 8.0.0.pre.1
19
+ version: 8.0.0.pre.3
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: 8.0.0.pre.1
26
+ version: 8.0.0.pre.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jwt
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -164,8 +164,8 @@ files:
164
164
  - ".ci/functions/imports.sh"
165
165
  - ".ci/functions/wait-for-container.sh"
166
166
  - ".ci/jobs/defaults.yml"
167
- - ".ci/jobs/elastic+enterprise-search-ruby+7.15.yml"
168
- - ".ci/jobs/elastic+enterprise-search-ruby+7.16.yml"
167
+ - ".ci/jobs/elastic+enterprise-search-ruby+7.17.yml"
168
+ - ".ci/jobs/elastic+enterprise-search-ruby+8.0.yml"
169
169
  - ".ci/jobs/elastic+enterprise-search-ruby+main.yml"
170
170
  - ".ci/jobs/elastic+enterprise-search-ruby+pull-request.yml"
171
171
  - ".ci/make.sh"
@@ -207,6 +207,7 @@ files:
207
207
  - docs/guide/release_notes/717.asciidoc
208
208
  - docs/guide/release_notes/80.asciidoc
209
209
  - docs/guide/release_notes/81.asciidoc
210
+ - docs/guide/release_notes/82.asciidoc
210
211
  - docs/guide/release_notes/index.asciidoc
211
212
  - docs/guide/workplace-search-api.asciidoc
212
213
  - elastic-enterprise-search.gemspec
@@ -290,6 +291,8 @@ files:
290
291
  - lib/elastic/app-search/api/reset_search_settings.rb
291
292
  - lib/elastic/app-search/api/schema.rb
292
293
  - lib/elastic/app-search/api/search.rb
294
+ - lib/elastic/app-search/api/search_es_search.rb
295
+ - lib/elastic/app-search/api/search_explain.rb
293
296
  - lib/elastic/app-search/api/search_settings.rb
294
297
  - lib/elastic/app-search/api/synonym_set.rb
295
298
  - lib/elastic/app-search/api/top_clicks_analytics.rb
@@ -366,7 +369,9 @@ files:
366
369
  - spec/integration/app-search/crawler_user_agent_spec.rb
367
370
  - spec/integration/app-search/curations_spec.rb
368
371
  - spec/integration/app-search/documents_spec.rb
372
+ - spec/integration/app-search/elasticsearch_search_spec.rb
369
373
  - spec/integration/app-search/engines_spec.rb
374
+ - spec/integration/app-search/explain_search_spec.rb
370
375
  - spec/integration/app-search/log_clickthrough_spec.rb
371
376
  - spec/integration/app-search/meta_engines_spec.rb
372
377
  - spec/integration/app-search/query_suggestion_spec.rb