dependency: bump sentry-ruby, sentry-rails and sentry-sidekiq
Bumps sentry-ruby, sentry-rails and sentry-sidekiq. These dependencies needed to be updated together.
Updates sentry-ruby
from 4.5.2 to 4.6.0
Changelog
Sourced from sentry-ruby's changelog.
4.6.0
Features
- Add
sentry-resque
#1476- Add tracing support to
sentry-resque
#1480- Set user to the current scope via sidekiq middleware #1469
- Add tracing support to
sentry-delayed_job
#1482IMPORTANT
If your application processes a large number of background jobs and has tracing enabled, it is recommended to check your
traces_sampler
(or switch totraces_sampler
) and give the background job operations a smaller rate:Sentry.init do |config| config.traces_sampler = lambda do |sampling_context| transaction_context = sampling_context[:transaction_context] op = transaction_context[:op] case op when /request/ # sampling for requests 0.1 when /delayed_job/ # or resque 0.001 # adjust this value else 0.0 # ignore all other transactions end end end
This is to prevent the background job tracing consumes too much of your transaction quota.
Bug Fixes
Commits
-
64d0040
release: 4.6.0 -
0e26809
Prepare for 4.6.0 (#1490) -
3b9ce07
Simplify Readme (#1487) -
15e9abd
Merge branch 'release/4.6.0-beta.0' -
25f0332
release: 4.6.0-beta.0 -
a7d463a
Prepare for 4.6.0-beta.0 (#1486) -
6aaa4c1
Add tracing support to sentry-delayed_job (#1482) -
fac1db6
Force encode request body if it's a string (#1484) -
d82b463
Follow up #1469 (#1483) -
79f0453
Set user to the current scope via sidekiq middleware (#1469) - Additional commits viewable in compare view
Updates sentry-rails
from 4.5.2 to 4.6.0
Changelog
Sourced from sentry-rails's changelog.
4.6.0
Features
- Add
sentry-resque
#1476- Add tracing support to
sentry-resque
#1480- Set user to the current scope via sidekiq middleware #1469
- Add tracing support to
sentry-delayed_job
#1482IMPORTANT
If your application processes a large number of background jobs and has tracing enabled, it is recommended to check your
traces_sampler
(or switch totraces_sampler
) and give the background job operations a smaller rate:Sentry.init do |config| config.traces_sampler = lambda do |sampling_context| transaction_context = sampling_context[:transaction_context] op = transaction_context[:op] case op when /request/ # sampling for requests 0.1 when /delayed_job/ # or resque 0.001 # adjust this value else 0.0 # ignore all other transactions end end end
This is to prevent the background job tracing consumes too much of your transaction quota.
Bug Fixes
Commits
-
64d0040
release: 4.6.0 -
0e26809
Prepare for 4.6.0 (#1490) -
3b9ce07
Simplify Readme (#1487) -
15e9abd
Merge branch 'release/4.6.0-beta.0' -
25f0332
release: 4.6.0-beta.0 -
a7d463a
Prepare for 4.6.0-beta.0 (#1486) -
6aaa4c1
Add tracing support to sentry-delayed_job (#1482) -
fac1db6
Force encode request body if it's a string (#1484) -
d82b463
Follow up #1469 (#1483) -
79f0453
Set user to the current scope via sidekiq middleware (#1469) - Additional commits viewable in compare view
Updates sentry-sidekiq
from 4.5.2 to 4.6.0
Changelog
Sourced from sentry-sidekiq's changelog.
4.6.0
Features
- Add
sentry-resque
#1476- Add tracing support to
sentry-resque
#1480- Set user to the current scope via sidekiq middleware #1469
- Add tracing support to
sentry-delayed_job
#1482IMPORTANT
If your application processes a large number of background jobs and has tracing enabled, it is recommended to check your
traces_sampler
(or switch totraces_sampler
) and give the background job operations a smaller rate:Sentry.init do |config| config.traces_sampler = lambda do |sampling_context| transaction_context = sampling_context[:transaction_context] op = transaction_context[:op] case op when /request/ # sampling for requests 0.1 when /delayed_job/ # or resque 0.001 # adjust this value else 0.0 # ignore all other transactions end end end
This is to prevent the background job tracing consumes too much of your transaction quota.
Bug Fixes
Commits
-
64d0040
release: 4.6.0 -
0e26809
Prepare for 4.6.0 (#1490) -
3b9ce07
Simplify Readme (#1487) -
15e9abd
Merge branch 'release/4.6.0-beta.0' -
25f0332
release: 4.6.0-beta.0 -
a7d463a
Prepare for 4.6.0-beta.0 (#1486) -
6aaa4c1
Add tracing support to sentry-delayed_job (#1482) -
fac1db6
Force encode request body if it's a string (#1484) -
d82b463
Follow up #1469 (#1483) -
79f0453
Set user to the current scope via sidekiq middleware (#1469) - Additional commits viewable in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
@dependabot-bot rebase
will rebase this MR -
@dependabot-bot recreate
will recreate this MR rewriting all the manual changes and resolving conflicts