activerecord-postgres_pub_sub 3.0.0 → 3.2.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/Appraisals +10 -0
- data/CHANGELOG.md +8 -0
- data/activerecord-postgres_pub_sub.gemspec +1 -1
- data/gemfiles/activerecord_6.1.gemfile +1 -0
- data/gemfiles/activerecord_7.0.gemfile +1 -0
- data/gemfiles/activerecord_7.2.gemfile +7 -0
- data/gemfiles/activerecord_8.0.gemfile +7 -0
- data/lib/activerecord/postgres_pub_sub/version.rb +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1cb69d273b9a089aba2036768aa6b2b197b143b8bd25e8d532f83b959f6e0d50
|
|
4
|
+
data.tar.gz: 57045a8c9edd4a1d574d0df328bb08db3b5bf0918750998ca2abeb1b0c6f27ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92d1a72526b8fb3aa3bdff6b140af91e17f60cb18dd7b46dd611f08511240fe42a6fb1ea8402333d9371376b15a0357fee2c097f87927858cb4d08a9dfd82c0e
|
|
7
|
+
data.tar.gz: df10288b335b51fad8a82e2c85640c22f1d945b8716cfbda2c146945d1aa5ab6c7c105a3d300ea927c5eff2741a59d5842b2bb78861cc3617a875901224981e2
|
data/Appraisals
CHANGED
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
appraise "activerecord_6.1" do
|
|
4
4
|
gem "activerecord", ">= 6.1.0", "< 6.2"
|
|
5
|
+
gem "concurrent-ruby", "1.3.4"
|
|
5
6
|
end
|
|
6
7
|
|
|
7
8
|
appraise "activerecord_7.0" do
|
|
8
9
|
gem "activerecord", ">= 7.0.0", "< 7.1"
|
|
10
|
+
gem "concurrent-ruby", "1.3.4"
|
|
9
11
|
end
|
|
10
12
|
|
|
11
13
|
appraise "activerecord_7.1" do
|
|
12
14
|
gem "activerecord", ">= 7.1.0", "< 7.2"
|
|
13
15
|
end
|
|
16
|
+
|
|
17
|
+
appraise "activerecord_7.2" do
|
|
18
|
+
gem "activerecord", ">= 7.2.0", "< 7.3"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
appraise "activerecord_8.0" do
|
|
22
|
+
gem "activerecord", ">= 8.0.0", "< 8.1"
|
|
23
|
+
end
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# activerecord-postgres_pub_sub
|
|
2
2
|
|
|
3
|
+
## v3.2.0
|
|
4
|
+
- Add support for ActiveRecord 8.0
|
|
5
|
+
- Add support for Ruby 3.4
|
|
6
|
+
|
|
7
|
+
## v3.1.0
|
|
8
|
+
- Add support for ActiveRecord 7.2
|
|
9
|
+
- Add support for Ruby 3.3
|
|
10
|
+
|
|
3
11
|
## v3.0.0
|
|
4
12
|
- Add support for multiple databases by allowing injection of the base Active Record class.
|
|
5
13
|
- 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", "<
|
|
39
|
+
spec.add_runtime_dependency "activerecord", "> 6.0", "< 8.1"
|
|
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,13 @@
|
|
|
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.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ezCater, Inc
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: activerecord
|
|
@@ -19,7 +18,7 @@ dependencies:
|
|
|
19
18
|
version: '6.0'
|
|
20
19
|
- - "<"
|
|
21
20
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '
|
|
21
|
+
version: '8.1'
|
|
23
22
|
type: :runtime
|
|
24
23
|
prerelease: false
|
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +28,7 @@ dependencies:
|
|
|
29
28
|
version: '6.0'
|
|
30
29
|
- - "<"
|
|
31
30
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
31
|
+
version: '8.1'
|
|
33
32
|
- !ruby/object:Gem::Dependency
|
|
34
33
|
name: pg
|
|
35
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -214,6 +213,8 @@ files:
|
|
|
214
213
|
- gemfiles/activerecord_6.1.gemfile
|
|
215
214
|
- gemfiles/activerecord_7.0.gemfile
|
|
216
215
|
- gemfiles/activerecord_7.1.gemfile
|
|
216
|
+
- gemfiles/activerecord_7.2.gemfile
|
|
217
|
+
- gemfiles/activerecord_8.0.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
|
|
@@ -224,7 +225,6 @@ licenses:
|
|
|
224
225
|
- MIT
|
|
225
226
|
metadata:
|
|
226
227
|
allowed_push_host: https://rubygems.org
|
|
227
|
-
post_install_message:
|
|
228
228
|
rdoc_options: []
|
|
229
229
|
require_paths:
|
|
230
230
|
- lib
|
|
@@ -239,8 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
239
239
|
- !ruby/object:Gem::Version
|
|
240
240
|
version: '0'
|
|
241
241
|
requirements: []
|
|
242
|
-
rubygems_version: 3.2
|
|
243
|
-
signing_key:
|
|
242
|
+
rubygems_version: 3.6.2
|
|
244
243
|
specification_version: 4
|
|
245
244
|
summary: Support for Postgres Notify/Listen
|
|
246
245
|
test_files: []
|