elasticsearch-persistence 7.1.0 → 7.1.1
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/Gemfile +4 -4
- data/README.md +3 -4
- data/elasticsearch-persistence.gemspec +1 -1
- data/lib/elasticsearch/persistence/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: e15cbd4e760032736bf93156a49797378af6c27038bc36ece147ebfd0690119e
|
|
4
|
+
data.tar.gz: 013e642055bbcd49011f898ad962d95b048c92e2d6d67ed2ff94cb595bac6724
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5ce4a1c8ec4fb19f1d45aefe10306b1e0dde3e42d268fc316336fed613371fd9d8bf597a3e22bf72d8a3f9e131d29f0df65c3390979a1c9791501aefd8996e4
|
|
7
|
+
data.tar.gz: a276526458d1a143248c2ce549ec46410cfe774555e79fcbc2783313e54fac2c5765d9142e8fb81bfce08efcac94affdcabe8af9c8a9eb0f139c295daf45638c
|
data/Gemfile
CHANGED
|
@@ -20,11 +20,11 @@ source 'https://rubygems.org'
|
|
|
20
20
|
# Specify your gem's dependencies in elasticsearch-persistence.gemspec
|
|
21
21
|
gemspec
|
|
22
22
|
|
|
23
|
-
gem 'elasticsearch-model',
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
gem 'elasticsearch-model',
|
|
24
|
+
path: File.expand_path('../elasticsearch-model', __dir__),
|
|
25
|
+
require: false
|
|
26
26
|
|
|
27
27
|
group :development, :testing do
|
|
28
|
-
gem 'rspec'
|
|
29
28
|
gem 'pry-nav'
|
|
29
|
+
gem 'rspec'
|
|
30
30
|
end
|
data/README.md
CHANGED
|
@@ -4,10 +4,9 @@ Persistence layer for Ruby domain objects in Elasticsearch, using the Repository
|
|
|
4
4
|
|
|
5
5
|
## Compatibility
|
|
6
6
|
|
|
7
|
-
This library is compatible with Ruby
|
|
7
|
+
This library is compatible with Ruby 2.4 and higher.
|
|
8
8
|
|
|
9
|
-
The library version numbers follow the Elasticsearch major versions
|
|
10
|
-
is compatible with the Elasticsearch `master` branch, therefore, with the next major version.
|
|
9
|
+
The library version numbers follow the Elasticsearch major versions. The `master` branch is compatible with the latest Elasticsearch stack stable release.
|
|
11
10
|
|
|
12
11
|
| Rubygem | | Elasticsearch |
|
|
13
12
|
|:-------------:|:-:| :-----------: |
|
|
@@ -15,7 +14,7 @@ is compatible with the Elasticsearch `master` branch, therefore, with the next m
|
|
|
15
14
|
| 2.x | → | 2.x |
|
|
16
15
|
| 5.x | → | 5.x |
|
|
17
16
|
| 6.x | → | 6.x |
|
|
18
|
-
| master | → |
|
|
17
|
+
| master | → | 7.x |
|
|
19
18
|
|
|
20
19
|
## Installation
|
|
21
20
|
|
|
@@ -41,7 +41,7 @@ Gem::Specification.new do |s|
|
|
|
41
41
|
s.required_ruby_version = ">= 1.9.3"
|
|
42
42
|
|
|
43
43
|
s.add_dependency "elasticsearch", '~> 7'
|
|
44
|
-
s.add_dependency "elasticsearch-model", '7.1.
|
|
44
|
+
s.add_dependency "elasticsearch-model", '7.1.1'
|
|
45
45
|
s.add_dependency "activesupport", '> 4'
|
|
46
46
|
s.add_dependency "activemodel", '> 4'
|
|
47
47
|
s.add_dependency "hashie"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticsearch-persistence
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.1.
|
|
4
|
+
version: 7.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karel Minarik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: elasticsearch
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 7.1.
|
|
33
|
+
version: 7.1.1
|
|
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.1.
|
|
40
|
+
version: 7.1.1
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: activesupport
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|