logstash-codec-rubydebug 3.0.5 → 3.0.6

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
- SHA1:
3
- metadata.gz: 95597bd6aaa8e8367c4886657b919af524a38a82
4
- data.tar.gz: 4947294bd86ad76deef7eed7401b34bd81077c68
2
+ SHA256:
3
+ metadata.gz: 8a159dfbee71aa926219ef18cfd0c500344f96088b614547c4d1f13215876326
4
+ data.tar.gz: b722151b16f30e3969ab80db50b9368d00ed43ae6fa3d922c9fd872ff2bc55ec
5
5
  SHA512:
6
- metadata.gz: 3dd933930590e6d5fc763f8f05948c4501e3a716a10fddf741faf91f638393670db351d8b92927f630a09d4186af39300ef6e64cb0796c70b371e1e2ecc050e7
7
- data.tar.gz: bf35f8218be9085b9b22a2a18bd8474b888379fed146f15fa01ce82c1f148cb925ba5518f482038a8bb258ee44bd05745fbf8c71000c3a6e2477c827fa027cd7
6
+ metadata.gz: df1c1b9d58469133d6620388cd5214f510145b1ec2f7b858168d7e624e0c3713407748ac5ed2d447abe08294517fa6b3b22c3a15da4f02211e032820c7c2cb1e
7
+ data.tar.gz: 688fbf9d7dfdcda5ef9504ac33ec82244e7b4a9f775207f274ffb8a2fcdc1848e5e30b3fa790a0d7a83d5bdf78082464fcedd1b7564ff46a54a52db2d0c5f7c6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.0.6
2
+ - Fixes crash that could occur on startup if `$HOME` was unset or if `${HOME}/.aprc` was unreadable by pinning `awesome_print` dependency to a release before the bug was introduced.
3
+
1
4
  ## 3.0.5
2
5
  - Update gemspec summary
3
6
 
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012-2018 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-codec-rubydebug'
4
- s.version = '3.0.5'
4
+ s.version = '3.0.6'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Applies the Ruby Awesome Print library to Logstash events"
7
7
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -22,7 +22,13 @@ Gem::Specification.new do |s|
22
22
  # Gem dependencies
23
23
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
24
 
25
- s.add_runtime_dependency 'awesome_print'
25
+ # 2018-06-04: as of this writing, the latest release of awesome_print (v1.8.0) contains a bug that causes the Logstash
26
+ # process to crash while loading this dependency if an exception is raised attempting to load defaults (e.g., when
27
+ # `ENV['HOME']` is unset or the JVM doesn't have permission to read the `.aprc` file at that address).
28
+ #
29
+ # Pin to 1.7.0 until the already-fixed code on awesome_print's master branch finds its way to a release.
30
+ # SEE: https://github.com/awesome-print/awesome_print/issues/338
31
+ s.add_runtime_dependency 'awesome_print', '1.7.0'
26
32
 
27
33
  s.add_development_dependency 'logstash-devutils'
28
34
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-codec-rubydebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.5
4
+ version: 3.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-14 00:00:00.000000000 Z
11
+ date: 2018-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -33,17 +33,17 @@ dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  requirement: !ruby/object:Gem::Requirement
35
35
  requirements:
36
- - - ">="
36
+ - - '='
37
37
  - !ruby/object:Gem::Version
38
- version: '0'
38
+ version: 1.7.0
39
39
  name: awesome_print
40
40
  prerelease: false
41
41
  type: :runtime
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - ">="
44
+ - - '='
45
45
  - !ruby/object:Gem::Version
46
- version: '0'
46
+ version: 1.7.0
47
47
  - !ruby/object:Gem::Dependency
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements:
@@ -58,7 +58,9 @@ dependencies:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
- description: This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program
61
+ description: This gem is a Logstash plugin required to be installed on top of the
62
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
63
+ gem is not a stand-alone program
62
64
  email: info@elastic.co
63
65
  executables: []
64
66
  extensions: []
@@ -96,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
98
  version: '0'
97
99
  requirements: []
98
100
  rubyforge_project:
99
- rubygems_version: 2.4.8
101
+ rubygems_version: 2.6.13
100
102
  signing_key:
101
103
  specification_version: 4
102
104
  summary: Applies the Ruby Awesome Print library to Logstash events