Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github.com/miekg/dns to v1.1.15 #12805

Merged
merged 4 commits into from Jul 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Expand Up @@ -149,6 +149,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fixed a memory leak when using process monitoring under Windows. {pull}12100[12100]
- Improved debug logging efficiency in PGQSL module. {issue}12150[12150]
- Limit memory usage of Redis replication sessions. {issue}12657[12657]
- Fix parsing the extended RCODE in the DNS parser. {pull}12805[12805]

*Winlogbeat*

Expand Down
4 changes: 2 additions & 2 deletions NOTICE.txt
Expand Up @@ -2503,8 +2503,8 @@ SOFTWARE.

--------------------------------------------------------------------
Dependency: github.com/miekg/dns
Version: v1.0.8
Revision: 5a2b9fab83ff0f8bfc99684bd5f43a37abe560f1
Version: v1.1.15
Revision: b13675009d59c97f3721247d9efa8914e1866a5b
License type (autodetected): BSD-3-Clause
./vendor/github.com/miekg/dns/LICENSE:
--------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion packetbeat/tests/system/test_0032_dns.py
Expand Up @@ -254,6 +254,6 @@ def test_edns_dnssec(self):
assert o["dns.opt.do"] == True
assert o["dns.opt.version"] == "0"
assert o["dns.opt.udp_size"] == 4000
assert o["dns.opt.ext_rcode"] == "Unknown 15"
assert o["dns.opt.ext_rcode"] == "NOERROR"
assert len(o["dns.answers"]) == 3
assert all("ietf.org" in x["name"] for x in o["dns.answers"])
18 changes: 15 additions & 3 deletions vendor/github.com/miekg/dns/Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions vendor/github.com/miekg/dns/Gopkg.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

64 changes: 35 additions & 29 deletions vendor/github.com/miekg/dns/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 54 additions & 0 deletions vendor/github.com/miekg/dns/acceptfunc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.