Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v6.26.4 #818

Merged
merged 5 commits into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
Changelog
=========

## v6.26.4 (25 March 2024)

### Fixes

* Fix Unicode encoding issues when using `Exception#detailed_message` (Ruby 3.2+)
| [#817](https://github.com/bugsnag/bugsnag-ruby/pull/817)
* Fix compatibility with Ruby 3.4-dev
| [#815](https://github.com/bugsnag/bugsnag-ruby/pull/815)
| [k0kubun](https://github.com/k0kubun)

## v6.26.3 (24 January 2024)

### Fixes

* Handle mailto links in `Cleaner#clean_url`
| [#813](https://github.com/bugsnag/bugsnag-ruby/pull/813)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.26.3
6.26.4
9 changes: 8 additions & 1 deletion lib/bugsnag/report.rb
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,15 @@ def error_message(exception, class_name)
exception.detailed_message
end

# the string returned by 'detailed_message' defaults to 'ASCII_8BIT' but
# is actually UTF-8 encoded; we can't convert the encoding normally as its
# internal encoding doesn't match its actual encoding
message.force_encoding(::Encoding::UTF_8) if message.encoding == ::Encoding::ASCII_8BIT

# remove the class name to be consistent with Exception#message
message.sub(" (#{class_name})", '')
message.sub!(" (#{class_name})".encode(message.encoding), "") rescue nil

message
end

def generate_raw_exceptions(exception)
Expand Down
2 changes: 1 addition & 1 deletion lib/bugsnag/stacktrace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Bugsnag
module Stacktrace
# e.g. "org/jruby/RubyKernel.java:1264:in `catch'"
BACKTRACE_LINE_REGEX = /^((?:[a-zA-Z]:)?[^:]+):(\d+)(?::in `([^']+)')?$/
BACKTRACE_LINE_REGEX = /^((?:[a-zA-Z]:)?[^:]+):(\d+)(?::in [`']([^']+)')?$/

# e.g. "org.jruby.Ruby.runScript(Ruby.java:807)"
JAVA_BACKTRACE_REGEX = /^(.*)\((.*)(?::([0-9]+))?\)$/
Expand Down
92 changes: 77 additions & 15 deletions spec/report_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@ def detailed_message
end
end

class ExceptionWithDetailedMessageReturningEncodedString < Exception
def initialize(message, encoding)
super(message)
@encoding = encoding
end

def detailed_message
"abc #{self} xyz".encode(@encoding)
end
end

shared_examples "Report or Event tests" do |class_to_test|
context "metadata" do
include_examples(
Expand Down Expand Up @@ -1465,24 +1476,75 @@ def detailed_message
}
end

it "uses Exception#detailed_message if available" do
Bugsnag.notify(ExceptionWithDetailedMessage.new("some message"))
context "#detailed_message" do
it "uses Exception#detailed_message if available" do
Bugsnag.notify(ExceptionWithDetailedMessage.new("some message"))

expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)
expect(exception["errorClass"]).to eq("ExceptionWithDetailedMessage")
expect(exception["message"]).to eq("some message with some extra detail")
}
end
expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)
expect(exception["errorClass"]).to eq("ExceptionWithDetailedMessage")
expect(exception["message"]).to eq("some message with some extra detail")
}
end

it "handles implementations of Exception#detailed_message with no 'highlight' parameter" do
Bugsnag.notify(ExceptionWithDetailedMessageButNoHighlight.new("some message"))
it "handles implementations of Exception#detailed_message with no 'highlight' parameter" do
Bugsnag.notify(ExceptionWithDetailedMessageButNoHighlight.new("some message"))

expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)
expect(exception["errorClass"]).to eq("ExceptionWithDetailedMessageButNoHighlight")
expect(exception["message"]).to eq("detail about 'some message'")
}
expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)
expect(exception["errorClass"]).to eq("ExceptionWithDetailedMessageButNoHighlight")
expect(exception["message"]).to eq("detail about 'some message'")
}
end

it "converts ASCII_8BIT encoding to UTF-8" do
Bugsnag.notify(Exception.new("大好き\n大好き"))

expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)
expect(exception["message"]).to eq("大好き\n大好き")
}
end

it "leaves UTF-8 strings as-is" do
exception = ExceptionWithDetailedMessageButNoHighlight.new("Обичам те\n大好き")
expect(exception.detailed_message.encoding).to be(Encoding::UTF_8)

Bugsnag.notify(exception)

expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)
expect(exception["message"]).to eq("detail about 'Обичам те\n大好き'")
}
end

it "handles UTF-16 strings" do
exception = ExceptionWithDetailedMessageReturningEncodedString.new("Обичам те\n大好き", Encoding::UTF_16)
expect(exception.detailed_message.encoding).to be(Encoding::UTF_16)

Bugsnag.notify(exception)

expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)

# the exception message is converted to UTF-8 by the Cleaner
expect(exception["message"]).to eq("abc Обичам те\n大好き xyz")
}
end

it "handles Shift JIS strings" do
exception = ExceptionWithDetailedMessageReturningEncodedString.new("大好き\n大好き", Encoding::Shift_JIS)
expect(exception.detailed_message.encoding).to be(Encoding::Shift_JIS)

Bugsnag.notify(exception)

expect(Bugsnag).to have_sent_notification{ |payload, headers|
exception = get_exception_from_payload(payload)

# the exception message is converted to UTF-8 by the Cleaner
expect(exception["message"]).to eq("abc 大好き\n大好き xyz")
}
end
end

it "supports unix-style paths in backtraces" do
Expand Down
Loading