honeybadger 4.3.0 → 4.3.1
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 +4 -0
- data/README.md +10 -1
- data/lib/honeybadger/cli/test.rb +1 -1
- data/lib/honeybadger/version.rb +1 -1
- 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: 154fe2f9fde40cf439b82bf35d5fb32474304e79b29fa6202d7de64920475435
|
|
4
|
+
data.tar.gz: 347644c0b97c94f0b9995186bd2ebbdda67ea9a8af9933defe07370f29203980
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aebf85527c70c7cf5531e12d18625ce8a61f0ad005a9a07a274ca59cc38146cea10f48c344d19091adadf64da779f93c313c18b0943d552acbeec2887f25e18a
|
|
7
|
+
data.tar.gz: 4975a88db66f69085b14446d7d3e9ff16722d0391f4fcb4ddb4e59893c001e988a418e0928fe6e1bfae3e1d6d113adb482927d5aab92435bca7556f32f82fa2b
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ adheres to [Semantic Versioning](http://semver.org/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [4.3.1] - 2019-05-30
|
|
9
|
+
### Fixed
|
|
10
|
+
- Add Rails 6 RC1 Support
|
|
11
|
+
|
|
8
12
|
## [4.3.0] - 2019-05-17
|
|
9
13
|
### Added
|
|
10
14
|
- Send a value for action when reporting a component for Sidekiq jobs -@stympy
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Honeybadger for Ruby
|
|
2
2
|
|
|
3
|
-
[](https://circleci.com/gh/honeybadger-io/honeybadger-ruby)
|
|
4
4
|
[](http://badge.fury.io/rb/honeybadger)
|
|
5
5
|
[](https://dependabot.com/compatibility-score.html?dependency-name=honeybadger&package-manager=bundler&version-scheme=semver)
|
|
6
6
|
|
|
@@ -43,6 +43,15 @@ versions of [Rails](http://rubyonrails.org/).
|
|
|
43
43
|
* The integration test suite can be run with `rake spec:features`.
|
|
44
44
|
* The combined suite can be run with `rake`.
|
|
45
45
|
|
|
46
|
+
### Releasing
|
|
47
|
+
|
|
48
|
+
To release a new [patch] version:
|
|
49
|
+
|
|
50
|
+
1. With a clean working tree, use `rake bump:patch` to bump the version and stage the changes (you can make additional manual changes at this point if necessary).
|
|
51
|
+
2. Use `rake release` to run the tests, commit/tag the release, build the gem, and push to GitHub/RubyGems.
|
|
52
|
+
|
|
53
|
+
See `rake -T` for additional tasks.
|
|
54
|
+
|
|
46
55
|
### License
|
|
47
56
|
|
|
48
57
|
The Honeybadger gem is MIT licensed. See the [LICENSE](https://raw.github.com/honeybadger-io/honeybadger-ruby/master/LICENSE) file in this repository for details.
|
data/lib/honeybadger/cli/test.rb
CHANGED
|
@@ -151,7 +151,7 @@ module Honeybadger
|
|
|
151
151
|
end
|
|
152
152
|
|
|
153
153
|
ssl = defined?(::Rails.configuration.force_ssl) && ::Rails.configuration.force_ssl
|
|
154
|
-
env = ::Rack::MockRequest.env_for("http#{ ssl ? 's' : nil }://www.example.com/verify", 'REMOTE_ADDR' => '127.0.0.1')
|
|
154
|
+
env = ::Rack::MockRequest.env_for("http#{ ssl ? 's' : nil }://www.example.com/verify", 'REMOTE_ADDR' => '127.0.0.1', 'HTTP_HOST' => 'localhost')
|
|
155
155
|
|
|
156
156
|
::Rails.application.call(env)
|
|
157
157
|
end
|
data/lib/honeybadger/version.rb
CHANGED
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: 4.3.
|
|
4
|
+
version: 4.3.1
|
|
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: 2019-05-
|
|
11
|
+
date: 2019-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
|
14
14
|
email:
|