We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e340018 commit c2fa01aCopy full SHA for c2fa01a
CHANGELOG.md
@@ -25,6 +25,7 @@
25
### Bug Fixes
26
27
- Fix `MetricEvent` timestamp serialization to float ([#2862](https://github.com/getsentry/sentry-ruby/pull/2862))
28
+- Fix CGI imports for ruby 4.x ([#2863](https://github.com/getsentry/sentry-ruby/pull/2863))
29
30
## 6.3.1
31
sentry-ruby/lib/sentry/baggage.rb
@@ -1,6 +1,6 @@
1
# frozen_string_literal: true
2
3
-require "cgi"
+require "cgi/escape"
4
5
module Sentry
6
# A {https://www.w3.org/TR/baggage W3C Baggage Header} implementation.
sentry-ruby/lib/sentry/configuration.rb
@@ -1,5 +1,6 @@
require "concurrent/utility/processor_counter"
require "sentry/utils/exception_cause_chain"
0 commit comments