winevt_c 0.11.3 → 0.11.4
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.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +17 -0
- data/.github/workflows/test.yml +2 -2
- data/ext/winevt/winevt_session.c +1 -1
- data/lib/winevt/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4231aa8b328c8b400c7a1948fa6a05798cc404146e744b93654321e6c8df2ced
|
|
4
|
+
data.tar.gz: ebccd019f7c62066840faf7df5b11b27ee8d249816f7a13a3e449f3ff852ccd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6189e52e89878adcfeb09a1e100b50d5da9a053b16626582665d474c407dce402b05beea0dcc7671d27f2396dd993eec7ccce3ffe4a565f27de726fefee623f
|
|
7
|
+
data.tar.gz: a37df6779a02e6ae99bfd5557b3cef79429c908f3201c8f47794ceb479933f2dbf0c4745ab4cc005abedf9ae27eb4081234ec3a4ccedd6438be618c9f57426fc
|
data/.github/dependabot.yml
CHANGED
|
@@ -4,3 +4,20 @@ updates:
|
|
|
4
4
|
directory: '/'
|
|
5
5
|
schedule:
|
|
6
6
|
interval: 'monthly'
|
|
7
|
+
groups:
|
|
8
|
+
# PR: "Security update [package] from [old] to [new]"
|
|
9
|
+
# This PR should be merged in hurry
|
|
10
|
+
security-updates:
|
|
11
|
+
applies-to: security-updates
|
|
12
|
+
patterns:
|
|
13
|
+
- '*'
|
|
14
|
+
|
|
15
|
+
# PR: "Bump [package] from [old] to [new]"
|
|
16
|
+
# No need to be merged this PR in hurry. It is enough to merge
|
|
17
|
+
# once in a month.
|
|
18
|
+
monthly-updates:
|
|
19
|
+
applies-to: version-updates
|
|
20
|
+
patterns:
|
|
21
|
+
- '*'
|
|
22
|
+
# Allow to create PR both of security and normal updates.
|
|
23
|
+
open-pull-requests-limit: 1
|
data/.github/workflows/test.yml
CHANGED
|
@@ -23,8 +23,8 @@ jobs:
|
|
|
23
23
|
- ruby: head
|
|
24
24
|
name: Ruby ${{ matrix.ruby }}
|
|
25
25
|
steps:
|
|
26
|
-
- uses: actions/checkout@
|
|
27
|
-
- uses: ruby/setup-ruby@
|
|
26
|
+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
27
|
+
- uses: ruby/setup-ruby@afeafc3d1ab54a631816aba4c914a0081c12ff2f # v1.310.0
|
|
28
28
|
with:
|
|
29
29
|
ruby-version: ${{ matrix.ruby }}
|
|
30
30
|
- name: Run tests
|
data/ext/winevt/winevt_session.c
CHANGED
|
@@ -150,8 +150,8 @@ rb_winevt_session_set_server(VALUE self, VALUE rb_server)
|
|
|
150
150
|
MultiByteToWideChar(CP_UTF8, 0,
|
|
151
151
|
RSTRING_PTR(rb_server), RSTRING_LEN(rb_server),
|
|
152
152
|
wServer, len);
|
|
153
|
-
winevtSession->server = _wcsdup(wServer);
|
|
154
153
|
wServer[len] = L'\0';
|
|
154
|
+
winevtSession->server = _wcsdup(wServer);
|
|
155
155
|
|
|
156
156
|
ALLOCV_END(vserverBuf);
|
|
157
157
|
|
data/lib/winevt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: winevt_c
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hiroshi Hatake
|
|
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
|
-
rubygems_version: 4.0.
|
|
142
|
+
rubygems_version: 4.0.10
|
|
143
143
|
specification_version: 4
|
|
144
144
|
summary: Windows Event Log API bindings from winevt.h.
|
|
145
145
|
test_files: []
|