chewy 8.0.1 → 8.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/CHANGELOG.md +72 -0
- data/README.md +3 -18
- data/lib/chewy/errors.rb +3 -0
- data/lib/chewy/fields/root.rb +6 -4
- data/lib/chewy/index/actions.rb +13 -11
- data/lib/chewy/index/adapter/object.rb +17 -0
- data/lib/chewy/index/adapter/orm.rb +20 -0
- data/lib/chewy/index/compiled.rb +235 -0
- data/lib/chewy/index/crutch.rb +12 -2
- data/lib/chewy/index/import/bulk_builder.rb +8 -5
- data/lib/chewy/index/import/progressbar.rb +79 -0
- data/lib/chewy/index/import/routine.rb +3 -2
- data/lib/chewy/index/import.rb +87 -20
- data/lib/chewy/index/mapping.rb +1 -0
- data/lib/chewy/index/witchcraft.rb +30 -19
- data/lib/chewy/index/wrapper.rb +1 -1
- data/lib/chewy/index.rb +2 -0
- data/lib/chewy/minitest/helpers.rb +0 -1
- data/lib/chewy/multi_search.rb +1 -1
- data/lib/chewy/rake_helper.rb +19 -2
- data/lib/chewy/rspec/helpers.rb +0 -1
- data/lib/chewy/search/parameters/runtime_mappings.rb +14 -0
- data/lib/chewy/search/request.rb +20 -4
- data/lib/chewy/search/scrolling.rb +14 -6
- data/lib/chewy/stash.rb +10 -6
- data/lib/chewy/strategy/delayed_sidekiq/worker.rb +1 -1
- data/lib/chewy/version.rb +1 -1
- data/lib/chewy.rb +1 -0
- metadata +6 -6
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chewy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.0
|
|
4
|
+
version: 8.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Toptal, LLC
|
|
8
8
|
- pyromaniac
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: activesupport
|
|
@@ -84,11 +83,13 @@ files:
|
|
|
84
83
|
- lib/chewy/index/adapter/object.rb
|
|
85
84
|
- lib/chewy/index/adapter/orm.rb
|
|
86
85
|
- lib/chewy/index/aliases.rb
|
|
86
|
+
- lib/chewy/index/compiled.rb
|
|
87
87
|
- lib/chewy/index/crutch.rb
|
|
88
88
|
- lib/chewy/index/import.rb
|
|
89
89
|
- lib/chewy/index/import/bulk_builder.rb
|
|
90
90
|
- lib/chewy/index/import/bulk_request.rb
|
|
91
91
|
- lib/chewy/index/import/journal_builder.rb
|
|
92
|
+
- lib/chewy/index/import/progressbar.rb
|
|
92
93
|
- lib/chewy/index/import/routine.rb
|
|
93
94
|
- lib/chewy/index/mapping.rb
|
|
94
95
|
- lib/chewy/index/observe.rb
|
|
@@ -147,6 +148,7 @@ files:
|
|
|
147
148
|
- lib/chewy/search/parameters/query.rb
|
|
148
149
|
- lib/chewy/search/parameters/request_cache.rb
|
|
149
150
|
- lib/chewy/search/parameters/rescore.rb
|
|
151
|
+
- lib/chewy/search/parameters/runtime_mappings.rb
|
|
150
152
|
- lib/chewy/search/parameters/script_fields.rb
|
|
151
153
|
- lib/chewy/search/parameters/search_after.rb
|
|
152
154
|
- lib/chewy/search/parameters/search_type.rb
|
|
@@ -186,7 +188,6 @@ licenses:
|
|
|
186
188
|
- MIT
|
|
187
189
|
metadata:
|
|
188
190
|
rubygems_mfa_required: 'true'
|
|
189
|
-
post_install_message:
|
|
190
191
|
rdoc_options: []
|
|
191
192
|
require_paths:
|
|
192
193
|
- lib
|
|
@@ -201,8 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
201
202
|
- !ruby/object:Gem::Version
|
|
202
203
|
version: '0'
|
|
203
204
|
requirements: []
|
|
204
|
-
rubygems_version:
|
|
205
|
-
signing_key:
|
|
205
|
+
rubygems_version: 4.0.12
|
|
206
206
|
specification_version: 4
|
|
207
207
|
summary: Elasticsearch ODM client wrapper
|
|
208
208
|
test_files: []
|