fluent-plugin-logzio 0.0.21 → 0.0.22

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
- SHA256:
3
- metadata.gz: a6b850642fbf62e80b5033d03300ea4cbb3e600484836ae411877546785182a3
4
- data.tar.gz: 2a40dc72118892e5bdf8bbf2becf44e6e2bf8688470034ae0152fb918b05a481
2
+ SHA1:
3
+ metadata.gz: f6e13567cce456b4bf9efe5ec2fcc72d9ab50648
4
+ data.tar.gz: 9c92ef500e341c040349be13f9ac4d2ea8a3ea96
5
5
  SHA512:
6
- metadata.gz: b98047acec6ffededc5c44f22ac3f2b451da2fc5c3b6a9d0b32f7d1e1a5e838f06c5ab1cdb4754f30500817a74bfebcbf0e92d1583b14d48f085ce348a203e7b
7
- data.tar.gz: c05ed2eb34bd102938d8b00708ffa6ac0978b5420d46001925dcf0a9042e9b46ec14868b42b6396eb0c0be80663d81579186c58ed1fb2650643bd6ce52f10fa1
6
+ metadata.gz: '09062c96178f0d3b42b2e5c9ace511b029ae3508e3beca477916b80b806e83f6ccb15bf94ce52eabebc2cce3e5a10d4b1009cf0c26e13752259578dac0e35479'
7
+ data.tar.gz: b84d592569e502023fb318fbe2f1408a9049156740233ab67aeca0b0c0333a5c8ca39cf79eb641494fde4c9326fa28b65ae472feecea8724418243906dceed32
@@ -0,0 +1,33 @@
1
+ name: git-secrets
2
+
3
+ # Controls when the workflow will run
4
+ # Triggers the workflow on push or pull request events but only for the main branch
5
+ on: [push]
6
+
7
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
8
+ jobs:
9
+ # This workflow contains a single job called "main"
10
+ git-secrets:
11
+ # The type of runner that the job will run on
12
+ runs-on: ubuntu-18.04
13
+
14
+ # Steps represent a sequence of tasks that will be executed as part of the job
15
+ steps:
16
+ - name: Check Out Source Code
17
+ uses: actions/checkout@v2
18
+
19
+ - name: Set up Python 3.8
20
+ uses: actions/setup-python@v2
21
+ with:
22
+ python-version: 3.8
23
+ - name: Installing dependencies
24
+ run:
25
+ sudo apt-get install git less openssh-server
26
+ - name: Installing scanning tool
27
+ run: |
28
+ brew install git-secrets
29
+ git secrets --install
30
+ git secrets --register-aws
31
+ - name: Running scanning tool
32
+ run:
33
+ git secrets --scan
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.22: Update gem `net-http-persistent` to 4.x.
78
79
  - 0.0.21: Update gem `net-http-persistent` to 3.x.
79
80
  - 0.0.20: Support gzip compression
80
81
  - 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.
@@ -4,7 +4,7 @@ $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.21'
7
+ s.version = '0.0.22'
8
8
  s.authors = ['Yury Kotov', 'Roi Rav-Hon', 'Arcadiy Ivanov', 'Miri Ignatiev']
9
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'
@@ -19,7 +19,7 @@ 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', '~> 3.0'
22
+ s.add_dependency 'net-http-persistent', '~> 4.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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-logzio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.21
4
+ version: 0.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yury Kotov
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2021-03-01 00:00:00.000000000 Z
14
+ date: 2022-06-19 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: net-http-persistent
@@ -19,14 +19,14 @@ dependencies:
19
19
  requirements:
20
20
  - - "~>"
21
21
  - !ruby/object:Gem::Version
22
- version: '3.0'
22
+ version: '4.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '3.0'
29
+ version: '4.0'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: fluentd
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -113,6 +113,7 @@ executables: []
113
113
  extensions: []
114
114
  extra_rdoc_files: []
115
115
  files:
116
+ - ".github/workflows/git-secrets.yml"
116
117
  - ".gitignore"
117
118
  - ".rspec"
118
119
  - ".whitesource"
@@ -145,7 +146,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
146
  - !ruby/object:Gem::Version
146
147
  version: '0'
147
148
  requirements: []
148
- rubygems_version: 3.0.3
149
+ rubyforge_project: fluent-plugin-logzio
150
+ rubygems_version: 2.5.2.3
149
151
  signing_key:
150
152
  specification_version: 4
151
153
  summary: Fluentd plugin for output to Logz.io