fluent-plugin-influxdb-v2 1.6.0.pre.718 → 1.7.0.pre.900

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
2
  SHA256:
3
- metadata.gz: 0d6668685e6ca9b53f4f97b9923654bf0c725584c40863819d9cb71741c8345a
4
- data.tar.gz: 66c4362f1a26d7404f1a622337a3ea8534bf284928321b0972f20ad9edbca283
3
+ metadata.gz: 9a31731bcb30638289e8f421d1a3575eb31ce8103a92ad3ac38f4218c8e492db
4
+ data.tar.gz: d399bc2def59e12395ccbd6f8edb8bf3f92511f36269a6e2187e834c01253bff
5
5
  SHA512:
6
- metadata.gz: a86a48e236b0abf535a79c56c4c9b254eeefcbfe7eeedb4af7a8dfa72576dec74adafb3ba1c63979acf62a60fd35f68e4165a430e8a711f9bcbd8a003ea94836
7
- data.tar.gz: a0a6cda78db421500849872737920a313beaa334ac03a11e922f8d043667a132721ccd09edc44cfb73afe3fa5f07fea63a6bb78a43a41cecf1bdf55fd54513b8
6
+ metadata.gz: 4882ea0e06ed3306c6c8f97dd9f7e63bfc452a92944b8586747ebbf0bc14677ed827a38dc6b36ddb3ec929a0216519ea7dcfb20f2473e13120503ecaefb8be41
7
+ data.tar.gz: b07efc474418df0eb6a02cc00ea23971e1e3cc194f3198bb387c09145a239b47a3a760b63d5ababd423a350f28678710bdd6fff69523f5a1e2648212d39115ef
data/.circleci/config.yml CHANGED
@@ -78,7 +78,7 @@ jobs:
78
78
  default: &default-ruby-image "circleci/ruby:2.6-stretch"
79
79
  influxdb-image:
80
80
  type: string
81
- default: &default-influxdb-image "influxdb:2.0.0-rc"
81
+ default: &default-influxdb-image "influxdb:v2.0.4"
82
82
  docker:
83
83
  - image: << parameters.ruby-image >>
84
84
  - image: &influx-image quay.io/influxdb/<< parameters.influxdb-image >>
@@ -124,7 +124,7 @@ workflows:
124
124
  name: ruby-2.6
125
125
  - tests-ruby:
126
126
  name: ruby-2.6-nightly
127
- influxdb-image: "influx:nightly"
127
+ influxdb-image: "influxdb2:nightly"
128
128
  - tests-ruby:
129
129
  name: ruby-2.5
130
130
  ruby-image: "circleci/ruby:2.5-stretch"
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
- ## 1.6.0 [unreleased]
1
+ ## 1.7.0 [unreleased]
2
+
3
+ ### CI
4
+ 1. [#19](https://github.com/influxdata/influxdb-plugin-fluent/pull/19): Updated default docker image to v2.0.3
5
+
6
+ ## 1.6.0 [2020-10-02]
2
7
 
3
8
  ### API
4
- 1. [#15](https://github.com/influxdata/influxdb-plugin-fluent/pull/15): Default port changed from 9999 -> 8086
9
+ 1. [#15](https://github.com/influxdata/influxdb-plugin-fluent/pull/15): Default port changed from 9999 -> 8086
5
10
 
6
11
  ### Dependencies
7
12
  1. [#16](https://github.com/influxdata/influxdb-plugin-fluent/pull/16): Upgrade InfluxDB client to 1.8.0
data/README.md CHANGED
@@ -19,7 +19,7 @@ This repository contains the reference Fluentd plugin for the InfluxDB 2.0.
19
19
  The plugin is bundled as a gem and is hosted on [Rubygems](https://rubygems.org/gems/fluent-plugin-influxdb-v2). You can install the gem as follows:
20
20
 
21
21
  ```
22
- fluent-gem install fluent-plugin-influxdb-v2 -v 1.5.0
22
+ fluent-gem install fluent-plugin-influxdb-v2 -v 1.6.0
23
23
  ```
24
24
 
25
25
  ## Plugins
@@ -27,7 +27,7 @@ DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/"
27
27
  DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}"
28
28
 
29
29
  DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb"
30
- DEFAULT_INFLUXDB_V2_VERSION="2.0.0-rc"
30
+ DEFAULT_INFLUXDB_V2_VERSION="v2.0.4"
31
31
  INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
32
32
  INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
33
33
  INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}
data/examples/README.md CHANGED
@@ -41,7 +41,7 @@ docker run \
41
41
  --name influxdb_v2 \
42
42
  --network influx_network \
43
43
  --publish 8086:8086 \
44
- quay.io/influxdb/influxdb:2.0.0-rc
44
+ quay.io/influxdb/influxdb:v2.0.4
45
45
  ```
46
46
 
47
47
  Create default organization, user and bucket:
@@ -49,7 +49,7 @@ docker run \
49
49
  --name influxdb_v2 \
50
50
  --network influx_network \
51
51
  --publish 8086:8086 \
52
- quay.io/influxdb/influxdb:2.0.0-rc
52
+ quay.io/influxdb/influxdb:v2.0.4
53
53
 
54
54
  #
55
55
  # Post onBoarding request to InfluxDB 2
@@ -21,7 +21,7 @@
21
21
  module InfluxDB2
22
22
  module Plugin
23
23
  module Fluent
24
- VERSION = '1.6.0'.freeze
24
+ VERSION = '1.7.0'.freeze
25
25
  end
26
26
  end
27
27
  end
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.6.0.pre.718
4
+ version: 1.7.0.pre.900
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jakub Bednar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-02 00:00:00.000000000 Z
11
+ date: 2021-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd