-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
chore(deps): bump trust-dns-proto from 0.20.4 to 0.21.1 #11604
Conversation
Bumps [trust-dns-proto](https://github.com/bluejekyll/trust-dns) from 0.20.4 to 0.21.1. - [Release notes](https://github.com/bluejekyll/trust-dns/releases) - [Changelog](https://github.com/bluejekyll/trust-dns/blob/main/CHANGELOG.md) - [Commits](bluejekyll/trust-dns@v0.20.4...v0.21.1) --- updated-dependencies: - dependency-name: trust-dns-proto dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
|
✔️ Deploy Preview for vector-project ready! 🔨 Explore the source changes: a29eec9 🔍 Inspect the deploy log: https://app.netlify.com/sites/vector-project/deploys/621e585f69e85b0007f5aea1 😎 Browse the preview: https://deploy-preview-11604--vector-project.netlify.app/reports/lighthouse |
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
); | ||
|
||
self.insert( | ||
self.event_schema | ||
.dns_query_header_schema() | ||
.authority_count(), | ||
header.authority_count as i64, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed most of these as i64
s because Event
already implements From
for most numeric types (which just calls as i64
).
}), | ||
}, | ||
dns_message::RTYPE_MB => { | ||
let mut decoder = self.get_rdata_decoder_with_raw_message(rdata.anything()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was the bulk of the changes here. RData#anything
was changed to not return an Option
. Instead Record#data
returns an Option<RData>
(you can see the corresponding change above around 152).
https://github.com/bluejekyll/trust-dns/pull/1626
It's not really clear to me when there would be no record data, but the end result should be preserved that we just bubble up an error.
option => Err(DnsMessageParserError::UnknownEdnsOption { | ||
option: option.clone(), | ||
}), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They made this enum non-exhaustive. If they do add another member, then we would need to handle it. Rust is adding a lint for this, but it isn't stable yet: rust-lang/rust#89554
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, I was able to handle the unknown options generically in 9ec889d which improves this. Ideally, we'd still get compiler warnings if they add a new variant, but this at least removes the error I was previously bubbling up.
@spencergilbert I made enough changes here that it probably warrants another set of 👀 if you wouldn't mind taking a peek. |
This reverts commit bc8db62.
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
Soak Test ResultsBaseline: 82264fa ExplanationA soak test is an integrated performance test for vector in a repeatable rig, with varying configuration for vector. What follows is a statistical summary of a brief vector run for each configuration across SHAs given above. The goal of these tests are to determine, quickly, if vector performance is changed and to what degree by a pull request. Where appropriate units are scaled per-core. The table below, if present, lists those experiments that have experienced a statistically significant change in their throughput performance between baseline and comparision SHAs, with 90.0% confidence OR have been detected as newly erratic. Negative values mean that baseline is faster, positive comparison. Results that do not exhibit more than a ±5% change in mean throughput are discarded. An experiment is erratic if its coefficient of variation is greater than 0.3. The abbreviated table will be omitted if no interesting changes are observed. Changes in throughput with confidence ≥ 90.00% and absolute Δ mean >= ±5%:
Fine details of change detection per experiment.
Fine details of each soak run.
|
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything seems reasonable
…ust-dns-proto-0.21.1
Soak Test ResultsBaseline: 635ddcc ExplanationA soak test is an integrated performance test for vector in a repeatable rig, with varying configuration for vector. What follows is a statistical summary of a brief vector run for each configuration across SHAs given above. The goal of these tests are to determine, quickly, if vector performance is changed and to what degree by a pull request. Where appropriate units are scaled per-core. The table below, if present, lists those experiments that have experienced a statistically significant change in their throughput performance between baseline and comparision SHAs, with 90.0% confidence OR have been detected as newly erratic. Negative values mean that baseline is faster, positive comparison. Results that do not exhibit more than a ±5% change in mean throughput are discarded. An experiment is erratic if its coefficient of variation is greater than 0.3. The abbreviated table will be omitted if no interesting changes are observed. Changes in throughput with confidence ≥ 90.00% and absolute Δ mean >= ±5%:
Fine details of change detection per experiment.
Fine details of each soak run.
|
Bumps trust-dns-proto from 0.20.4 to 0.21.1.
Release notes
Sourced from trust-dns-proto's releases.
... (truncated)
Changelog
Sourced from trust-dns-proto's changelog.
... (truncated)
Commits
7e4f9b2
prepare 0.21.1 release312b8ab
fix resolve build with dns over rustls47713cc
remove depdabot tag0d577f1
bump enum-as-inner to 0.4cca5155
prepare 0.21.0 for release3eeee75
cleanup trust-dns-util to not always enable openssl4929738
fix clippy warnings for 1.59.0e22a7e7
remove structopt dependency59b9711
deprecate outdated dnssec algorithms13998d5
Parse DS records (#1635)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)