good_job 3.12.2 → 3.12.3
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08adcef39550aab73cfa2e2e09f059bb8c9a27154e7282f004f0ce6fa8cdb489'
|
|
4
|
+
data.tar.gz: 01a7beeab908846daf3b4a7aefdb92288aa5fa88bd5782aa93852f8c254596b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b28e1d6f9a92d31e50abfbc45b8b8be1d4db5639b26faad68cf14c489d7bfbf3b94332df6bdbc4df25260d1f56406444205a3c37b688568bee6ae3a4c879a58
|
|
7
|
+
data.tar.gz: 8b83770a89e8aeeb28bc3571d797ea0e284b6dd3fd6787653b8d714a246856a9a88dfcc752e4208719bbe81085ea16689da1131c672222d739fa89b9469d3f31
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v3.12.3](https://github.com/bensheldon/good_job/tree/v3.12.3) (2023-02-21)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.2...v3.12.3)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- \[Not Critical\] Too much space \(One\) in db/migrate/XXXXXX\_create\_index\_good\_jobs\_jobs\_on\_priority\_created\_at\_when\_unfinished.rb [\#851](https://github.com/bensheldon/good_job/issues/851)
|
|
10
|
+
- Use timestamps with timezone when set as the default for postgresql. [\#668](https://github.com/bensheldon/good_job/issues/668)
|
|
11
|
+
|
|
12
|
+
**Merged pull requests:**
|
|
13
|
+
|
|
14
|
+
- Fix bug where notification check does not use configuration [\#857](https://github.com/bensheldon/good_job/pull/857) ([mitchellhenke](https://github.com/mitchellhenke))
|
|
15
|
+
- Fix template for the update migrations 03 index \(\#851\) [\#852](https://github.com/bensheldon/good_job/pull/852) ([julienanne](https://github.com/julienanne))
|
|
16
|
+
|
|
3
17
|
## [v3.12.2](https://github.com/bensheldon/good_job/tree/v3.12.2) (2023-02-16)
|
|
4
18
|
|
|
5
19
|
[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.1...v3.12.2)
|
data/lib/good_job/adapter.rb
CHANGED
|
@@ -234,8 +234,8 @@ module GoodJob
|
|
|
234
234
|
end
|
|
235
235
|
|
|
236
236
|
def send_notify?(active_job)
|
|
237
|
-
return true unless active_job.respond_to?(:good_job_notify)
|
|
238
237
|
return false unless GoodJob.configuration.enable_listen_notify
|
|
238
|
+
return true unless active_job.respond_to?(:good_job_notify)
|
|
239
239
|
|
|
240
240
|
!(active_job.good_job_notify == false || (active_job.class.good_job_notify == false && active_job.good_job_notify.nil?))
|
|
241
241
|
end
|
data/lib/good_job/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: good_job
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.12.
|
|
4
|
+
version: 3.12.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Sheldon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-02-
|
|
11
|
+
date: 2023-02-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activejob
|