Skip to content

Commit

Permalink
Update github.com/miekg/dns to v1.1.15 (#12805)
Browse files Browse the repository at this point in the history
Update the DNS parser used by packetbeat. This fixes the extended RCODE parsing.
  • Loading branch information
Steffen Siering authored Jul 9, 2019
1 parent 95eaf56 commit 427d0ce
Show file tree
Hide file tree
Showing 55 changed files with 5,780 additions and 5,408 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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.

Loading

0 comments on commit 427d0ce

Please sign in to comment.