Releases: actionhero/node-resque
v2.0.1: resue-retry
Update the simple-plugin
to emulate the behavior of resque-retry
. https://github.com/lantins/resque-retry
Notes:
- There is an error when using the ruby web UI to look at retried jobs (as ruby requires a class name with with job's name to exist)
v2.0.0: Fix delayed timestamp set
This is a breaking change
When comparing this project to ruby resque, we had been using the wrong value (key pointer) in the delayed job queue. When running this project alongside a ruby scheduler, it was possible for older timestamp key set entries not to be deleted. This update corrects the difference.
When upgrading to this new version, it is very likely you will end up with queue artifacts that are not properly deleted, which have the potential to break plugin's behaviors. This will require manual intervention to remove keys that match resque:timestamps:*. Before upgrading to this version, the safest path forward is to drain all of your queues and schedules first, using the previous version of node-resque.
by @evantahler via #121
v1.3.2: IDE Package Hotfix
Update the previous depreciation warning to use hash access.
- by @synthmeat via #119
v1.3.1: `package` deprecation warning (it is now `pkg`)
Add a depreciation warning for package
In #113 we replaced package
with pkg
to define the redis driver package you want to use with node-resque. This change adds a deprecation warning if you are still using package
, but will now source it.
- by @krishnaglick via #118
v1.3.0: package => pkg
package
is technically a reserved word in javascript. Replace all instances of package
to pkg
.
- by @synthmeat via #113