good_job 2.7.3 → 2.7.4
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/CHANGELOG.md +14 -3
- data/README.md +1 -0
- data/engine/app/views/layouts/good_job/base.html.erb +4 -4
- data/lib/good_job/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c43ea987ac7a83911835cc6d6232839eba41f614b888dcb9752ae085cb4e30a0
|
|
4
|
+
data.tar.gz: eb7efe2336fa441d8c5b0e64fa43b017078c4306599bc30f829610ef24ca037a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3695aaebdb614804fa6df0210c411cc45120880674663551e6f53036bd237d6b64b12e2728bf810fac18c76f1372eb40de57f4b4daae24eda5448177218ffe63
|
|
7
|
+
data.tar.gz: d03963f9186b5c177fbd107107c4f2dcd646df4dbc96fbf9a08e91f91af01d01369a89b44ee7bbf97baa0d941c47550fa4b29e3eca326c36fdc72b21646c0796
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v2.7.4](https://github.com/bensheldon/good_job/tree/v2.7.4) (2021-12-16)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.7.3...v2.7.4)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- Add nonce: true to engine views [\#467](https://github.com/bensheldon/good_job/issues/467)
|
|
10
|
+
- Updating good\_job breaks my Rails 7 alpha 2 local development [\#462](https://github.com/bensheldon/good_job/issues/462)
|
|
11
|
+
|
|
12
|
+
**Merged pull requests:**
|
|
13
|
+
|
|
14
|
+
- Add nonce: true to javascript\_include\_tag in dashboard [\#468](https://github.com/bensheldon/good_job/pull/468) ([bouk](https://github.com/bouk))
|
|
15
|
+
- Update appraisal for Rails 7.0.0.rc1 [\#466](https://github.com/bensheldon/good_job/pull/466) ([bensheldon](https://github.com/bensheldon))
|
|
16
|
+
|
|
3
17
|
## [v2.7.3](https://github.com/bensheldon/good_job/tree/v2.7.3) (2021-11-30)
|
|
4
18
|
|
|
5
19
|
[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.7.2...v2.7.3)
|
|
@@ -7,9 +21,6 @@
|
|
|
7
21
|
**Fixed bugs:**
|
|
8
22
|
|
|
9
23
|
- Logger error on 2.7.2 [\#463](https://github.com/bensheldon/good_job/issues/463)
|
|
10
|
-
|
|
11
|
-
**Merged pull requests:**
|
|
12
|
-
|
|
13
24
|
- Fix Railtie configuration assignment when Rails configuration is a Hash, not an OrderedOptions [\#464](https://github.com/bensheldon/good_job/pull/464) ([bensheldon](https://github.com/bensheldon))
|
|
14
25
|
|
|
15
26
|
## [v2.7.2](https://github.com/bensheldon/good_job/tree/v2.7.2) (2021-11-29)
|
data/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/good_job)
|
|
4
4
|
[](https://github.com/bensheldon/good_job/actions)
|
|
5
|
+
[](https://www.ruby-toolbox.com/projects/good_job)
|
|
5
6
|
|
|
6
7
|
GoodJob is a multithreaded, Postgres-based, ActiveJob backend for Ruby on Rails.
|
|
7
8
|
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
<%= stylesheet_link_tag bootstrap_path(format: :css, v: GoodJob::VERSION) %>
|
|
9
9
|
<%= stylesheet_link_tag style_path(format: :css, v: GoodJob::VERSION) %>
|
|
10
10
|
|
|
11
|
-
<%= javascript_include_tag bootstrap_path(format: :js, v: GoodJob::VERSION) %>
|
|
12
|
-
<%= javascript_include_tag chartjs_path(format: :js, v: GoodJob::VERSION) %>
|
|
13
|
-
<%= javascript_include_tag scripts_path(format: :js, v: GoodJob::VERSION) %>
|
|
11
|
+
<%= javascript_include_tag bootstrap_path(format: :js, v: GoodJob::VERSION), nonce: true %>
|
|
12
|
+
<%= javascript_include_tag chartjs_path(format: :js, v: GoodJob::VERSION), nonce: true %>
|
|
13
|
+
<%= javascript_include_tag scripts_path(format: :js, v: GoodJob::VERSION), nonce: true %>
|
|
14
14
|
|
|
15
|
-
<%= javascript_include_tag rails_ujs_path(format: :js, v: GoodJob::VERSION) %>
|
|
15
|
+
<%= javascript_include_tag rails_ujs_path(format: :js, v: GoodJob::VERSION), nonce: true %>
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
|
18
18
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
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: 2.7.
|
|
4
|
+
version: 2.7.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Sheldon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-12-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activejob
|