bugsnag 6.26.3 → 6.26.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51f147f279fd5a2a7bbe26663246348f4d4bbccf9d901febeda2620d533341d3
4
- data.tar.gz: 3648e3a84b41ff738318c4ea8b0db7218a6c3dd149cd084604c9cbe102cfc593
3
+ metadata.gz: 0f5f206e7ff8559ae2b853a2600004877d41d36414ea82b1cce49c41940e34dc
4
+ data.tar.gz: '08e3054a24b2c3928cd8e130a995525223989d09fdf1d0a5fdaefc71d460bbc0'
5
5
  SHA512:
6
- metadata.gz: d3942fed5bf6c50cdaa12d25e39c7e7218badf7ef1d9481baeacd220fe5a14271200e47d552eb2e35008fdb83c3a1eac11eaaaae72ea1228879ad5be2c191e57
7
- data.tar.gz: 10a2182a9002b5d0f664ba8a442717c5dafbcb32cc96561c179189c5a3be0661dc824070eaa3c28d32f927a732549962e13d556ef8fc2b454a9f44a177b683af
6
+ metadata.gz: 785d927eeaf5c3c2d2af5c04b33295dee3ce172354da1434b245e0d706b29d04aa6261c9a55764d9b726e0d6e9f0cf1e4523925925bb5f7118b86954e391b1d9
7
+ data.tar.gz: f11f3d9508cee3b65a4da040d681aa703710cc2e3718b40292daa5534d4ffdcb929334ef9640bca4901754379848d2bd42e8f63b9211b7eb5d2f758499b9d950
data/CHANGELOG.md CHANGED
@@ -1,8 +1,20 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## v6.26.4 (25 March 2024)
5
+
6
+ ### Fixes
7
+
8
+ * Fix Unicode encoding issues when using `Exception#detailed_message` (Ruby 3.2+)
9
+ | [#817](https://github.com/bugsnag/bugsnag-ruby/pull/817)
10
+ * Fix compatibility with Ruby 3.4-dev
11
+ | [#815](https://github.com/bugsnag/bugsnag-ruby/pull/815)
12
+ | [k0kubun](https://github.com/k0kubun)
13
+
4
14
  ## v6.26.3 (24 January 2024)
5
15
 
16
+ ### Fixes
17
+
6
18
  * Handle mailto links in `Cleaner#clean_url`
7
19
  | [#813](https://github.com/bugsnag/bugsnag-ruby/pull/813)
8
20
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.26.3
1
+ 6.26.4
@@ -466,8 +466,15 @@ module Bugsnag
466
466
  exception.detailed_message
467
467
  end
468
468
 
469
+ # the string returned by 'detailed_message' defaults to 'ASCII_8BIT' but
470
+ # is actually UTF-8 encoded; we can't convert the encoding normally as its
471
+ # internal encoding doesn't match its actual encoding
472
+ message.force_encoding(::Encoding::UTF_8) if message.encoding == ::Encoding::ASCII_8BIT
473
+
469
474
  # remove the class name to be consistent with Exception#message
470
- message.sub(" (#{class_name})", '')
475
+ message.sub!(" (#{class_name})".encode(message.encoding), "") rescue nil
476
+
477
+ message
471
478
  end
472
479
 
473
480
  def generate_raw_exceptions(exception)
@@ -3,7 +3,7 @@ require_relative 'code_extractor'
3
3
  module Bugsnag
4
4
  module Stacktrace
5
5
  # e.g. "org/jruby/RubyKernel.java:1264:in `catch'"
6
- BACKTRACE_LINE_REGEX = /^((?:[a-zA-Z]:)?[^:]+):(\d+)(?::in `([^']+)')?$/
6
+ BACKTRACE_LINE_REGEX = /^((?:[a-zA-Z]:)?[^:]+):(\d+)(?::in [`']([^']+)')?$/
7
7
 
8
8
  # e.g. "org.jruby.Ruby.runScript(Ruby.java:807)"
9
9
  JAVA_BACKTRACE_REGEX = /^(.*)\((.*)(?::([0-9]+))?\)$/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bugsnag
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.26.3
4
+ version: 6.26.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-24 00:00:00.000000000 Z
11
+ date: 2024-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -107,7 +107,7 @@ homepage: https://github.com/bugsnag/bugsnag-ruby
107
107
  licenses:
108
108
  - MIT
109
109
  metadata:
110
- changelog_uri: https://github.com/bugsnag/bugsnag-ruby/blob/v6.26.3/CHANGELOG.md
110
+ changelog_uri: https://github.com/bugsnag/bugsnag-ruby/blob/v6.26.4/CHANGELOG.md
111
111
  documentation_uri: https://docs.bugsnag.com/platforms/ruby/
112
112
  source_code_uri: https://github.com/bugsnag/bugsnag-ruby/
113
113
  rubygems_mfa_required: 'true'
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
126
  - !ruby/object:Gem::Version
127
127
  version: '0'
128
128
  requirements: []
129
- rubygems_version: 3.3.7
129
+ rubygems_version: 3.4.10
130
130
  signing_key:
131
131
  specification_version: 4
132
132
  summary: Ruby notifier for bugsnag.com