Skip to content

Commit 515c4e4

Browse files
committed
Merge remote-tracking branch 'origin/master' into 6.0-dev
2 parents 2ca83e4 + 9883c31 commit 515c4e4

22 files changed

Lines changed: 31 additions & 23 deletions

File tree

.github/workflows/danger.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ on:
66

77
jobs:
88
danger:
9-
uses: getsentry/github-workflows/.github/workflows/danger.yml@v2
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: getsentry/github-workflows/danger@v3

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased (6.0.0)
1+
## 6.0.0
22

33
### Breaking Changes
44

@@ -52,6 +52,12 @@
5252
- Archive [`sentry-raven`](https://github.com/getsentry/raven-ruby) ([#2708](https://github.com/getsentry/sentry-ruby/pull/2708))
5353
- Don't send `sample_rate` client reports for profiles if profiling is disabled ([#2728](https://github.com/getsentry/sentry-ruby/pull/2728))
5454

55+
## 5.28.1
56+
57+
### Bug Fixes
58+
59+
- The `sentry.origin` log event attribute is now correctly prefixed with `auto.log` ([#2749](https://github.com/getsentry/sentry-ruby/pull/2749))
60+
5561
## 5.28.0
5662

5763
### Features

sentry-delayed_job/lib/sentry/delayed_job/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Sentry
44
module DelayedJob
5-
VERSION = "5.28.0"
5+
VERSION = "5.28.1"
66
end
77
end

sentry-delayed_job/sentry-delayed_job.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ Gem::Specification.new do |spec|
3030
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
3131
spec.require_paths = ["lib"]
3232

33-
spec.add_dependency "sentry-ruby", "~> 5.28.0"
33+
spec.add_dependency "sentry-ruby", "~> 5.28.1"
3434
spec.add_dependency "delayed_job", ">= 4.0"
3535
end

sentry-opentelemetry/lib/sentry/opentelemetry/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Sentry
44
module OpenTelemetry
5-
VERSION = "5.28.0"
5+
VERSION = "5.28.1"
66
end
77
end

sentry-opentelemetry/sentry-opentelemetry.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ Gem::Specification.new do |spec|
3030
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
3131
spec.require_paths = ["lib"]
3232

33-
spec.add_dependency "sentry-ruby", "~> 5.28.0"
33+
spec.add_dependency "sentry-ruby", "~> 5.28.1"
3434
spec.add_dependency "opentelemetry-sdk", "~> 1.0"
3535
end

sentry-rails/lib/sentry/rails/log_subscriber.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Rails
2727
# end
2828
# end
2929
class LogSubscriber < ActiveSupport::LogSubscriber
30-
ORIGIN = "auto.logger.rails.log_subscriber"
30+
ORIGIN = "auto.log.rails.log_subscriber"
3131

3232
class << self
3333
if ::Rails.version.to_f < 6.0

sentry-rails/lib/sentry/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Sentry
44
module Rails
5-
VERSION = "5.28.0"
5+
VERSION = "5.28.1"
66
end
77
end

sentry-rails/sentry-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
3131
spec.require_paths = ["lib"]
3232

3333
spec.add_dependency "railties", ">= 5.2.0"
34-
spec.add_dependency "sentry-ruby", "~> 5.28.0"
34+
spec.add_dependency "sentry-ruby", "~> 5.28.1"
3535
end

sentry-rails/spec/sentry/rails/log_subscribers/action_controller_subscriber_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
expect(log_event[:attributes][:method][:value]).to eq("GET")
3636
expect(log_event[:attributes][:path][:value]).to eq("/world")
3737
expect(log_event[:attributes][:format][:value]).to eq(:html)
38-
expect(log_event[:attributes]["sentry.origin"][:value]).to eq("auto.logger.rails.log_subscriber")
38+
expect(log_event[:attributes]["sentry.origin"][:value]).to eq("auto.log.rails.log_subscriber")
3939
end
4040

4141
it "logs bad requests appropriately" do

0 commit comments

Comments
 (0)