sentry-raven 2.12.2 → 2.12.3

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: bdc627591fb17683963ae291a87f94ead31ce93c
4
- data.tar.gz: 19a6ba217e9c5808452c3c93e427f87d0a9120af
3
+ metadata.gz: 86dc048eed812d93571e381134d4138c7eadd0f7
4
+ data.tar.gz: 70b6f8806383b20868acf609aed986160c8f31bb
5
5
  SHA512:
6
- metadata.gz: 33c2a3c753ced3ce75cdd0c7899d392659570f71f740e8dd57b6c1c473c8fe004e67d828346093056770634063f5a9b676d661d1b44c488a531176bbf25ccbb1
7
- data.tar.gz: de75d311c813b60c94f0ccbd1ba418c2e35c265fab61defda4028c2c3973a26b65484024d31212582f3e878f698e15b64572b3dea0f543f930c0675b4abdec3a
6
+ metadata.gz: 20b21e009d1ec5d1757fef8c8ff8e60dd663dfbfc5fc2cd173caed906f9e011ca496480d25076e9198d82855edb4d0b50ae9300cb4ec0f1cb102cb0e98987a05
7
+ data.tar.gz: 209abfc6bf093fd2640e76db98315673070d20069bfe5b52b5d4df24ff956caac1f3c6e7358be13bbfb3cd25d0a8863f99e328c42353bc78011fd417697fa617
@@ -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.8.0
40
+ - rvm: jruby-9.2.9.0
41
41
  env: JRUBY_OPTS="--dev -J-Djruby.launch.inproc=true -J-Xmx1024M" RAILS_VERSION=4
42
- - rvm: jruby-9.2.8.0
42
+ - rvm: jruby-9.2.9.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
data/README.md CHANGED
@@ -133,4 +133,4 @@ For more information, see [Context](https://docs.sentry.io/clients/ruby/context/
133
133
  * [Documentation](https://docs.sentry.io/clients/ruby/)
134
134
  * [Bug Tracker](https://github.com/getsentry/raven-ruby/issues)
135
135
  * [Forum](https://forum.sentry.io/)
136
- * [IRC](irc://irc.freenode.net/sentry>) (irc.freenode.net, #sentry)
136
+ - [Discord](https://discord.gg/ez5KZN7)
@@ -1,3 +1,8 @@
1
+ 2.12.3
2
+ ----
3
+
4
+ *FIX: crash when Process.wait is used [@asBrettisay, #895]
5
+
1
6
  2.12.2
2
7
  ----
3
8
 
@@ -100,7 +100,7 @@ module Raven
100
100
 
101
101
  def sys_command(command)
102
102
  result = `#{command} 2>&1` rescue nil
103
- return if result.nil? || result.empty? || $CHILD_STATUS.exitstatus != 0
103
+ return if result.nil? || result.empty? || ($CHILD_STATUS && $CHILD_STATUS.exitstatus != 0)
104
104
  result.strip
105
105
  end
106
106
  end
@@ -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.12.2" # rubocop:disable Style/MutableConstant
4
+ VERSION = "2.12.3" # 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.12.2
4
+ version: 2.12.3
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-10-24 00:00:00.000000000 Z
11
+ date: 2019-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday