honeybadger 5.13.3 → 5.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/honeybadger/cli/install.rb +4 -0
- data/lib/honeybadger/cli/main.rb +2 -0
- data/lib/honeybadger/config/defaults.rb +5 -0
- data/lib/honeybadger/util/sanitizer.rb +1 -2
- data/lib/honeybadger/version.rb +1 -1
- data/lib/honeybadger/worker.rb +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 722de127dc6619f9642da342b7e2a64cb21227c70a1edcb4c43b8cd87fff4775
|
4
|
+
data.tar.gz: b5ec24fe5ac00d88ae2a774f099aa56bb546a5d9a331eb0d28d9abc0ac653ae9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df56556a7a476570dcf3711f26895f225ab55b343fca701aca2a57ac86a99cded62ca51f8773d46726dd2f5190301ce46f3619372b0eb60dc273214e66b54d1e
|
7
|
+
data.tar.gz: 1a707859ab8a20219c6fb00f32a23e9a04439eedb1036868c7a31e57daf8a06cd008da81162e8b3cf219ad435a3858cdfbca80c6f5c8463754be3f3b80167c1a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,19 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
3
|
|
4
|
+
## [5.14.0](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.13.3...v5.14.0) (2024-07-11)
|
5
|
+
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* add --host and --ui_host flags to install command ([#584](https://github.com/honeybadger-io/honeybadger-ruby/issues/584)) ([5f171ba](https://github.com/honeybadger-io/honeybadger-ruby/commit/5f171badc0602df76a87e4caa0e06c9959648376))
|
10
|
+
* add ability to link to a custom domain after creating a notice ([#583](https://github.com/honeybadger-io/honeybadger-ruby/issues/583)) ([5b32b23](https://github.com/honeybadger-io/honeybadger-ruby/commit/5b32b231bb5562b3d97066e3a41f39de76b2f4a3))
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* squash warning about BigDecimal ([#578](https://github.com/honeybadger-io/honeybadger-ruby/issues/578)) ([47ff813](https://github.com/honeybadger-io/honeybadger-ruby/commit/47ff8130047b723b9d85be07b308c4883320eabb))
|
16
|
+
|
4
17
|
## [5.13.3](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.13.2...v5.13.3) (2024-07-06)
|
5
18
|
|
6
19
|
|
@@ -78,6 +78,10 @@ debug: false
|
|
78
78
|
insights:
|
79
79
|
enabled: #{options["insights"]}
|
80
80
|
CONFIG
|
81
|
+
if (connection = options.slice("host", "ui_host")).any?
|
82
|
+
file.puts("\n# Override hosts\nconnection:")
|
83
|
+
connection.each {|k,v| file.puts(" #{k}: '#{v}'") }
|
84
|
+
end
|
81
85
|
end
|
82
86
|
end
|
83
87
|
|
data/lib/honeybadger/cli/main.rb
CHANGED
@@ -49,6 +49,8 @@ WELCOME
|
|
49
49
|
|
50
50
|
desc 'install API_KEY', 'Install Honeybadger into a new project'
|
51
51
|
option :insights, type: :boolean, aliases: :'-i', default: false, desc: 'Enable Honeybadger Insights'
|
52
|
+
option :host, type: :string
|
53
|
+
option :ui_host, type: :string
|
52
54
|
def install(api_key)
|
53
55
|
Install.new(options, api_key).run
|
54
56
|
rescue => e
|
@@ -166,6 +166,11 @@ module Honeybadger
|
|
166
166
|
default: 'api.honeybadger.io'.freeze,
|
167
167
|
type: String
|
168
168
|
},
|
169
|
+
:'connection.ui_host' => {
|
170
|
+
description: 'The host to use when viewing data.',
|
171
|
+
default: 'app.honeybadger.io'.freeze,
|
172
|
+
type: String
|
173
|
+
},
|
169
174
|
:'connection.port' => {
|
170
175
|
description: 'The port to use when sending data.',
|
171
176
|
default: nil,
|
@@ -1,4 +1,3 @@
|
|
1
|
-
require 'bigdecimal'
|
2
1
|
require 'set'
|
3
2
|
|
4
3
|
require 'honeybadger/conversions'
|
@@ -21,7 +20,7 @@ module Honeybadger
|
|
21
20
|
RECURSION = '[RECURSION]'.freeze
|
22
21
|
TRUNCATED = '[TRUNCATED]'.freeze
|
23
22
|
|
24
|
-
IMMUTABLE = [NilClass, FalseClass, TrueClass, Symbol, Numeric,
|
23
|
+
IMMUTABLE = [NilClass, FalseClass, TrueClass, Symbol, Numeric, Method].freeze
|
25
24
|
|
26
25
|
MAX_STRING_SIZE = 65536
|
27
26
|
|
data/lib/honeybadger/version.rb
CHANGED
data/lib/honeybadger/worker.rb
CHANGED
@@ -226,10 +226,11 @@ module Honeybadger
|
|
226
226
|
when 413
|
227
227
|
warn { sprintf('Error report failed: Payload is too large. id=%s code=%s', msg.id, response.code) }
|
228
228
|
when 201
|
229
|
+
host = config.get(:'connection.ui_host')
|
229
230
|
if throttle = dec_throttle
|
230
|
-
info { sprintf('Success ⚡ https
|
231
|
+
info { sprintf('Success ⚡ https://#{host}/notice/%s id=%s code=%s throttle=%s interval=%s', msg.id, msg.id, response.code, throttle, throttle_interval) }
|
231
232
|
else
|
232
|
-
info { sprintf('Success ⚡ https
|
233
|
+
info { sprintf('Success ⚡ https://#{host}/notice/%s id=%s code=%s', msg.id, msg.id, response.code) }
|
233
234
|
end
|
234
235
|
when :stubbed
|
235
236
|
info { sprintf('Success ⚡ Development mode is enabled; this error will be reported if it occurs after you deploy your app. id=%s', msg.id) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: honeybadger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Honeybadger Industries LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
14
14
|
email:
|