Skip to content
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

Bump the patch-dependencies group with 9 updates #430

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 24, 2023

Bumps the patch-dependencies group with 9 updates:

Package From To
ahash 0.8.3 0.8.5
base64 0.21.4 0.21.5
mio 0.8.8 0.8.9
plist 1.5.0 1.5.1
serde_spanned 0.6.3 0.6.4
toml_datetime 0.6.3 0.6.5
toml_edit 0.20.2 0.20.4
tracing 0.1.37 0.1.40
tracing-log 0.1.3 0.1.4

Updates ahash from 0.8.3 to 0.8.5

Release notes

Sourced from ahash's releases.

0.8.5

Fix compile error on aarch64

0.8.4

Fix to prevent intermediate key recovery attack: tkaitchuck/aHash#163

Commits

Updates base64 from 0.21.4 to 0.21.5

Changelog

Sourced from base64's changelog.

0.21.5

  • Add Debug and Clone impls for the general purpose Engine
Commits
  • 7f81baf v0.21.5
  • 95dda57 Merge pull request #255 from marshallpierce/mp/debug
  • bda313a Add Debug and Clone to general purpose Engine
  • 53a8737 Merge pull request #254 from marshallpierce/mp/ci-all-targets
  • c423b6e CI for all targets w/o default features
  • 9eaf503 Merge pull request #253 from kpreid/features-and-build
  • 04451fb Allow cargo test to complete under any set of features.
  • 2ee1a00 no_std import simplification.
  • See full diff in compare view

Updates mio from 0.8.8 to 0.8.9

Changelog

Sourced from mio's changelog.

0.8.9

Added

Fixed

Commits
  • e80c3b2 Release v0.8.9
  • 862786b Fix importing of IoSourceState
  • 4034872 Add support for vita target
  • 8eb4010 Fix receiver and sender fd in pipe based waker
  • 9f21ce1 Enable sys::unix::pipe when using pipe based Waker
  • e7a0685 Reuse pipe2 polyfill code
  • 808dbb0 Implement pipe2 for AIX
  • 605ba78 Add AIX operating system support
  • 8dd37c5 Skip MSRV test for macOS
  • 2856112 Run the MSRV CI check on more platforms
  • Additional commits viewable in compare view

Updates plist from 1.5.0 to 1.5.1

Commits
  • 37594a7 Release v1.5.1
  • 78d9c1d Add Data::from/to_xml_format
  • f15dc2c Update quick-xml to 0.30.0
  • 0ff7a26 Clarify error message for InvalidXmlDate
  • 50b4332 Link to docs.rs documentation for the latest verion
  • See full diff in compare view

Updates serde_spanned from 0.6.3 to 0.6.4

Commits
  • 8686b94 chore: Release
  • 627736b docs: Update changelog
  • 2288fcc Merge pull request #629 from epage/sort
  • a9f1a44 feat(edit): Allow sorting Arrays
  • a76cc6d Merge pull request #625 from toml-rs/renovate/rust-1.x
  • b0eab8a chore(deps): update msrv to v1.67
  • 7cdd43c Merge pull request #621 from epage/style
  • 55f95c7 style: Make clippy happy
  • e597616 Merge pull request #620 from schubart/stop_building_unnecessary_string
  • 502a1f3 Stop building unnecessary string
  • Additional commits viewable in compare view

Updates toml_datetime from 0.6.3 to 0.6.5

Commits
  • 7ba37bb chore: Release
  • 1ff8d41 docs: Update changelog
  • c1f66fc Merge pull request #631 from epage/test
  • 045e896 fix(datetime): Verify leap years
  • 3e44692 fix(datetime): Allow leap seconds
  • 99d50bb chore(ci): Allow libfuzzer
  • 1b0a464 Merge pull request #630 from toml-rs/renovate/toml-test
  • 87ca853 chore(deps): update toml-test
  • fba15e5 chore(ci): Immediately update toml-test
  • 8057d7a chore(ci): Immediately update toml-test
  • Additional commits viewable in compare view

Updates toml_edit from 0.20.2 to 0.20.4

Commits
  • 7ba37bb chore: Release
  • 1ff8d41 docs: Update changelog
  • c1f66fc Merge pull request #631 from epage/test
  • 045e896 fix(datetime): Verify leap years
  • 3e44692 fix(datetime): Allow leap seconds
  • 99d50bb chore(ci): Allow libfuzzer
  • 1b0a464 Merge pull request #630 from toml-rs/renovate/toml-test
  • 87ca853 chore(deps): update toml-test
  • fba15e5 chore(ci): Immediately update toml-test
  • 8057d7a chore(ci): Immediately update toml-test
  • Additional commits viewable in compare view

Updates tracing from 0.1.37 to 0.1.40

Release notes

Sourced from tracing's releases.

tracing 0.1.40

This release fixes a potential stack use-after-free in the Instrument::into_inner method. Only uses of this method are affected by this bug.

Fixed

  • Use mem::ManuallyDrop instead of mem::forget in Instrument::into_inner (#2765)

#2765: tokio-rs/tracing#2765

Thanks to @​cramertj and @​manishearth for finding and fixing this issue!

tracing 0.1.39

This release adds several additional features to the tracing macros. In addition, it updates the tracing-core dependency to [v0.1.32][core-0.1.32] and the tracing-attributes dependency to [v0.1.27][attrs-0.1.27].

Added

  • Allow constant field names in macros (#2617)
  • Allow setting event names in macros (#2699)
  • core: Allow ValueSets of any length (#2508)

Changed

  • tracing-attributes: updated to [0.1.27][attrs-0.1.27]
  • tracing-core: updated to [0.1.32][core-0.1.32]
  • attributes: Bump minimum version of proc-macro2 to 1.0.60 (#2732)
  • attributes: Generate less dead code for async block return type hint (#2709)

Fixed

  • Use fully qualified names in macros for items exported from std prelude (#2621, #2757)
  • attributes: Allow [clippy::let_with_type_underscore] in macro-generated code (#2609)
  • attributes: Allow unknown_lints in macro-generated code (#2626)
  • attributes: Fix a compilation error in #[instrument] when the "log" feature is enabled (#2599)

Documented

  • Add axum-insights to relevant crates. (#2713)
  • Fix link to RAI pattern crate documentation (#2612)
  • Fix docs typos and warnings (#2581)
  • Add clippy-tracing to related crates (#2628)
  • Add tracing-cloudwatch to related crates (#2667)
  • Fix deadlink to tracing-etw repo (#2602)

... (truncated)

Commits

Updates tracing-log from 0.1.3 to 0.1.4

Release notes

Sourced from tracing-log's releases.

tracing-log 0.1.4

Changes

  • Deprecated env_logger feature in favor of tracing_subscriber::fmt::Subscriber (#2752)

#[2752]: tokio-rs/tracing#2752

Commits

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the patch-dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [ahash](https://github.com/tkaitchuck/ahash) | `0.8.3` | `0.8.5` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` |
| [mio](https://github.com/tokio-rs/mio) | `0.8.8` | `0.8.9` |
| [plist](https://github.com/ebarnard/rust-plist) | `1.5.0` | `1.5.1` |
| [serde_spanned](https://github.com/toml-rs/toml) | `0.6.3` | `0.6.4` |
| [toml_datetime](https://github.com/toml-rs/toml) | `0.6.3` | `0.6.5` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.20.2` | `0.20.4` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.37` | `0.1.40` |
| [tracing-log](https://github.com/tokio-rs/tracing) | `0.1.3` | `0.1.4` |


Updates `ahash` from 0.8.3 to 0.8.5
- [Release notes](https://github.com/tkaitchuck/ahash/releases)
- [Commits](tkaitchuck/aHash@v0.8.3...v0.8.5)

Updates `base64` from 0.21.4 to 0.21.5
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.4...v0.21.5)

Updates `mio` from 0.8.8 to 0.8.9
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v0.8.8...v0.8.9)

Updates `plist` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/ebarnard/rust-plist/releases)
- [Commits](ebarnard/rust-plist@v1.5.0...v1.5.1)

Updates `serde_spanned` from 0.6.3 to 0.6.4
- [Commits](toml-rs/toml@serde_spanned-v0.6.3...serde_spanned-v0.6.4)

Updates `toml_datetime` from 0.6.3 to 0.6.5
- [Commits](toml-rs/toml@toml_datetime-v0.6.3...toml_datetime-v0.6.5)

Updates `toml_edit` from 0.20.2 to 0.20.4
- [Commits](toml-rs/toml@v0.20.2...v0.20.4)

Updates `tracing` from 0.1.37 to 0.1.40
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-0.1.37...tracing-0.1.40)

Updates `tracing-log` from 0.1.3 to 0.1.4
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-log-0.1.3...tracing-log-0.1.4)

---
updated-dependencies:
- dependency-name: ahash
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: base64
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: mio
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: plist
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: serde_spanned
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: toml_datetime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: toml_edit
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: tracing
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: tracing-log
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 24, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 25, 2023

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

@dependabot dependabot bot closed this Oct 25, 2023
@dependabot dependabot bot deleted the dependabot/cargo/patch-dependencies-acb1c8831e branch October 25, 2023 01:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants