fluent-plugin-windows-eventlog 0.8.1 → 0.8.3

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: bdf1842ac573845b2a01c853ab4dd7afb349c0e014d5538c24aff33f0c674499
4
- data.tar.gz: 92003b55f2e2380b3d9d8ebbc3ea794c018cd75b51100562f932ef7fcd751728
3
+ metadata.gz: 2d253822f3e13ee264e9ad58b1d25c0e1e91460a417aa3ab1c21a6e45acb795a
4
+ data.tar.gz: ae2c835ac4bb63b9544c5ddab3f732fa7d0fd2d33606cf0b1456c5a5875e90eb
5
5
  SHA512:
6
- metadata.gz: d4f8f6b2198d8a8861b1c25a85a7a553b4757db942c03a8246e36f7d1e9a5d085328668a6b55ac32de6cad0491285d2e3009e49606eee0da03c1d7c2fab0dab8
7
- data.tar.gz: 474b65132114f707e358d62984becd02f750f7913b2f248ff21db8ac27c668835a6541fa7f8fd3df5a944e241c255e8bdbd607cc0d143d687222bd0e6412e2f7
6
+ metadata.gz: 5e259db40fe86886390b797cbbf3580427da285126fccfde89aab5867900c9600a9e01544a42e994de695ec67c65f525e6113ecb8aa2900de7508e4185c6e1d5
7
+ data.tar.gz: b2753c7604157cfd598a63726bba34d1001dae4702bd895fc3d4afaaf1d57ee1dfad41d064a70b3514b2f6a3242cde4e4ef72bbb746ea5fb05f729672629215a
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: 'github-actions'
4
+ directory: '/'
5
+ schedule:
6
+ interval: 'weekly'
@@ -1,34 +1,36 @@
1
- name: Unit Test
2
- on:
3
- - push
4
- - pull_request
5
- jobs:
6
- test:
7
- runs-on: ${{ matrix.os }}
8
- continue-on-error: ${{ matrix.experimental }}
9
- strategy:
10
- fail-fast: false
11
- matrix:
12
- ruby: [ '2.5', '2.6', '2.7', '3.0' ]
13
- os:
14
- - windows-latest
15
- experimental: [false]
16
- include:
17
- - ruby: 'head'
18
- os: windows-latest
19
- experimental: true
20
- name: Unit testing with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
21
- steps:
22
- - uses: actions/checkout@v2
23
- - uses: ruby/setup-ruby@v1
24
- with:
25
- ruby-version: ${{ matrix.ruby }}
26
- - name: Install
27
- run: |
28
- ruby --version
29
- gem --version
30
- gem install bundler rake
31
- ridk exec bundle install --jobs 4 --retry 3
32
- - name: Unit Test
33
- run: |
34
- bundle exec rake test
1
+ name: Test
2
+ on:
3
+ push:
4
+ branches: [master]
5
+ pull_request:
6
+ branches: [master]
7
+ jobs:
8
+ test:
9
+ runs-on: ${{ matrix.os }}
10
+ continue-on-error: ${{ matrix.experimental }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ ruby: [ '3.2', '3.1', '3.0', '2.7' ]
15
+ os:
16
+ - windows-latest
17
+ experimental: [false]
18
+ include:
19
+ - ruby: 'head'
20
+ os: windows-latest
21
+ experimental: true
22
+ name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
23
+ steps:
24
+ - uses: actions/checkout@v3
25
+ - uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: ${{ matrix.ruby }}
28
+ - name: Install
29
+ run: |
30
+ ruby --version
31
+ gem --version
32
+ gem install bundler rake
33
+ ridk exec bundle install --jobs 4 --retry 3
34
+ - name: Unit Test
35
+ run: |
36
+ bundle exec rake test
data/.gitignore CHANGED
@@ -1,14 +1,14 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /spec/reports/
8
- pkg/*
9
- /tmp/
10
- *.bundle
11
- *.so
12
- *.o
13
- *.a
14
- mkmf.log
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /spec/reports/
8
+ pkg/*
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/CHANGELOG.md CHANGED
@@ -1,74 +1,80 @@
1
- # Release v0.8.1 - 2021/09/16
2
- * in_windows_eventlog2: Add trace logs for debugging
3
- * in_windows_eventlog2: Support event query parameter on Windows EventLog channel subscriptions
4
-
5
- # Release v0.8.0 - 2020/09/16
6
- * in_windows_eventlog2: Support remoting access
7
-
8
- # Release v.0.7.1.rc1 - 2020/06/23
9
- * in_windows_eventlog2: Depends on nokogiri 1.11 series
10
-
11
- # Release v0.7.0 - 2020/05/22
12
- * in_windows_eventlog2: Support multilingual description
13
-
14
- # Release v0.6.0 - 2020/04/15
15
- * Make fluent-plugin-parser-winevt_xml plugin as optional dependency
16
- * in_windows_eventlog2: Render Ruby hash object directly by default
17
-
18
- # Release v0.5.4 - 2020/04/10
19
- * Permit using nokogiri 1.11.0
20
-
21
- # Release v0.5.3 - 2020/03/17
22
- * in_windows_eventlog2: Add Qualifiers key handling options
23
-
24
- # Release v0.5.2 - 2020/02/28
25
- * in_windows_eventlog2: Add parameter to read from all channels shortcut
26
-
27
- # Release v0.5.1 - 2020/02/26
28
- * in_windows_eventlog2: Add empty bookmark checking mechanism
29
-
30
- # Release v0.5.0 - 2020/02/17
31
- * in_windows_eventlog2: Support subscribe directive to handle read_existing_events paratemer each of channels.
32
- * in_windows_eventlog2: Depends on winevt_c v0.7.0 or later.
33
-
34
- # Release v0.4.6 - 2020/02/15
35
- * Fix winevt_c dependency to prevent fetching winevt_c v0.7.0 or later.
36
-
37
- # Release v0.4.5 - 2020/01/28
38
- * in_windows_eventlog2: Handle empty key case in parsing description method.
39
-
40
- # Release v0.4.4 - 2019/11/07
41
- * in_windows_eventlog: Improve error handling and logging when failed to open Windows Event Log.
42
-
43
- # Release v0.4.3 - 2019/10/31
44
- * in_windows_eventlog2: Handle privileges record on #parse_desc
45
- * in_windows_eventlog2: Raise error when handling invalid bookmark xml
46
-
47
- # Release v0.4.2 - 2019/10/16
48
- * in_windows_eventlog2: Handle invalid data error from `Winevt::EventLog::Query::Error`
49
-
50
- # Release v0.4.1 - 2019/10/11
51
- * in_windows_eventlog2: Add a missing ProcessID record
52
-
53
- # Release v0.4.0 - 2019/10/10
54
-
55
- * in_windows_eventlog2: Add new `render_as_xml` parameter to switch rendering as XML or Ruby Hash object
56
- * in_windows_eventlog2: Support rate limit with `rate_limit` option
57
- * parser_winevt_xml: Separate `parser_winevt_xml` plugin to other repository and published as Fluentd parser plugin
58
-
59
- # Release v0.3.0 - 2019/07/08
60
-
61
- * Add new `in_windows_eventlog2` plugin. This plugin uses newer windows event logging API.
62
- * Add `winevt_c` and `nokogiri` gem dependency for `in_windows_eventlog2`
63
-
64
- # Release v0.2.2 - 2017/09/08
65
-
66
- * in_windows_eventlog: Add `parse_description` parameter
67
-
68
- # Release v0.2.1 - 2017/06/06
69
-
70
- * in_windows_eventlog: Add `string_inserts` to the resulting record
71
-
72
- # Release v0.2.0 - 2017/03/08
73
-
74
- * in_windows_eventlog: Use v1 API
1
+ # Release v0.8.3 - 2023/01/19
2
+ * Permit using nokogiri 1.14.0
3
+
4
+ # Release v0.8.2 - 2022/09/26
5
+ * in_windows_eventlog2: Skip to subscribe non existent channels, not to stop Fluentd
6
+
7
+ # Release v0.8.1 - 2021/09/16
8
+ * in_windows_eventlog2: Add trace logs for debugging
9
+ * in_windows_eventlog2: Support event query parameter on Windows EventLog channel subscriptions
10
+
11
+ # Release v0.8.0 - 2020/09/16
12
+ * in_windows_eventlog2: Support remoting access
13
+
14
+ # Release v.0.7.1.rc1 - 2020/06/23
15
+ * in_windows_eventlog2: Depends on nokogiri 1.11 series
16
+
17
+ # Release v0.7.0 - 2020/05/22
18
+ * in_windows_eventlog2: Support multilingual description
19
+
20
+ # Release v0.6.0 - 2020/04/15
21
+ * Make fluent-plugin-parser-winevt_xml plugin as optional dependency
22
+ * in_windows_eventlog2: Render Ruby hash object directly by default
23
+
24
+ # Release v0.5.4 - 2020/04/10
25
+ * Permit using nokogiri 1.11.0
26
+
27
+ # Release v0.5.3 - 2020/03/17
28
+ * in_windows_eventlog2: Add Qualifiers key handling options
29
+
30
+ # Release v0.5.2 - 2020/02/28
31
+ * in_windows_eventlog2: Add parameter to read from all channels shortcut
32
+
33
+ # Release v0.5.1 - 2020/02/26
34
+ * in_windows_eventlog2: Add empty bookmark checking mechanism
35
+
36
+ # Release v0.5.0 - 2020/02/17
37
+ * in_windows_eventlog2: Support subscribe directive to handle read_existing_events paratemer each of channels.
38
+ * in_windows_eventlog2: Depends on winevt_c v0.7.0 or later.
39
+
40
+ # Release v0.4.6 - 2020/02/15
41
+ * Fix winevt_c dependency to prevent fetching winevt_c v0.7.0 or later.
42
+
43
+ # Release v0.4.5 - 2020/01/28
44
+ * in_windows_eventlog2: Handle empty key case in parsing description method.
45
+
46
+ # Release v0.4.4 - 2019/11/07
47
+ * in_windows_eventlog: Improve error handling and logging when failed to open Windows Event Log.
48
+
49
+ # Release v0.4.3 - 2019/10/31
50
+ * in_windows_eventlog2: Handle privileges record on #parse_desc
51
+ * in_windows_eventlog2: Raise error when handling invalid bookmark xml
52
+
53
+ # Release v0.4.2 - 2019/10/16
54
+ * in_windows_eventlog2: Handle invalid data error from `Winevt::EventLog::Query::Error`
55
+
56
+ # Release v0.4.1 - 2019/10/11
57
+ * in_windows_eventlog2: Add a missing ProcessID record
58
+
59
+ # Release v0.4.0 - 2019/10/10
60
+
61
+ * in_windows_eventlog2: Add new `render_as_xml` parameter to switch rendering as XML or Ruby Hash object
62
+ * in_windows_eventlog2: Support rate limit with `rate_limit` option
63
+ * parser_winevt_xml: Separate `parser_winevt_xml` plugin to other repository and published as Fluentd parser plugin
64
+
65
+ # Release v0.3.0 - 2019/07/08
66
+
67
+ * Add new `in_windows_eventlog2` plugin. This plugin uses newer windows event logging API.
68
+ * Add `winevt_c` and `nokogiri` gem dependency for `in_windows_eventlog2`
69
+
70
+ # Release v0.2.2 - 2017/09/08
71
+
72
+ * in_windows_eventlog: Add `parse_description` parameter
73
+
74
+ # Release v0.2.1 - 2017/06/06
75
+
76
+ * in_windows_eventlog: Add `string_inserts` to the resulting record
77
+
78
+ # Release v0.2.0 - 2017/03/08
79
+
80
+ * in_windows_eventlog: Use v1 API
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in fluent-plugin-winevtlog.gemspec
4
- gemspec
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fluent-plugin-winevtlog.gemspec
4
+ gemspec