sentry-raven 2.11.0 → 2.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5dbb5d7f816a729b6db4d0834a247c148e9d5868
4
- data.tar.gz: 9831b2ba3a02c8a56256f7b88583557042f2aaf0
3
+ metadata.gz: 1da04c09820186670cabb0803326a301f3e8f72a
4
+ data.tar.gz: 48c8fe3897dfbb19baeda92b67282fb3dab880c7
5
5
  SHA512:
6
- metadata.gz: 1cad74ac075c322f52948b47d492ebe8fd571886c14f30428ac0258632d0fc4a5f4f8869bf96c8633bc618616aa1beb1e141a9f83fe385cd143aa24b7c91cc98
7
- data.tar.gz: 7545cb15e8e3afe85011d3608a80ccc34f864a32053f30e8f94707b91dff42f5da3ec4331ddccfe2735b5f72a65eb402be3e1a919137aeeaa6bada9c2ff6e526
6
+ metadata.gz: 3979b6826d05f685ae1a4ac62b9273ec1dc6c71c50327c3c094cd56fe8dc5fbb0565d5e5d022fb48a0bd8d8a76f5d3824765d7c163e316f30a1d1f6e0e622021
7
+ data.tar.gz: 9f7d12647aa0b088d539b1e3253cf464f32587f8f6b2eb628d41ffda8492259713d9ff20b39abaa259b5277a038d241a64731d697d20b82c0298dfff54213d77
@@ -1,6 +1,5 @@
1
1
  language: ruby
2
2
  dist: trusty
3
- sudo: false
4
3
  group: beta
5
4
  cache: bundler
6
5
 
@@ -11,10 +10,11 @@ branches:
11
10
  only: [master]
12
11
 
13
12
  rvm:
14
- - 2.2.9
15
- - 2.3.6
16
- - 2.4.3
17
- - 2.5.0
13
+ - 2.2.10
14
+ - 2.3.8
15
+ - 2.4.6
16
+ - 2.5.5
17
+ - 2.6.3
18
18
 
19
19
  env:
20
20
  - RAILS_VERSION=4
@@ -37,9 +37,9 @@ matrix:
37
37
  env: RAILS_VERSION=4
38
38
  - rvm: jruby-1.7.27
39
39
  env: JRUBY_OPTS="--dev" RAILS_VERSION=4
40
- - rvm: jruby-9.2.0.0
40
+ - rvm: jruby-9.2.8.0
41
41
  env: JRUBY_OPTS="--dev -J-Djruby.launch.inproc=true -J-Xmx1024M" RAILS_VERSION=4
42
- - rvm: jruby-9.2.0.0
42
+ - rvm: jruby-9.2.8.0
43
43
  env: JRUBY_OPTS="--dev -J-Djruby.launch.inproc=true -J-Xmx1024M" RAILS_VERSION=5
44
44
  - rvm: ruby-head
45
45
  env: RAILS_VERSION=0
@@ -1,3 +1,8 @@
1
+ 2.11.1
2
+
3
+ * FIX: Call `to_s` on breadcrumb message [@halkeye , #914]
4
+ ----
5
+
1
6
  2.11.0
2
7
  ----
3
8
 
@@ -36,7 +36,7 @@ module Raven
36
36
 
37
37
  # some loggers will add leading/trailing space as they (incorrectly, mind you)
38
38
  # think of logging as a shortcut to std{out,err}
39
- message = message.strip
39
+ message = message.to_s.strip
40
40
 
41
41
  last_crumb = Raven.breadcrumbs.peek
42
42
  # try to avoid dupes from logger broadcasts
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module Raven
3
3
  # Freezing this constant breaks in 1.9.x
4
- VERSION = "2.11.0" # rubocop:disable Style/MutableConstant
4
+ VERSION = "2.11.1" # rubocop:disable Style/MutableConstant
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentry-raven
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.0
4
+ version: 2.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-07-30 00:00:00.000000000 Z
11
+ date: 2019-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday