Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Nov 30, 2022
1 parent 0bf4a43 commit 621cab6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
21 changes: 19 additions & 2 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,28 @@

[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/main/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/main/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/main/Ent-Changes.md)

HEAD
7.0.2
----------

- Improve compatibility with custom loggers [#5673]
- Add queue weights on Busy page [#5640]
- Add BID link on job_info page if job is part of a Batch [#5623]
- Allow custom extensions to add rows/links within the Job Details page [#5624]
- Allow custom extensions to add rows/links within Job detail pages [#5624]
```ruby
Sidekiq::Web.custom_job_info_rows << AddAccountLink.new

class AddAccountLink
include CGI::Util
def add_pair(job)
# yield a (name, value) pair
# You can include HTML tags and CSS, Sidekiq does not do any
# escaping so beware user data injection! Note how we use CGI's
# `h` escape helper.
aid = job["account_id"]
yield "Account", "<a href='/accounts/#{h aid}'>#{h aid}</a>" if aid
end
end
```

7.0.1
----------
Expand Down
5 changes: 5 additions & 0 deletions Ent-Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy.

7.0.2
---------

- Fix crash in graceful restarts [#5667]

7.0.1
---------

Expand Down

0 comments on commit 621cab6

Please sign in to comment.