Skip to content
This repository has been archived by the owner on Feb 22, 2021. It is now read-only.

Commit

Permalink
Move changes to right version
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonhilkert committed Nov 25, 2015
1 parent 4004cf1 commit c4b0f7f
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Sidekiq Changes

4.0.2
-----------

- There's a new testing API based off the `Sidekiq::Queues` namespace. All
assertions made against the Worker class still work as expected.
[#2676, brandonhilkert]
```ruby
assert_equal 0, Sidekiq::Queues["default"].size
HardWorker.perform_async("log")
assert_equal 1, Sidekiq::Queues["default"].size
assert_equal "log", Sidekiq::Queues["default"].first['args'][0]
Sidekiq::Queues.clear_all
```

4.0.1
-----------

Expand All @@ -13,16 +27,6 @@
and to remove dependencies. This has resulted in major speedups, as
[detailed on my blog](http://www.mikeperham.com/2015/10/14/optimizing-sidekiq/).
- See the [4.0 upgrade notes](4.0-Upgrade.md) for more detail.
- There's a new testing API based off the `Sidekiq::Queues` namespace. All
assertions made against the Worker class still work as expected.
[#2659, brandonhilkert]
```ruby
assert_equal 0, Sidekiq::Queues["default"].size
HardWorker.perform_async("log")
assert_equal 1, Sidekiq::Queues["default"].size
assert_equal "log", Sidekiq::Queues["default"].first['args'][0]
Sidekiq::Queues.clear_all
```

3.5.3
-----------
Expand Down

0 comments on commit c4b0f7f

Please sign in to comment.