Skip to content
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.

Commit

Permalink
version bump + documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kenaniah committed Dec 21, 2017
1 parent 507b7dd commit e67858e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
@@ -1,9 +1,11 @@
**master**
**Version 0.8.0**
+ Properly ignores jobs that do not have `Sidekiq::Status::Worker` included
+ Honors custom job expirations for ActiveJob jobs
+ Adds a `:retrying` status
+ Adds remove / retry buttons to the index page
+ Server middleware will now catches all exception types
+ Changes where server middleware is inserted in the chain
+ Reduces the amount of Redis calls made

**Version 0.7.0**
+ Sidekiq 4.2 and 5 now supported
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -63,6 +63,8 @@ Sidekiq.configure_server do |config|
end
```

**Note:** This method of configuration is new as of version 0.8.0.

After that you can use your jobs as usual. You need to also include the `Sidekiq::Status::Worker` module in your jobs if you want the additional functionality of tracking progress and storing / retrieving job data.

``` ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/sidekiq-status/version.rb
@@ -1,5 +1,5 @@
module Sidekiq
module Status
VERSION = '0.8.0.pre'
VERSION = '0.8.0'
end
end

0 comments on commit e67858e

Please sign in to comment.