Skip to content

Commit

Permalink
Release v6.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoehaines committed Jul 19, 2023
2 parents 90ef7dd + 9b7bc0d commit bdfbf39
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/maze-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,15 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['2.5']
sidekiq-version: ['2', '3', '4', '5', '6']
ruby-version: ['2.5', '2.7']
sidekiq-version: ['2', '3', '4', '5', '6', '7']
include:
- ruby-version: '3.2'
sidekiq-version: '7'
exclude:
# 2.7 is the minimum ruby version that sidekiq 7 supports
- ruby-version: '2.5'
sidekiq-version: '7'

uses: ./.github/workflows/run-maze-runner.yml
with:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

## v6.26.0 (19 July 2023)

### Enhancements

* Support Sidekiq v7
| [#785](https://github.com/bugsnag/bugsnag-ruby/pull/785)
| [stevenharman](https://github.com/stevenharman)

## v6.25.2 (7 February 2023)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.25.2
6.26.0
1 change: 1 addition & 0 deletions lib/bugsnag/integrations/sidekiq.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Bugsnag
##
# Extracts and attaches Sidekiq job and queue information to an error report
class Sidekiq
include ::Sidekiq::ServerMiddleware if defined?(::Sidekiq::ServerMiddleware)

unless const_defined?(:FRAMEWORK_ATTRIBUTES)
FRAMEWORK_ATTRIBUTES = {
Expand Down

0 comments on commit bdfbf39

Please sign in to comment.