fluent-plugin-influxdb-v2 1.10.0.pre.1583 → 1.10.0.pre.1731
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +5 -0
- data/.github/dependabot.yml +7 -0
- data/CHANGELOG.md +7 -0
- data/fluent-plugin-influxdb-v2.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90124e6da4f1fcffc04a924b180534abe60ff051a0783f038d925a25b663ba7c
|
4
|
+
data.tar.gz: e881f1a3d819ee0125879fbd946c7198023afaa6722482cf1c85df07f6b67da1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4362079678417e042776d82c546d2d48cf664b53a9cdf7c7026248f97cf6ba174496207a4583dcab03890569f2b8c3c5b3e9140df75c9567683384a43b93818c
|
7
|
+
data.tar.gz: a05a0cf44ad2cf3e10d5911a10e3838edf1c0211340c08f953938570789a1cba2c30e359fe3adfff16f69e8c34c403fe8a06a988046c862e9b65be89ae2f3f77
|
data/.circleci/config.yml
CHANGED
@@ -134,6 +134,9 @@ workflows:
|
|
134
134
|
- tests-ruby:
|
135
135
|
name: ruby-3.0
|
136
136
|
ruby-image: "cimg/ruby:3.0"
|
137
|
+
- tests-ruby:
|
138
|
+
name: ruby-3.1
|
139
|
+
ruby-image: "cimg/ruby:3.1"
|
137
140
|
- tests-ruby:
|
138
141
|
name: ruby-2.6
|
139
142
|
- tests-ruby:
|
@@ -147,6 +150,8 @@ workflows:
|
|
147
150
|
ruby-image: "cimg/ruby:2.4"
|
148
151
|
- deploy-preview:
|
149
152
|
requires:
|
153
|
+
- ruby-3.0
|
154
|
+
- ruby-3.1
|
150
155
|
- ruby-2.7
|
151
156
|
- ruby-2.6
|
152
157
|
- ruby-2.6-nightly
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## 1.10.0 [unreleased]
|
2
2
|
|
3
|
+
### Dependencies
|
4
|
+
1. [#38](https://github.com/influxdata/influxdb-plugin-fluent/pull/38): Update dependencies:
|
5
|
+
- influxdb-client to 2.6.0
|
6
|
+
|
7
|
+
### CI
|
8
|
+
1. [#39](https://github.com/influxdata/influxdb-plugin-fluent/pull/39): Add Ruby 3.1 into CI
|
9
|
+
|
3
10
|
### CI
|
4
11
|
1. [#32](https://github.com/influxdata/influxdb-plugin-fluent/pull/32): Use new Codecov uploader for reporting code coverage
|
5
12
|
|
@@ -47,7 +47,7 @@ Gem::Specification.new do |spec|
|
|
47
47
|
spec.required_ruby_version = '>= 2.2.0'
|
48
48
|
|
49
49
|
spec.add_runtime_dependency 'fluentd', '~> 1.8'
|
50
|
-
spec.add_runtime_dependency 'influxdb-client', '2.
|
50
|
+
spec.add_runtime_dependency 'influxdb-client', '2.6.0'
|
51
51
|
|
52
52
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
53
53
|
spec.add_development_dependency 'minitest', '~> 5.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-influxdb-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.0.pre.
|
4
|
+
version: 1.10.0.pre.1731
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jakub Bednar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fluentd
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.
|
33
|
+
version: 2.6.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 2.
|
40
|
+
version: 2.6.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,6 +162,7 @@ files:
|
|
162
162
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
163
163
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
164
164
|
- ".github/PULL_REQUEST_TEMPLATE"
|
165
|
+
- ".github/dependabot.yml"
|
165
166
|
- ".github/workflows/semantic.yml"
|
166
167
|
- ".gitignore"
|
167
168
|
- ".rubocop.yml"
|