good_job 3.19.0 → 3.19.2

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: 6c66d226179c2cd55bfc539c943df468fc683f761b89cdc10606f03a6bb26f87
4
- data.tar.gz: f72404539fb5bf7ef122cf65ed616276dd0457538b1319e253d6078e223ddbbb
3
+ metadata.gz: ec598c88f135d5ebf9ec8fd1275e633cb26ec203287236bae56f5d143ff2b8fe
4
+ data.tar.gz: 2648b15cb11ac4996cb6637126507ba1a7ab37fe652759f7379ae2b6ffa66481
5
5
  SHA512:
6
- metadata.gz: 98d03d3abdbcc20956e37e8c498c8fa57c1b2b091c5f50c0654aa75875d9d23ca02aeb78d67f5f2a8c961a9aabfc0ad3899fcf1867c2b4350dfe56584568a4eb
7
- data.tar.gz: f0044b4c761371391c5aec83500efece2e000a6f9741a504f244208ae403b42fd39e1324fe1e753e3ae4d67c6ae92706f9a960ab5ec2745df547acd4e0927ac7
6
+ metadata.gz: f6fc1208753c103a7a9edc06533cd778f4c4a7232e1965897795d7f82d063f41afb75424dff0d43ba30896f6ae579c324350da6c15b2785118ddbabd275b7e5d
7
+ data.tar.gz: d71c68f923c1640e639e38e17bc23f9cb31c85ab1efbd629012cc8454b65c7eb73618a67f556a5164b070cc48ae8945ea9b05bb9ea7615554aeab2dd0ed2020d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.19.2](https://github.com/bensheldon/good_job/tree/v3.19.2) (2023-09-22)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.19.1...v3.19.2)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Fix HttpServer to handle Errno::EPIPE [\#1083](https://github.com/bensheldon/good_job/pull/1083) ([shouichi](https://github.com/shouichi))
10
+
11
+ ## [v3.19.1](https://github.com/bensheldon/good_job/tree/v3.19.1) (2023-09-20)
12
+
13
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.19.0...v3.19.1)
14
+
15
+ **Implemented enhancements:**
16
+
17
+ - Add `good_job_application_controller` load hook [\#1081](https://github.com/bensheldon/good_job/pull/1081) ([bensheldon](https://github.com/bensheldon))
18
+
3
19
  ## [v3.19.0](https://github.com/bensheldon/good_job/tree/v3.19.0) (2023-09-19)
4
20
 
5
21
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.18.3...v3.19.0)
@@ -57,5 +57,7 @@ module GoodJob
57
57
  I18n.default_locale
58
58
  end
59
59
  end
60
+
61
+ ActiveSupport.run_load_hooks(:good_job_application_controller, self)
60
62
  end
61
63
  end
@@ -55,7 +55,7 @@ module GoodJob
55
55
  end
56
56
 
57
57
  client.close
58
- rescue IO::WaitReadable, Errno::EINTR
58
+ rescue IO::WaitReadable, Errno::EINTR, Errno::EPIPE
59
59
  retry
60
60
  end
61
61
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module GoodJob
4
4
  # GoodJob gem version.
5
- VERSION = '3.19.0'
5
+ VERSION = '3.19.2'
6
6
 
7
7
  # GoodJob version as Gem::Version object
8
8
  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.19.0
4
+ version: 3.19.2
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-09-19 00:00:00.000000000 Z
11
+ date: 2023-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activejob