tracing icon indicating copy to clipboard operation
tracing copied to clipboard

chore(deps): update snafu requirement from 0.6.10 to 0.7.0

Open dependabot[bot] opened this issue 2 years ago • 4 comments

Updates the requirements on snafu to permit the latest version.

Changelog

Sourced from snafu's changelog.

[0.7.0] - XXXX-XX-XX

Added

  • A crate prelude containing common macros and traits can be imported via use snafu::prelude::*.

  • A ready-to-use error type Whatever is available to quickly start reporting errors with little hassle.

  • "Stringly typed" error cases can be added to existing error types, allowing you to construct errors without defining them first.

  • Formatting shorthand syntax for error type data fields is now supported: #[snafu(display("Hello {name}"))].

  • [snafu(module)] can be specified on an error type. This will create a module for the error type and all associated context selectors will be placed in that module.

  • snafu::Location can be added to an error type to provide lightweight tracking of the source location where the error was created.

  • [snafu(implicit)] can be specified on context selector data fields to automatically generate it via snafu::GenerateImplicitData when the error is created.

  • ErrorCompat::iter_chain provides an iterator over the list of causal errors.

Changed

  • Generated context selectors now have the suffix Snafu. This is a breaking change.

  • ResultExt::with_context, TryFutureExt::with_context, and TryStreamExt::with_context now pass the error into the closure. This is a breaking change.

  • The GenerateBacktrace trait has been split into GenerateImplicitData and AsBacktrace. This is a breaking change.

  • Rust 1.34 is now the minimum supported Rust version. This is a breaking change.

Removed

  • String attribute parsing (#[snafu(foo = "...")]) is no longer

... (truncated)

Commits
  • a6aff99 Release 0.7.0
  • f16bb4c Merge pull request #319 from shepmaster/trybuild
  • 1865e17 Update tests for newer version of trybuild
  • b4cdc99 Merge pull request #317 from shepmaster/docs
  • c694dfa Document that Error is removed before making selector names
  • 321d6a4 Sync up changelog and upgrading guide
  • 86fabf9 Minor doc tweaks
  • b314d3e Release 0.7.0-beta.2
  • caece50 Update the changelog
  • e846c56 Merge pull request #295 from SamWilsn/derive-with-module
  • Additional commits viewable in compare view

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)

dependabot[bot] avatar Jan 05 '22 01:01 dependabot[bot]

wait, why do we even depend on this?

hawkw avatar Jan 05 '22 01:01 hawkw

A newer version of snafu exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

dependabot[bot] avatar May 04 '22 01:05 dependabot[bot]

Seems to be for https://github.com/tokio-rs/tracing/blob/c4bcf5c2c48cc82b7fe11a657a9733c7d73c4ed9/examples/examples/fmt/yak_shave.rs#L63-L67

bryangarza avatar May 09 '22 20:05 bryangarza

tracing-examples might need some manual changes in order to be able to do this version bump, CI fails with

 error[E0425]: cannot find value `OutOfCash` in this scope
Error:   --> examples/examples/fmt/yak_shave.rs:19:16
   |
19 |         return OutOfCash
   |                ^^^^^^^^^ not found in this scope
   |
help: consider importing this unit variant
   |
1  | use crate::yak_shave::OutOfSpaceError::OutOfCash;
   |

error[E0425]: cannot find value `MissingYak` in this scope
Error:   --> examples/examples/fmt/yak_shave.rs:22:22
   |
22 |             .context(MissingYak)
   |                      ^^^^^^^^^^ not found in this scope

warning: unused import: `ResultExt`
Warning:  --> examples/examples/fmt/yak_shave.rs:1:13
  |
1 | use snafu::{ResultExt, Snafu};
  |             ^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

bryangarza avatar May 09 '22 21:05 bryangarza