good_job 3.15.7 → 3.15.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 304066b93c2dc8d6960e51727ee9f9453e79b00793721ffe97d1df02b79eda44
4
- data.tar.gz: '02598cf6b47e27a1d568bb0680d7d4af205fac6bc817953bd26b938a79db25eb'
3
+ metadata.gz: 49215c024094f667286ca6d15541b8b3d7c046e3f78155a0533e8941e75d2cf9
4
+ data.tar.gz: 89520dcc01d3a2ffd023077f8e0ba049c9e55f39fc5cfddd1babb70bf7b716a9
5
5
  SHA512:
6
- metadata.gz: d3107c75571854f143429417d9fe23227da47fdafbb025ea037a6b31094266cfec62da1bbe78525aa29472704568ad5f71f23bf031794fe2cbe6d214f0dea16a
7
- data.tar.gz: '09743b81235c7795f217165f5a64a41132dcd8b0ccf969835dadd143ebb2992b88c3f8650677f089d152e53591e28a09634cb8f4a9e668fc78fc63ee0563cf4a'
6
+ metadata.gz: ed47837b028707b3f6660aba678f0e20a475c2fa56144eedf06edd70c186c1ba08ea8223fd388840c58a6fa2cec75ffb322c386aa93f18ab086ee1ded58e48fb
7
+ data.tar.gz: 75b05c5abf5cee0a87634371a91c838c86b336c4dcde84d205b6b86748e2e0123b6719d001f78d18d08fd1e8b5f0e96d1a1155e42d7943c9c730697724396bce
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.15.8](https://github.com/bensheldon/good_job/tree/v3.15.8) (2023-05-19)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.7...v3.15.8)
6
+
7
+ **Closed issues:**
8
+
9
+ - `active_job.enqueue` Performance Issue [\#939](https://github.com/bensheldon/good_job/issues/939)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - Fix hard-coded and duplicated table\_name [\#958](https://github.com/bensheldon/good_job/pull/958) ([gap777](https://github.com/gap777))
14
+ - Bump rubocop from 1.46.0 to 1.50.2 [\#949](https://github.com/bensheldon/good_job/pull/949) ([dependabot[bot]](https://github.com/apps/dependabot))
15
+ - Bump rubocop-rails from 2.18.0 to 2.19.1 [\#947](https://github.com/bensheldon/good_job/pull/947) ([dependabot[bot]](https://github.com/apps/dependabot))
16
+
3
17
  ## [v3.15.7](https://github.com/bensheldon/good_job/tree/v3.15.7) (2023-04-30)
4
18
 
5
19
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.6...v3.15.7)
@@ -35,7 +35,7 @@ module GoodJob
35
35
  end
36
36
 
37
37
  def discrete_support?
38
- if connection.table_exists?('good_job_executions')
38
+ if connection.table_exists?(DiscreteExecution.table_name)
39
39
  true
40
40
  else
41
41
  migration_pending_warning!
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
  module GoodJob
3
3
  # GoodJob gem version.
4
- VERSION = '3.15.7'
4
+ VERSION = '3.15.8'
5
5
 
6
6
  # GoodJob version as Gem::Version object
7
7
  GEM_VERSION = Gem::Version.new(VERSION)
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.15.7
4
+ version: 3.15.8
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-04-30 00:00:00.000000000 Z
11
+ date: 2023-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activejob