Skip to content

Commit a34b047

Browse files
committed
release: 6.5.0
1 parent d61d271 commit a34b047

File tree

12 files changed

+30
-11
lines changed

12 files changed

+30
-11
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 6.5.0
2+
3+
### New Features ✨
4+
5+
- (otlp) Add collector_url option to OTLP integration by @sl0thentr0py in [#2887](https://github.com/getsentry/sentry-ruby/pull/2887)
6+
- (release-detector) Prefer HEROKU_BUILD_COMMIT over deprecated HEROKU_SLUG_COMMIT by @ericapisani in [#2886](https://github.com/getsentry/sentry-ruby/pull/2886)
7+
- Implement strict trace continuation by @giortzisg in [#2872](https://github.com/getsentry/sentry-ruby/pull/2872)
8+
9+
### Bug Fixes 🐛
10+
11+
- (rails) Set mechanism.handled based on error handling status by @solnic in [#2892](https://github.com/getsentry/sentry-ruby/pull/2892)
12+
- Copy event processors on Scope#dup by @sl0thentr0py in [#2893](https://github.com/getsentry/sentry-ruby/pull/2893)
13+
- Map `trilogy` database adapter to `mysql` for Query Insights compatibility by @krismichalski in [#2656](https://github.com/getsentry/sentry-ruby/pull/2656)
14+
- Don't transform attributes in place in metrics by @sl0thentr0py in [#2883](https://github.com/getsentry/sentry-ruby/pull/2883)
15+
16+
### Internal Changes 🔧
17+
18+
- (transport) Handle HTTP 413 response for oversized envelopes by @sl0thentr0py in [#2885](https://github.com/getsentry/sentry-ruby/pull/2885)
19+
120
## 6.4.1
221

322
### Bug Fixes 🐛

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 = "6.4.1"
5+
VERSION = "6.5.0"
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", "~> 6.4.1"
33+
spec.add_dependency "sentry-ruby", "~> 6.5.0"
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 = "6.4.1"
5+
VERSION = "6.5.0"
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", "~> 6.4.1"
33+
spec.add_dependency "sentry-ruby", "~> 6.5.0"
3434
spec.add_dependency "opentelemetry-sdk", "~> 1.0"
3535
end

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 = "6.4.1"
5+
VERSION = "6.5.0"
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", "~> 6.4.1"
34+
spec.add_dependency "sentry-ruby", "~> 6.5.0"
3535
end

sentry-resque/lib/sentry/resque/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 Resque
5-
VERSION = "6.4.1"
5+
VERSION = "6.5.0"
66
end
77
end

sentry-resque/sentry-resque.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", "~> 6.4.1"
33+
spec.add_dependency "sentry-ruby", "~> 6.5.0"
3434
spec.add_dependency "resque", ">= 1.24"
3535
end

sentry-ruby/lib/sentry/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Sentry
4-
VERSION = "6.4.1"
4+
VERSION = "6.5.0"
55
end

0 commit comments

Comments
 (0)