fluentd 1.12.1-x86-mingw32 → 1.12.2-x86-mingw32
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.
Potentially problematic release.
This version of fluentd might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.deepsource.toml +13 -0
- data/.github/ISSUE_TEMPLATE/config.yml +2 -2
- data/.github/workflows/linux-test.yaml +36 -0
- data/.github/workflows/macos-test.yaml +30 -0
- data/.github/workflows/{build.yaml → windows-test.yaml} +7 -6
- data/CHANGELOG.md +47 -0
- data/MAINTAINERS.md +5 -2
- data/fluentd.gemspec +1 -0
- data/lib/fluent/command/bundler_injection.rb +1 -1
- data/lib/fluent/command/cat.rb +0 -1
- data/lib/fluent/command/plugin_config_formatter.rb +2 -1
- data/lib/fluent/compat/parser.rb +2 -2
- data/lib/fluent/config/section.rb +1 -1
- data/lib/fluent/config/types.rb +2 -2
- data/lib/fluent/event.rb +3 -13
- data/lib/fluent/load.rb +0 -1
- data/lib/fluent/plugin/formatter_ltsv.rb +2 -2
- data/lib/fluent/plugin/in_http.rb +1 -1
- data/lib/fluent/plugin/in_monitor_agent.rb +1 -1
- data/lib/fluent/plugin/in_tail.rb +34 -15
- data/lib/fluent/plugin/out_copy.rb +18 -5
- data/lib/fluent/plugin/out_exec_filter.rb +3 -3
- data/lib/fluent/plugin/out_forward.rb +61 -28
- data/lib/fluent/plugin/storage_local.rb +3 -3
- data/lib/fluent/supervisor.rb +1 -1
- data/lib/fluent/time.rb +57 -1
- data/lib/fluent/version.rb +1 -1
- data/test/command/test_fluentd.rb +8 -0
- data/test/config/test_configurable.rb +1 -1
- data/test/plugin/in_tail/test_position_file.rb +4 -4
- data/test/plugin/out_forward/test_connection_manager.rb +6 -0
- data/test/plugin/test_in_exec.rb +1 -1
- data/test/plugin/test_in_tail.rb +54 -16
- data/test/plugin/test_out_copy.rb +87 -0
- data/test/plugin/test_out_forward.rb +74 -0
- data/test/plugin/test_out_http.rb +1 -1
- data/test/plugin_helper/test_child_process.rb +5 -2
- data/test/test_event.rb +16 -0
- data/test/test_formatter.rb +30 -0
- data/test/test_time_parser.rb +109 -0
- metadata +27 -7
- data/.travis.yml +0 -77
- data/appveyor.yml +0 -31
data/.travis.yml
DELETED
@@ -1,77 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
cache: bundler
|
3
|
-
|
4
|
-
# script: bundle exec rake test TESTOPTS=-v
|
5
|
-
|
6
|
-
# http://rubies.travis-ci.org/
|
7
|
-
# See here for osx_image -> OSX versions: https://docs.travis-ci.com/user/languages/objective-c
|
8
|
-
matrix:
|
9
|
-
include:
|
10
|
-
- rvm: 2.4.9
|
11
|
-
os: linux
|
12
|
-
env: USE_CAPNG=false
|
13
|
-
- rvm: 2.4.9
|
14
|
-
os: linux-ppc64le
|
15
|
-
env: USE_CAPNG=false
|
16
|
-
- rvm: 2.5.7
|
17
|
-
os: linux
|
18
|
-
env: USE_CAPNG=false
|
19
|
-
- rvm: 2.5.7
|
20
|
-
os: linux
|
21
|
-
arch: s390x
|
22
|
-
dist: xenial
|
23
|
-
env: USE_CAPNG=false
|
24
|
-
- rvm: 2.6.5
|
25
|
-
os: linux
|
26
|
-
env: USE_CAPNG=false
|
27
|
-
- rvm: 2.6.6
|
28
|
-
os: linux
|
29
|
-
env: USE_CAPNG=true
|
30
|
-
- rvm: 2.7.0
|
31
|
-
os: linux
|
32
|
-
env: USE_CAPNG=false
|
33
|
-
- rvm: ruby-head
|
34
|
-
os: linux
|
35
|
-
env: USE_CAPNG=false
|
36
|
-
- rvm: ruby-head
|
37
|
-
os: linux-ppc64le
|
38
|
-
env: USE_CAPNG=false
|
39
|
-
- rvm: 2.4.6
|
40
|
-
os: osx
|
41
|
-
osx_image: xcode8.3 # OSX 10.12
|
42
|
-
env: USE_CAPNG=false
|
43
|
-
- rvm: ruby-head
|
44
|
-
os: osx
|
45
|
-
osx_image: xcode8.3 # OSX 10.12
|
46
|
-
env: USE_CAPNG=false
|
47
|
-
allow_failures:
|
48
|
-
- rvm: 2.4.6
|
49
|
-
os: osx
|
50
|
-
osx_image: xcode8.3
|
51
|
-
env: USE_CAPNG=false
|
52
|
-
- rvm: 2.5.7
|
53
|
-
os: linux
|
54
|
-
arch: s390x
|
55
|
-
dist: xenial
|
56
|
-
env: USE_CAPNG=false
|
57
|
-
- rvm: ruby-head
|
58
|
-
env: USE_CAPNG=false
|
59
|
-
|
60
|
-
branches:
|
61
|
-
only:
|
62
|
-
- master
|
63
|
-
|
64
|
-
before_install: |
|
65
|
-
gem update --system=3.1.2
|
66
|
-
if [[ x"${USE_CAPNG}" == "xtrue" ]]; then
|
67
|
-
echo 'gem "capng_c"' >> Gemfile.local
|
68
|
-
fi
|
69
|
-
|
70
|
-
sudo: false
|
71
|
-
dist: trusty # for TLSv1.2 support
|
72
|
-
|
73
|
-
addons:
|
74
|
-
apt:
|
75
|
-
packages:
|
76
|
-
- libgmp3-dev
|
77
|
-
- libcap-ng-dev
|
data/appveyor.yml
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
version: '{build}'
|
2
|
-
|
3
|
-
# init:
|
4
|
-
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
5
|
-
|
6
|
-
install:
|
7
|
-
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
8
|
-
- ruby --version
|
9
|
-
- gem --version
|
10
|
-
# stay 0.14.0 for Windows CI until https://github.com/socketry/protocol-http2/issues/6 will be fixed
|
11
|
-
- ps: Write-Output "gem 'protocol-http2', ['<= 0.14.0']" | Out-File -FilePath Gemfile.local -Encoding default
|
12
|
-
- type Gemfile.local
|
13
|
-
- ridk.cmd exec bundle install
|
14
|
-
build: off
|
15
|
-
test_script:
|
16
|
-
- bundle exec rake test
|
17
|
-
# - bundle exec rake test TESTOPTS=-v
|
18
|
-
|
19
|
-
branches:
|
20
|
-
only:
|
21
|
-
- master
|
22
|
-
|
23
|
-
# https://www.appveyor.com/docs/installed-software/#ruby
|
24
|
-
environment:
|
25
|
-
matrix:
|
26
|
-
- ruby_version: "26-x64"
|
27
|
-
- ruby_version: "26"
|
28
|
-
- ruby_version: "25-x64"
|
29
|
-
- ruby_version: "25"
|
30
|
-
- ruby_version: "24-x64"
|
31
|
-
- ruby_version: "24"
|