rusty-crab / warp-api-starter-template

A boilerplate template for starting a web services using Warp + SQLx (PostgreSQL) + Redis + Juniper (GraphQL). ❤️
MIT License
201 stars 17 forks source link

Bump thiserror from 1.0.20 to 1.0.24 #87

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps thiserror from 1.0.20 to 1.0.24.

Release notes

Sourced from thiserror's releases.

1.0.24

1.0.23

  • Better diagnostic when putting non-static lifetimes into the source type of an error (#115, #116)

1.0.22

  • Fix raw identifier fields in format arguments (#108, thanks @ninevra)

    #[derive(Error, Debug)]
    #[error("raw identifier: {r#type}")]
    pub struct Error {
        r#type: i32,
    }
    
  • Fix Rust keyword named format arguments (#109)

    #[derive(Error, Debug)]
    #[error("keyword: {type}", type = 1)]
    pub struct Error;
    

1.0.21

  • Support capturing backtraces inside of Arc from a From impl, which makes it possible for errors having backtraces to be clonable (#102)

    use std::backtrace::Backtrace;
    use std::sync::Arc;
    use thiserror::Error;
    

    #[derive(Error, Debug, Clone)] #[error("...")] pub struct ClonableErrorWithBacktrace { #[from] source: Inner, #[backtrace] backtrace: Arc<Backtrace>, }

Commits
  • 1b0a849 Release 1.0.24
  • d81b746 Merge pull request 121 from Aaron1011/fix/source-span
  • 0fa679b Consistently use quote! when emitting 'source'
  • d0f521c Update ui test suite to nightly-2021-01-29
  • c09ddc2 Fix catching clippy warnings as CI failures
  • dc3c5c6 Resolve clippy filter_map_next pedantic lint
  • 25f0be5 Inform clippy of supported compiler version in clippy.toml
  • c0a56fe Opt in to pedantic clippy lints
  • d263b4b Release 1.0.23
  • da6ee81 Merge pull request #116 from dtolnay/lifetime
  • Additional commits viewable in compare view


Dependabot compatibility score

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] commented 3 years ago

Superseded by #101.