Skip to content

Commit bdfbf39

Browse files
authored
Release v6.26.0
2 parents 90ef7dd + 9b7bc0d commit bdfbf39

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.github/workflows/maze-runner.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,15 @@ jobs:
7373
strategy:
7474
fail-fast: false
7575
matrix:
76-
ruby-version: ['2.5']
77-
sidekiq-version: ['2', '3', '4', '5', '6']
76+
ruby-version: ['2.5', '2.7']
77+
sidekiq-version: ['2', '3', '4', '5', '6', '7']
78+
include:
79+
- ruby-version: '3.2'
80+
sidekiq-version: '7'
81+
exclude:
82+
# 2.7 is the minimum ruby version that sidekiq 7 supports
83+
- ruby-version: '2.5'
84+
sidekiq-version: '7'
7885

7986
uses: ./.github/workflows/run-maze-runner.yml
8087
with:

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
## v6.26.0 (19 July 2023)
5+
6+
### Enhancements
7+
8+
* Support Sidekiq v7
9+
| [#785](https://github.com/bugsnag/bugsnag-ruby/pull/785)
10+
| [stevenharman](https://github.com/stevenharman)
11+
412
## v6.25.2 (7 February 2023)
513

614
### Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.25.2
1+
6.26.0

lib/bugsnag/integrations/sidekiq.rb

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module Bugsnag
44
##
55
# Extracts and attaches Sidekiq job and queue information to an error report
66
class Sidekiq
7+
include ::Sidekiq::ServerMiddleware if defined?(::Sidekiq::ServerMiddleware)
78

89
unless const_defined?(:FRAMEWORK_ATTRIBUTES)
910
FRAMEWORK_ATTRIBUTES = {

0 commit comments

Comments
 (0)