cloudtasker 0.15.rc2 → 0.15.rc3
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 +2 -2
- data/lib/cloudtasker/version.rb +1 -1
- data/lib/cloudtasker/worker.rb +3 -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: ef70d0506e7bc1d286b1ecd2444eed28fdf39d0edb0d88a3fde7e860031efdde
|
|
4
|
+
data.tar.gz: da9c05f82b28ac52836db27fe722bf13729bd179e103ccbb1b62737712e53c75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e7571d1deaa2d46cdb7082653258736a3421132badd5f21d166d9fcea11814130f42319f69cd9d1ebcbefb89ed7b12367a21c4511cc61a7accc4bf466995311
|
|
7
|
+
data.tar.gz: 33537a08a998a42e7d9a4e5272a4f03983894612d18afc05642e420ead7c36d6e547c142296dc39f8f286c3341afeacd46c62a4770f884e6e54c14a3f4ad9c4c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [v0.15.
|
|
3
|
+
## [v0.15.rc3](https://github.com/keypup-io/cloudtasker/tree/v0.15.rc3) (2025-11-17)
|
|
4
4
|
|
|
5
|
-
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.14.0...v0.15.
|
|
5
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.14.0...v0.15.rc3)
|
|
6
6
|
|
|
7
7
|
**Improvements:**
|
|
8
8
|
- Queues: support `propagate_queue: true` option on `cloudtasker_options` to make workers enqueued inside a job use the runtime queue instead of the default (class-configured or `default`) queue.
|
data/lib/cloudtasker/version.rb
CHANGED
data/lib/cloudtasker/worker.rb
CHANGED
|
@@ -141,7 +141,9 @@ module Cloudtasker
|
|
|
141
141
|
# @return [Any] The result of the worker perform method.
|
|
142
142
|
#
|
|
143
143
|
def perform_now(*args)
|
|
144
|
-
|
|
144
|
+
# Serialize/deserialize arguments to mimic job enqueueing and produce a similar context
|
|
145
|
+
job_args = JSON.parse(args.to_json)
|
|
146
|
+
new(job_args: job_args).execute
|
|
145
147
|
end
|
|
146
148
|
|
|
147
149
|
#
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudtasker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.15.
|
|
4
|
+
version: 0.15.rc3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arnaud Lachaume
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|