good_job 3.12.5 → 3.12.6

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: 2ab20515ae75193d46a2340d2b14b7e34217fb5eddf6e468cdd1d9d2aacb8a0d
4
- data.tar.gz: 318bfc51ed42c853dbebcba084780d2c359b62fee526bf76482e7ccba2122ab7
3
+ metadata.gz: c529a4f3811213bcf4d534c3fc5c096cac64b944db891eedadd5b553ea77aae3
4
+ data.tar.gz: fc88a86278de2dd445e463a84f8a1934bc281c976dc585c7db549e5c57ff97ba
5
5
  SHA512:
6
- metadata.gz: 9d78a07949afbda9ab3f45f5605cbc6411d26402c89b1e273f32584c2bbe7bccf5c48d58e201fc9b529d5b2d0dfd4874aebd82d79a4e2af72360bb0e0b61cfa1
7
- data.tar.gz: 4b3b505b89ce9696a9f94198ba853b06e0a37adb100006ddce43e8d334b1ef05afb6ee2b37c9d33ffc05f0fc3fc60ef2a2a8a346311f3e6e2298e2228eeb062a
6
+ metadata.gz: d5b076dccfa450de8256870ba502c1f65f8c84fcdd9921772176afe04f1ccc57bd65fd215d46cb6a6c3be8c32570d9e271cbd45b73abdc247c64ef593edab64d
7
+ data.tar.gz: c243bf54c98d38fe92fa62f104074582968dc757e65f3df611877307b2068d0126d837450745da60a20a80901b52a27af64302694e117c763d268fa3535ed6e5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.12.6](https://github.com/bensheldon/good_job/tree/v3.12.6) (2023-03-01)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.5...v3.12.6)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Update and cleanup js and css assets; add Stimulus [\#870](https://github.com/bensheldon/good_job/pull/870) ([bensheldon](https://github.com/bensheldon))
10
+ - Bump actions/add-to-project from 0.4.0 to 0.4.1 [\#869](https://github.com/bensheldon/good_job/pull/869) ([dependabot[bot]](https://github.com/apps/dependabot))
11
+ - Bump actions/checkout from 2 to 3 [\#868](https://github.com/bensheldon/good_job/pull/868) ([dependabot[bot]](https://github.com/apps/dependabot))
12
+ - Bump rubocop-rails from 2.17.4 to 2.18.0 [\#867](https://github.com/bensheldon/good_job/pull/867) ([dependabot[bot]](https://github.com/apps/dependabot))
13
+ - Bump pg from 1.4.5 to 1.4.6 [\#866](https://github.com/bensheldon/good_job/pull/866) ([dependabot[bot]](https://github.com/apps/dependabot))
14
+ - Extract GoodJob::Capsule [\#861](https://github.com/bensheldon/good_job/pull/861) ([bensheldon](https://github.com/bensheldon))
15
+
3
16
  ## [v3.12.5](https://github.com/bensheldon/good_job/tree/v3.12.5) (2023-02-24)
4
17
 
5
18
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.4...v3.12.5)
@@ -7,6 +7,9 @@ import showToasts from "toasts";
7
7
  import setupPopovers from "popovers";
8
8
  import LivePoll from "live_poll";
9
9
 
10
+ import { Application } from "stimulus";
11
+ window.Stimulus = Application.start();
12
+
10
13
  documentReady(function() {
11
14
  renderCharts();
12
15
  showToasts();
@@ -16,3 +19,4 @@ documentReady(function() {
16
19
  const livePoll = new LivePoll
17
20
  livePoll.start();
18
21
  });
22
+