fluent-plugin-logzio 0.0.20 → 0.0.21

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
- SHA1:
3
- metadata.gz: 00712efa48ad7c34e8001348827d45f860bdd10b
4
- data.tar.gz: 10310e5d634b547ddf0dc5d4879eea68f26d11a9
2
+ SHA256:
3
+ metadata.gz: a6b850642fbf62e80b5033d03300ea4cbb3e600484836ae411877546785182a3
4
+ data.tar.gz: 2a40dc72118892e5bdf8bbf2becf44e6e2bf8688470034ae0152fb918b05a481
5
5
  SHA512:
6
- metadata.gz: f7c1125f92c1053390301557b1d5b35febabaaab47cf81e0f6ac52267fbe84fd8e73190690c50fe1df3a094d8049ff926b1c108d3d544a4eb25e0a07e37095b2
7
- data.tar.gz: d6603716d9b97514cf611358d212788a21bad1436e12a20427340ac5d1404f5b2d7470123c92d10ba11a129bf3b0be7724364caac76a81e205c471623902bbdf
6
+ metadata.gz: b98047acec6ffededc5c44f22ac3f2b451da2fc5c3b6a9d0b32f7d1e1a5e838f06c5ab1cdb4754f30500817a74bfebcbf0e92d1583b14d48f085ce348a203e7b
7
+ data.tar.gz: c05ed2eb34bd102938d8b00708ffa6ac0978b5420d46001925dcf0a9042e9b46ec14868b42b6396eb0c0be80663d81579186c58ed1fb2650643bd6ce52f10fa1
data/.whitesource ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "checkRunSettings": {
3
+ "vulnerableCheckRunConclusionLevel": "failure"
4
+ },
5
+ "issueSettings": {
6
+ "minSeverityLevel": "LOW"
7
+ }
8
+ }
data/README.md CHANGED
@@ -75,6 +75,7 @@ This is an **example** only. Your needs in production may vary!
75
75
 
76
76
 
77
77
  ## Release Notes
78
+ - 0.0.21: Update gem `net-http-persistent` to 3.x.
78
79
  - 0.0.20: Support gzip compression
79
80
  - 0.0.18: Support proxy_uri and proxy_cert in the configuration file. Put logzio output plugin class under Fluent::Plugin module and thus work with multi workers.
80
81
  - 0.0.17: Optional truncate log messages when they are exceeding bulk size in warning logs
@@ -4,9 +4,9 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'fluent-plugin-logzio'
7
- s.version = '0.0.20'
8
- s.authors = ['Yury Kotov', 'Roi Rav-Hon', 'Arcadiy Ivanov']
9
- s.email = ['bairkan@gmail.com', 'roi@logz.io', 'arcadiy@ivanov.biz']
7
+ s.version = '0.0.21'
8
+ s.authors = ['Yury Kotov', 'Roi Rav-Hon', 'Arcadiy Ivanov', 'Miri Ignatiev']
9
+ s.email = ['bairkan@gmail.com', 'roi@logz.io', 'arcadiy@ivanov.biz', 'miri.ignatiev@logz.io']
10
10
  s.homepage = 'https://github.com/logzio/fluent-plugin-logzio'
11
11
  s.summary = %q{Fluentd plugin for output to Logz.io}
12
12
  s.description = %q{Fluentd pluging (fluent.org) for output to Logz.io (logz.io)}
@@ -19,10 +19,10 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ['lib']
20
20
  s.required_ruby_version = Gem::Requirement.new('>= 2.1.0')
21
21
 
22
- s.add_dependency 'net-http-persistent', '~> 2.9'
22
+ s.add_dependency 'net-http-persistent', '~> 3.0'
23
23
  s.add_runtime_dependency 'fluentd', ['>= 0.14.0', '< 2']
24
24
  s.add_development_dependency 'rake', '~> 12.3'
25
25
  s.add_development_dependency 'bundler', '~> 1.16'
26
26
  s.add_development_dependency 'rspec', '~> 3.7'
27
27
  s.add_development_dependency 'test-unit', '~> 3.2'
28
- end
28
+ end
@@ -44,7 +44,7 @@ module Fluent::Plugin
44
44
  super
45
45
  require 'net/http/persistent'
46
46
  @uri = URI @endpoint_url
47
- @http = Net::HTTP::Persistent.new 'fluent-plugin-logzio', :ENV
47
+ @http = Net::HTTP::Persistent.new name: 'fluent-plugin-logzio', proxy: :ENV
48
48
  @http.headers['Content-Type'] = 'text/plain'
49
49
  if @gzip
50
50
  @http.headers['Content-Encoding'] = 'gzip'
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-logzio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.20
4
+ version: 0.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yury Kotov
8
8
  - Roi Rav-Hon
9
9
  - Arcadiy Ivanov
10
+ - Miri Ignatiev
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
- date: 2019-03-21 00:00:00.000000000 Z
14
+ date: 2021-03-01 00:00:00.000000000 Z
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
16
17
  name: net-http-persistent
@@ -18,14 +19,14 @@ dependencies:
18
19
  requirements:
19
20
  - - "~>"
20
21
  - !ruby/object:Gem::Version
21
- version: '2.9'
22
+ version: '3.0'
22
23
  type: :runtime
23
24
  prerelease: false
24
25
  version_requirements: !ruby/object:Gem::Requirement
25
26
  requirements:
26
27
  - - "~>"
27
28
  - !ruby/object:Gem::Version
28
- version: '2.9'
29
+ version: '3.0'
29
30
  - !ruby/object:Gem::Dependency
30
31
  name: fluentd
31
32
  requirement: !ruby/object:Gem::Requirement
@@ -107,12 +108,14 @@ email:
107
108
  - bairkan@gmail.com
108
109
  - roi@logz.io
109
110
  - arcadiy@ivanov.biz
111
+ - miri.ignatiev@logz.io
110
112
  executables: []
111
113
  extensions: []
112
114
  extra_rdoc_files: []
113
115
  files:
114
116
  - ".gitignore"
115
117
  - ".rspec"
118
+ - ".whitesource"
116
119
  - Gemfile
117
120
  - LICENSE
118
121
  - README.md
@@ -142,8 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
145
  - !ruby/object:Gem::Version
143
146
  version: '0'
144
147
  requirements: []
145
- rubyforge_project: fluent-plugin-logzio
146
- rubygems_version: 2.5.2.3
148
+ rubygems_version: 3.0.3
147
149
  signing_key:
148
150
  specification_version: 4
149
151
  summary: Fluentd plugin for output to Logz.io