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 all group in /local-registry with 12 updates #81

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2024

Bumps the all group in /local-registry with 12 updates:

Package From To
anyhow 1.0.86 1.0.89
duplicate 1.0.0 2.0.0
pest 2.7.11 2.7.13
pest_derive 2.7.11 2.7.13
pretty_assertions 1.4.0 1.4.1
rstest 0.22.0 0.23.0
serde 1.0.209 1.0.210
serde_derive 1.0.209 1.0.210
thiserror 1.0.63 1.0.64
tinyset 0.4.15 0.4.16
unicode-normalization 0.1.23 0.1.24
unicode-segmentation 1.11.0 1.12.0

Updates anyhow from 1.0.86 to 1.0.89

Release notes

Sourced from anyhow's releases.

1.0.89

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#386)

1.0.88

  • Documentation improvements

1.0.87

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#383)
Commits
  • 9d3fb6d Release 1.0.89
  • 830c399 Merge pull request #386 from dtolnay/unwindsafe
  • 8454be3 Ensure UnwindSafe even with "backtrace" feature enabled and old Rust
  • a85e414 Add more autotraits tests
  • 139f266 Release 1.0.88
  • aa3ab2b Merge pull request #385 from dtolnay/docnostd
  • 44c3767 Update documentation on no-std error type conversions
  • afe93e7 Release 1.0.87
  • d58fa4b Fix outdated html_root_url
  • c18d807 Disable unused doc_cfg feature
  • Additional commits viewable in compare view

Updates duplicate from 1.0.0 to 2.0.0

Changelog

Sourced from duplicate's changelog.

[2.0.0] - 2024-09-16

Added

  • substitute! and substitute_item allow the use of global substitutions without duplication. See #49.

Changed

  • [BREAKING] Increased base MSRV to 1.65.
  • [BREAKING] duplicate! and duplicate_item no longer allow using exclusively global substitutions.
  • Edition increased to 2021.
  • Replaced proc-macro-error dependency with proc-macro2-diagnostics for printing nice error messages and hints. See #61.
  • Updated heck dependency to version 0.5.
Commits
  • 20bdde3 [CI] Removed beta channel from testing temporarily
  • 2cbaeec Release readme no longer refers to pre-stabilization version meanings.
  • b750d6d Updated root-level documentation to refer to substitute!
  • d439268 Substitute! now works in nested invocations.
  • 7891bc4 Updated Cargo.toml and changelog
  • f1c4301 Replace proc-macro-error proc-macro2-diagnostics
  • 9d56af9 Updated README CI status badge URL
  • 4db3cce 'duplicate!' and 'duplicate_item' no longer allow only global substitution.
  • ea50f00 Implemented 'substitute!' and 'substitute_item'.
  • 47d25fe Increased MSRV to 1.65
  • Additional commits viewable in compare view

Updates pest from 2.7.11 to 2.7.13

Commits

Updates pest_derive from 2.7.11 to 2.7.13

Release notes

Sourced from pest_derive's releases.

v2.7.13

What's Changed

New Contributors

Full Changelog: pest-parser/pest@v2.7.12...v2.7.13

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }

v2.7.12

What's Changed

Full Changelog: pest-parser/pest@v2.7.11...v2.7.12

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }
Commits

Updates pretty_assertions from 1.4.0 to 1.4.1

Release notes

Sourced from pretty_assertions's releases.

v1.4.1

Fixed

  • Show feature-flagged code in documentation. Thanks to @​sandydoo for the fix! (#130)

Internal

  • Bump yansi version to 1.x. Thanks to @​SergioBenitez for the update, and maintaining this library! (#121)
Changelog

Sourced from pretty_assertions's changelog.

v1.4.1

Fixed

  • Show feature-flagged code in documentation. Thanks to @​sandydoo for the fix! (#130)

Internal

  • Bump yansi version to 1.x. Thanks to @​SergioBenitez for the update, and maintaining this library! (#121)
Commits
  • f5c5b24 chore: prep 1.4.1 release
  • d34d524 chore: display feature-flagged docs on docs.rs
  • fac4273 Merge pull request #131 from sandydoo/fix-yansi-deprecation
  • 1e51cce chore: rename deprecated yansi methods
  • 4a0e5a3 Merge pull request #121 from SergioBenitez/yansi-update
  • 08838fe internal: bump MSRV to 1.63.0 for yansi
  • 777387d ci: bump runner to windows-2022
  • 35c08fe chore: update 'yansi' to 1.0.0-rc
  • See full diff in compare view

Updates rstest from 0.22.0 to 0.23.0

Release notes

Sourced from rstest's releases.

0.23.0

What's Changed

New Contributors

Full Changelog: la10736/rstest@v0.22.0...v0.23.0

Changelog

Sourced from rstest's changelog.

[0.23.0] 2024/9/29

Add

  • You can now use environment variables in #[files] with an optional default value (see #277).
  • You can now set a base_dir for #[files] with the $[base_dir = "..."] attribute (see #277).
Commits
  • da11d4e Update dependency and prepare the release
  • 0c6e203 Update checkout list
  • 20e8858 Make clippy happy
  • 57a9342 Playground should use dev package
  • 8a04803 Removed the useless build rerun variable
  • 8c232bc Add a test for invalid base_dir value
  • 3520861 Add tests for replace_env_vars
  • 465a401 Add unit tests for parsing attributes, and add base_dir
  • a970613 Add a test for declared environment variables
  • c65d1c0 Add tests and #[ignore_missing_env_vars]
  • Additional commits viewable in compare view

Updates serde from 1.0.209 to 1.0.210

Release notes

Sourced from serde's releases.

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view

Updates serde_derive from 1.0.209 to 1.0.210

Release notes

Sourced from serde_derive's releases.

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view

Updates thiserror from 1.0.63 to 1.0.64

Release notes

Sourced from thiserror's releases.

1.0.64

  • Exclude derived impls from coverage instrumentation (#322, thanks @​oxalica)
Commits
  • 84484bc Release 1.0.64
  • 023f036 Merge pull request #322 from oxalica/feat/mark-auto-derived
  • ae1f47e Mark #[automatically_derived] for generated impls
  • ab5b5e3 Upload CI Cargo.lock for reproducing failures
  • 00b3c14 Work around new dead code warning in test
  • See full diff in compare view

Updates tinyset from 0.4.15 to 0.4.16

Commits

Updates unicode-normalization from 0.1.23 to 0.1.24

Commits
  • c992130 Merge pull request #103 from Marcondiro/master
  • 0a95cae Fix clippy
  • 99d6e46 Fix composition table
  • b7e343a Use tinyvec 1.6.0 in msrv build
  • c8011eb Update normalization_tests.rs to Unicode 16.0.0
  • fdfe8e0 Update Unicode to version 16.0.0, bump to 0.1.24
  • 79687ca Merge pull request #100 from unicode-rs/safety-comments
  • 71a54fa Merge pull request #101 from unicode-rs/constructors
  • a97388a Add safety comments
  • 154ebfc Directly expose constructors for iterators rather than relying on hard-to-dis...
  • Additional commits viewable in compare view

Updates unicode-segmentation from 1.11.0 to 1.12.0

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 all group in /local-registry with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [duplicate](https://github.com/Emoun/duplicate) | `1.0.0` | `2.0.0` |
| [pest](https://github.com/pest-parser/pest) | `2.7.11` | `2.7.13` |
| [pest_derive](https://github.com/pest-parser/pest) | `2.7.11` | `2.7.13` |
| [pretty_assertions](https://github.com/rust-pretty-assertions/rust-pretty-assertions) | `1.4.0` | `1.4.1` |
| [rstest](https://github.com/la10736/rstest) | `0.22.0` | `0.23.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.209` | `1.0.210` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.209` | `1.0.210` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` | `1.0.64` |
| [tinyset](https://github.com/droundy/tinyset) | `0.4.15` | `0.4.16` |
| [unicode-normalization](https://github.com/unicode-rs/unicode-normalization) | `0.1.23` | `0.1.24` |
| [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) | `1.11.0` | `1.12.0` |


Updates `anyhow` from 1.0.86 to 1.0.89
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.86...1.0.89)

Updates `duplicate` from 1.0.0 to 2.0.0
- [Changelog](https://github.com/Emoun/duplicate/blob/master/CHANGELOG.md)
- [Commits](Emoun/duplicate@1.0.0...2.0.0)

Updates `pest` from 2.7.11 to 2.7.13
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.11...v2.7.13)

Updates `pest_derive` from 2.7.11 to 2.7.13
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.11...v2.7.13)

Updates `pretty_assertions` from 1.4.0 to 1.4.1
- [Release notes](https://github.com/rust-pretty-assertions/rust-pretty-assertions/releases)
- [Changelog](https://github.com/rust-pretty-assertions/rust-pretty-assertions/blob/main/CHANGELOG.md)
- [Commits](rust-pretty-assertions/rust-pretty-assertions@v1.4.0...v1.4.1)

Updates `rstest` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/la10736/rstest/releases)
- [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md)
- [Commits](la10736/rstest@v0.22.0...v0.23.0)

Updates `serde` from 1.0.209 to 1.0.210
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.209...v1.0.210)

Updates `serde_derive` from 1.0.209 to 1.0.210
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.209...v1.0.210)

Updates `thiserror` from 1.0.63 to 1.0.64
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.63...1.0.64)

Updates `tinyset` from 0.4.15 to 0.4.16
- [Changelog](https://github.com/droundy/tinyset/blob/master/CHANGELOG.md)
- [Commits](https://github.com/droundy/tinyset/commits)

Updates `unicode-normalization` from 0.1.23 to 0.1.24
- [Commits](unicode-rs/unicode-normalization@v0.1.23...v0.1.24)

Updates `unicode-segmentation` from 1.11.0 to 1.12.0
- [Commits](unicode-rs/unicode-segmentation@v1.11.0...v1.12.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: duplicate
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: pest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pest_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pretty_assertions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rstest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tinyset
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: unicode-normalization
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: unicode-segmentation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner October 1, 2024 13:09
@dependabot dependabot bot added the x:rep/tiny Tiny amount of reputation label Oct 1, 2024
Copy link

github-actions bot commented Oct 1, 2024

Hello 👋 Thanks for your PR.

This repo does not currently have dedicated maintainers. Our guardians team will attempt to review and merge your PR, but it will likely take longer for your PR to be reviewed.

If you enjoy contributing to Exercism and have a track-record of doing so successfully, you might like to become an Exercism maintainer for this track.

Please feel free to ask any questions, or chat to us about anything to do with this PR or the reviewing process on the Exercism forum.

(cc @exercism/guardians)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
x:rep/tiny Tiny amount of reputation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant