activerecord-postgres_pub_sub 3.0.0 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Appraisals +4 -0
- data/CHANGELOG.md +4 -0
- data/activerecord-postgres_pub_sub.gemspec +1 -1
- data/gemfiles/activerecord_7.2.gemfile +7 -0
- data/lib/activerecord/postgres_pub_sub/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac9d3e5f76638e39f57309154e7f0247542900d890198c34b97f7c4a7fe59617
|
4
|
+
data.tar.gz: 12aecc1fb055da99b65bff2485013098fc21787acec507448eed4a74228f7f7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b73681b59103dca8497335bd2ce30a0af8c64a0b6bd2232af7669290f17d19c6752965c80c7283ae2dac8b1ef97433f085cb4ad63227c9fbf7264dc948b91ce
|
7
|
+
data.tar.gz: 559a89e6ce84ec81e5d57d4e0106746702aa0a7556e0d393e1c3c7ebe91fc25e79ea8690bc9c7f54987df618f71565a106d9ba81519be88418a93238b6a398ba
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# activerecord-postgres_pub_sub
|
2
2
|
|
3
|
+
## v3.1.0
|
4
|
+
- Add support for ActiveRecord 7.2
|
5
|
+
- Add support for Ruby 3.3
|
6
|
+
|
3
7
|
## v3.0.0
|
4
8
|
- Add support for multiple databases by allowing injection of the base Active Record class.
|
5
9
|
- BREAKING: Drop support for ActiveRecord 5.2, 6.0
|
@@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
|
|
36
36
|
spec.require_paths = ["lib"]
|
37
37
|
spec.required_ruby_version = ">= 3.0.0"
|
38
38
|
|
39
|
-
spec.add_runtime_dependency "activerecord", "> 6.0", "< 7.
|
39
|
+
spec.add_runtime_dependency "activerecord", "> 6.0", "< 7.3"
|
40
40
|
spec.add_runtime_dependency "pg", "~> 1.1"
|
41
41
|
spec.add_runtime_dependency "private_attr"
|
42
42
|
spec.add_runtime_dependency "with_advisory_lock"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-postgres_pub_sub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ezCater, Inc
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '6.0'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '7.
|
22
|
+
version: '7.3'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '6.0'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '7.
|
32
|
+
version: '7.3'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: pg
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -214,6 +214,7 @@ files:
|
|
214
214
|
- gemfiles/activerecord_6.1.gemfile
|
215
215
|
- gemfiles/activerecord_7.0.gemfile
|
216
216
|
- gemfiles/activerecord_7.1.gemfile
|
217
|
+
- gemfiles/activerecord_7.2.gemfile
|
217
218
|
- lib/activerecord-postgres_pub_sub.rb
|
218
219
|
- lib/activerecord/postgres_pub_sub/listener.rb
|
219
220
|
- lib/activerecord/postgres_pub_sub/version.rb
|