OJFord / amail

AWS-hosted personal email system: sending, receiving, storage, and forwarding (relaying). `notmuch` client. JMAP server WIP.
Other
10 stars 0 forks source link

Bump the minor group with 6 updates #75

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the minor group with 6 updates:

Package From To
anyhow 1.0.80 1.0.81
serde_json 1.0.113 1.0.114
thiserror 1.0.57 1.0.58
lettre 0.10.4 0.11.2
tokio 1.29.1 1.36.0
webpki-roots 0.23.1 0.25.4

Updates anyhow from 1.0.80 to 1.0.81

Release notes

Sourced from anyhow's releases.

1.0.81

  • Make backtrace support available when using -Dwarnings (#354)
Commits


Updates serde_json from 1.0.113 to 1.0.114

Release notes

Sourced from serde_json's releases.

v1.0.114

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • e1b3a6d Release 1.0.114
  • 6fb7026 Work around prelude redundant import warnings
  • 34a04c5 Ignore incompatible_msrv clippy false positives in test
  • ca05f69 Remove unused Float::is_sign_negative trait method
  • See full diff in compare view


Updates thiserror from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits


Updates lettre from 0.10.4 to 0.11.2

Release notes

Sourced from lettre's releases.

v0.11.2 - Dependency updates

Upgrade notes

  • MSRV is now 1.70 (#916)

Misc

  • Bump idna to v0.5 (#918)
  • Bump boring and tokio-boring to v4 (#915)

#915: lettre/lettre#915 #916: lettre/lettre#916 #918: lettre/lettre#918

v0.11.1 - Fix rustls webpki-roots certificate store

Bug fixes

  • Fix webpki-roots certificate store setup (#909)

#909: lettre/lettre#909

v0.11.0

While this release technically contains breaking changes, we expect most projects to be able to upgrade by only bumping the version in Cargo.toml.

Upgrade notes

  • MSRV is now 1.65 (#869 and #881)
  • AddressError is now marked as #[non_exhaustive] (#839)

Features

  • Improve mailbox parsing (#839)
  • Add construction of SMTP transport from URL (#901)
  • Add From<Address> implementation for Mailbox (#879)

Misc

  • Bump socket2 to v0.5 (#868)
  • Bump idna to v0.4, fastrand to v2, quoted_printable to v0.5, rsa to v0.9 (#882)
  • Bump webpki-roots to v0.25 (#884 and #890)
  • Bump ed25519-dalek to v2 fixing RUSTSEC-2022-0093 (#896)
  • Bump boringssl crates to v3 (#897)

#839: lettre/lettre#839 #868: lettre/lettre#868 #869: lettre/lettre#869 #879: lettre/lettre#879 #881: lettre/lettre#881 #882: lettre/lettre#882

... (truncated)

Changelog

Sourced from lettre's changelog.

v0.11.2 (2023-11-23)

Upgrade notes

  • MSRV is now 1.70 (#916)

Misc

  • Bump idna to v0.5 (#918)
  • Bump boring and tokio-boring to v4 (#915)

#915: lettre/lettre#915 #916: lettre/lettre#916 #918: lettre/lettre#918

v0.11.1 (2023-10-24)

Bug fixes

  • Fix webpki-roots certificate store setup (#909)

#909: lettre/lettre#909

v0.11.0 (2023-10-15)

While this release technically contains breaking changes, we expect most projects to be able to upgrade by only bumping the version in Cargo.toml.

Upgrade notes

  • MSRV is now 1.65 (#869 and #881)
  • AddressError is now marked as #[non_exhaustive] (#839)

Features

  • Improve mailbox parsing (#839)
  • Add construction of SMTP transport from URL (#901)
  • Add From<Address> implementation for Mailbox (#879)

Misc

  • Bump socket2 to v0.5 (#868)
  • Bump idna to v0.4, fastrand to v2, quoted_printable to v0.5, rsa to v0.9 (#882)
  • Bump webpki-roots to v0.25 (#884 and #890)
  • Bump ed25519-dalek to v2 fixing RUSTSEC-2022-0093 (#896)
  • Bump boringssl crates to v3 (#897)

#839: lettre/lettre#839

... (truncated)

Commits


Updates tokio from 1.29.1 to 1.36.0

Release notes

Sourced from tokio's releases.

Tokio v1.36.0

1.36.0 (February 2nd, 2024)

Added

  • io: add tokio::io::Join (#6220)
  • io: implement AsyncWrite for Empty (#6235)
  • net: add support for anonymous unix pipes (#6127)
  • net: add UnixSocket (#6290)
  • net: expose keepalive option on TcpSocket (#6311)
  • sync: add {Receiver,UnboundedReceiver}::poll_recv_many (#6236)
  • sync: add Sender::{try_,}reserve_many (#6205)
  • sync: add watch::Receiver::mark_unchanged (#6252)
  • task: add JoinSet::try_join_next (#6280)

Changed

  • io: make copy cooperative (#6265)
  • io: make repeat and sink cooperative (#6254)
  • io: simplify check for empty slice (#6293)
  • process: use pidfd on Linux when available (#6152)
  • sync: use AtomicBool in broadcast channel future (#6298)

Documented

  • io: clarify clear_ready docs (#6304)
  • net: document that *Fd traits on TcpSocket are unix-only (#6294)
  • sync: document FIFO behavior of tokio::sync::Mutex (#6279)
  • chore: typographic improvements (#6262)
  • runtime: remove obsolete comment (#6303)
  • task: fix typo (#6261)

#6220: tokio-rs/tokio#6220 #6235: tokio-rs/tokio#6235 #6127: tokio-rs/tokio#6127 #6290: tokio-rs/tokio#6290 #6311: tokio-rs/tokio#6311 #6236: tokio-rs/tokio#6236 #6205: tokio-rs/tokio#6205 #6252: tokio-rs/tokio#6252 #6280: tokio-rs/tokio#6280 #6265: tokio-rs/tokio#6265 #6254: tokio-rs/tokio#6254 #6293: tokio-rs/tokio#6293 #6238: tokio-rs/tokio#6238 #6152: tokio-rs/tokio#6152 #6298: tokio-rs/tokio#6298 #6262: tokio-rs/tokio#6262 #6303: tokio-rs/tokio#6303 #6261: tokio-rs/tokio#6261

... (truncated)

Commits


Updates webpki-roots from 0.23.1 to 0.25.4

Release notes

Sourced from webpki-roots's releases.

0.25.4

Removed trust anchors:

New trust anchors:

What's Changed

Full Changelog: https://github.com/rustls/webpki-roots/compare/v/0.25.3...v/0.25.4

0.25.3

New trust anchors:

Removed trust anchors:

What's Changed

Full Changelog: https://github.com/rustls/webpki-roots/compare/v/0.25.2...v/0.25.3

Commits
  • 56a48f1 Cargo: v0.25.3 -> v0.25.4
  • 0d7bac7 process upstream February root updates
  • 54ccefa Cargo: v0.25.2 -> v0.25.3
  • 5cfec65 Refresh certificates
  • 22702f5 tests: better DER sequence wrap w/ yasna.
  • a63eec3 docs: update README for CCADB change, webpki fork.
  • 08972db codegen: use CCADB as the source of truth.
  • 9322eb9 lib: remove MD5 and SHA1 fingerprint metadata.
  • 9cd3891 ci: add clippy to build workflow.
  • b106e85 tests: clippy fixes for verify.
  • 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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 6 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.