sidekiq-scheduler 6.0.1 → 6.0.2
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 +4 -0
- data/lib/sidekiq-scheduler/extensions/web.rb +1 -1
- data/lib/sidekiq-scheduler/scheduler.rb +1 -5
- data/lib/sidekiq-scheduler/version.rb +1 -1
- data/web/locales/cs.yml +0 -1
- data/web/locales/de.yml +0 -1
- data/web/locales/en.yml +0 -1
- data/web/locales/es.yml +0 -1
- data/web/locales/fr.yml +0 -1
- data/web/locales/gd.yml +1 -2
- data/web/locales/it.yml +0 -1
- data/web/locales/ja.yml +0 -1
- data/web/locales/nl.yml +0 -1
- data/web/locales/pl.yml +0 -1
- data/web/locales/pt-BR.yml +0 -1
- data/web/locales/ru.yml +0 -1
- data/web/locales/sv.yml +0 -1
- data/web/locales/zh-cn.yml +0 -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: 7bd42888ccf8fae20610e000a74dec669db80c0926c4d0842cf942e02c87a46c
|
|
4
|
+
data.tar.gz: 699fcf0770a684acdcb77c9cbb9b0f49d194d6b84f7680bebf76868b4b5e22c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 203e90fcd6cd521e0024ed65c949fdf6fcd11c52184281aa69a979f7cad87778c0e3d06638176320fa8c422a5cfa91b4f6dc7badcf480d827ee4ff42ae2f0337
|
|
7
|
+
data.tar.gz: caf41d610f3e47346011cd671ad8f1798dbf0bd906e69c2841e9e933ce77c1797c8863194fa4fce0316406f5fc24452246c1d547f7acdb51185e64c1b8a3bfde
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 6.0.2
|
|
2
|
+
- [**FIX**] Use parser-safe web locale keys for the recurring jobs tab so the Sidekiq Web UI works with Sidekiq 8.1.3+ [#514](https://github.com/sidekiq-scheduler/sidekiq-scheduler/issues/514)
|
|
3
|
+
- [**FIX**] Stop symbolizing scheduled job `args` hash keys so string keys from YAML/JSON are preserved when enqueuing [ca3d405](https://github.com/sidekiq-scheduler/sidekiq-scheduler/commit/ca3d405e62433e3d889ebba1e3dedd3b0de0c8ef)
|
|
4
|
+
|
|
1
5
|
# 6.0.1
|
|
2
6
|
- [**FIX**] Fix issue with Sidekiq v7.3.0-v7.3.6 [#503](https://github.com/sidekiq-scheduler/sidekiq-scheduler/pull/503)
|
|
3
7
|
|
|
@@ -3,7 +3,7 @@ require 'sidekiq/web' unless defined?(Sidekiq::Web)
|
|
|
3
3
|
# Locale and asset cache is configured in `cfg.register`
|
|
4
4
|
args = {
|
|
5
5
|
name: "recurring_jobs",
|
|
6
|
-
tab: ["
|
|
6
|
+
tab: ["recurring_jobs"],
|
|
7
7
|
index: ["recurring-jobs"],
|
|
8
8
|
root_dir: File.expand_path("../../../web", File.dirname(__FILE__)),
|
|
9
9
|
asset_paths: ["stylesheets-scheduler"]
|
|
@@ -348,11 +348,7 @@ module SidekiqScheduler
|
|
|
348
348
|
def prepare_arguments(config)
|
|
349
349
|
config['class'] = SidekiqScheduler::Utils.try_to_constantize(config['class'])
|
|
350
350
|
|
|
351
|
-
|
|
352
|
-
config['args'].symbolize_keys! if config['args'].respond_to?(:symbolize_keys!)
|
|
353
|
-
else
|
|
354
|
-
config['args'] = Array(config['args'])
|
|
355
|
-
end
|
|
351
|
+
config['args'] = Array(config['args']) unless config['args'].is_a?(Hash)
|
|
356
352
|
|
|
357
353
|
config
|
|
358
354
|
end
|
data/web/locales/cs.yml
CHANGED
data/web/locales/de.yml
CHANGED
data/web/locales/en.yml
CHANGED
data/web/locales/es.yml
CHANGED
data/web/locales/fr.yml
CHANGED
data/web/locales/gd.yml
CHANGED
data/web/locales/it.yml
CHANGED
data/web/locales/ja.yml
CHANGED
data/web/locales/nl.yml
CHANGED
data/web/locales/pl.yml
CHANGED
data/web/locales/pt-BR.yml
CHANGED
data/web/locales/ru.yml
CHANGED
data/web/locales/sv.yml
CHANGED
data/web/locales/zh-cn.yml
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sidekiq-scheduler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.0.
|
|
4
|
+
version: 6.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Morton Jonuschat
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
- Marcelo Lauxen
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2026-04-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: sidekiq
|