honeybadger 3.0.0.beta6 → 3.0.0

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
  SHA1:
3
- metadata.gz: 74dab15a34bc56efff8dc18638e90292ffb3f2fb
4
- data.tar.gz: 6039d424a5eb1d9198025dda9a7231a164a8af6f
3
+ metadata.gz: '06286610434dbeb5ce9a47b876bd0026feccdae3'
4
+ data.tar.gz: 110088ce45cdcf2d39d3bdaca37590ef098a5cfa
5
5
  SHA512:
6
- metadata.gz: 675a431e9586d5d3e1371248effd2c5f27a7b6d2b14bbc4c099fe30b0ee4484de35ef57f17eb6ce272079143286071a96e38c80367e523cfae4a362f61ff0b4d
7
- data.tar.gz: 593e71708e7ea207d9f72ae66f6225333aa05c84cd92d5351098d2ea4e8aae0853724006eebf0435f4753fa4435fa331f6a867bf01a0d505a5749a23e26c4e19
6
+ metadata.gz: 7c53ddeb9b1e77c924234124ce252e067287bfb38c3a962aae4bea99c11884dcd43582ac96a08dc3964abf823f15f3c572f6a1aecca2d54445340880211ef12a
7
+ data.tar.gz: fb74e0dba769dbfb74e484d759f44404ebad553aa19615696fce425faacc1097789fededdb7ffec6ea118958f4f5730b0856c53ddbffcfb78867f7673d9a92ae
data/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
- ## [3.0.0] - unreleased
8
+ ## [3.0.0] - 2017-02-06
9
9
  ### Added
10
10
  - You may now require 'honeybadger/ruby' instead of 'honeybadger' to get the
11
11
  agent without the integrations (no railtie, plugins or monkey patching).
@@ -69,6 +69,7 @@ adheres to [Semantic Versioning](http://semver.org/).
69
69
  ### Fixed
70
70
  - Arrays are no longer compacted during sanitization (`nil` values will be sent
71
71
  as they originally appeared).
72
+ - Resque plugin now reports `Resque::DirtyExit` exceptions.
72
73
 
73
74
  ## [2.7.2] - 2016-12-12
74
75
  ### Fixed
data/README.md CHANGED
@@ -30,14 +30,22 @@ Integrating with other libraries/frameworks is simple! [See the documentation](h
30
30
 
31
31
  ## Supported job queues
32
32
 
33
- | Framework | Version | Native? |
33
+ | Library | Version | Native? |
34
34
  | ------------- | ------------- | ------------ |
35
35
  | Sidekiq | any | yes |
36
36
  | Resque | any | yes |
37
37
  | Delayed Job | any | yes |
38
38
  | Sucker Punch | any | yes |
39
+ | Shoryuken | any | yes |
39
40
 
40
- You can integrate honeybadger into any Ruby script via the `Honeybadger.notify` method.
41
+ ## Other integrations
42
+
43
+ | Library | Version | Native? | Description |
44
+ | ------------- | ------------- | ------------ | ----------- |
45
+ | Devise/Warden | any | yes | Exceptions are automatically associated with the current user. |
46
+ | Thor | any | yes | Exceptions in commands are automatically reported. |
47
+
48
+ You can integrate honeybadger into any Ruby script via the `Honeybadger.notify` method.
41
49
 
42
50
  ## Getting Started
43
51
 
@@ -16,7 +16,7 @@ module Honeybadger
16
16
 
17
17
  IMMUTABLE = [NilClass, FalseClass, TrueClass, Symbol, Numeric, BigDecimal, Method].freeze
18
18
 
19
- MAX_STRING_SIZE = 2048
19
+ MAX_STRING_SIZE = 65536
20
20
 
21
21
  TRUNCATION_REPLACEMENT = '[TRUNCATED]'.freeze
22
22
 
@@ -1,4 +1,4 @@
1
1
  module Honeybadger
2
2
  # Public: The current String Honeybadger version.
3
- VERSION = '3.0.0.beta6'.freeze
3
+ VERSION = '3.0.0'.freeze
4
4
  end
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: 3.0.0.beta6
4
+ version: 3.0.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: 2017-01-31 00:00:00.000000000 Z
11
+ date: 2017-02-06 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Make managing application errors a more pleasant experience.
14
14
  email:
@@ -136,9 +136,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
136
  version: 2.1.0
137
137
  required_rubygems_version: !ruby/object:Gem::Requirement
138
138
  requirements:
139
- - - ">"
139
+ - - ">="
140
140
  - !ruby/object:Gem::Version
141
- version: 1.3.1
141
+ version: '0'
142
142
  requirements: []
143
143
  rubyforge_project:
144
144
  rubygems_version: 2.6.8