bugsnag 2.8.11 → 2.8.12

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: 4697b59038282e5bb3b097661f1eae25e940bd1c
4
- data.tar.gz: 5f6f93268fa517f7c50657913111d51d46961405
3
+ metadata.gz: c2f66dcb23eacb6017a6815314dd03cd8d245566
4
+ data.tar.gz: b46962c2a2cad2007e43fcea706e243aabf38af9
5
5
  SHA512:
6
- metadata.gz: bcb13960f60abdd65a384f05998d509d0493cd69e1f6d4db18e6479ad3f77bf366d8b149981f8fc7182a226e1d946fbf612a8f824a7ae239faf1bf7bea6a626c
7
- data.tar.gz: 0ac38f55c9d0277539c538fddfa880b70010b15a2c228ca499aec84b8741dba735ea23a4c669666d99a0d41202ad74b3f2563975fbfd99e307186d42cdb68e6a
6
+ metadata.gz: e04d26556f1ba98779c04754fa2820d2248f2033d5b54348cd5a42237bbd4754913c814ee3b86d804482478b260905a931aa54da063126489a059b4cdcb32d2f
7
+ data.tar.gz: b637b49697e20df7b3ad6f0b33485a928835f7edd71a9e410a947af18d0e684c6c5c6e7a2c9e481c32b3291089305a981c8e5327255f90a051c13502f86b27a6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 2.8.12
5
+ ------
6
+
7
+ - Ensure timeout is set when configured
8
+ - Allow on premise installations to easily send deploy notifications
9
+
4
10
  2.8.11
5
11
  ------
6
12
 
data/README.md CHANGED
@@ -534,7 +534,7 @@ config.proxy_password = "proxy_secret_password_here"
534
534
  ```
535
535
 
536
536
  ###timeout
537
- By default the timeout for posting errors to Bugsnag is 5 seconds, to change this
537
+ By default the timeout for posting errors to Bugsnag is 15 seconds, to change this
538
538
  you can set the `timeout`:
539
539
 
540
540
  ```ruby
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.8.11
1
+ 2.8.12
@@ -78,6 +78,7 @@ module Bugsnag
78
78
  self.endpoint = DEFAULT_ENDPOINT
79
79
  self.hostname = default_hostname
80
80
  self.delivery_method = DEFAULT_DELIVERY_METHOD
81
+ self.timeout = 15
81
82
 
82
83
  # Read the API key from the environment
83
84
  self.api_key = ENV["BUGSNAG_API_KEY"]
@@ -32,7 +32,9 @@ namespace :bugsnag do
32
32
  :revision => fetch(:current_revision, ENV["BUGSNAG_REVISION"]),
33
33
  :repository => fetch(:repo_url, ENV["BUGSNAG_REPOSITORY"]),
34
34
  :branch => fetch(:branch, ENV["BUGSNAG_BRANCH"]),
35
- :app_version => fetch(:app_version, ENV["BUGSNAG_APP_VERSION"])
35
+ :app_version => fetch(:app_version, ENV["BUGSNAG_APP_VERSION"]),
36
+ :endpoint => fetch(:bugsnag_endpoint, Bugsnag::Configuration::DEFAULT_ENDPOINT),
37
+ :use_ssl => fetch(:bugsnag_use_ssl, true)
36
38
  })
37
39
  rescue
38
40
  error "Bugsnag deploy notification failed, #{$!.inspect}"
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: 2.8.11
4
+ version: 2.8.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-31 00:00:00.000000000 Z
11
+ date: 2015-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json