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

chore: bump the patch group with 6 updates #4033

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the patch group with 6 updates:

Package From To
serde_json 1.0.108 1.0.109
anyhow 1.0.76 1.0.78
syn 2.0.43 2.0.44
clap 4.4.11 4.4.12
clap_complete 4.4.4 4.4.5
pyo3-build-config 0.20.0 0.20.1

Updates serde_json from 1.0.108 to 1.0.109

Release notes

Sourced from serde_json's releases.

v1.0.109

  • Documentation improvements
Commits
  • f88bf1f Release 1.0.109
  • bb62c73 Merge pull request #1097 from serde-rs/doccfg
  • df36d10 Restore doc cfg on re-exports
  • c367091 Merge pull request #1095 from dtolnay/hashtest
  • b328ee7 Eliminate hash closure in favor of calling hash_one directly
  • b9bcbad Use BuildHasher::hash_one
  • 7ff6c9e Use random hasher state for number hashing test
  • fe031cd Delete trace_macros! functionality from test
  • 05196ca Update ui test suite to nightly-2023-11-19
  • See full diff in compare view

Updates anyhow from 1.0.76 to 1.0.78

Release notes

Sourced from anyhow's releases.

1.0.78

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)

1.0.77

Commits
  • 38c79ef Release 1.0.78
  • ded2295 Merge pull request #337 from dtolnay/bootstrap
  • ae45b67 Do not rebuild on RUSTC_BOOTSTRAP changes on nightly compiler
  • 2d32366 Update crate name used for build script probe
  • d10baed Move ExitStatus::success check into compile_probe()
  • 290c450 Merge pull request #336 from dtolnay/optionifletelse
  • 6b231dd Remove option_if_let_else clippy suppression from build script
  • eb66ff5 Merge pull request #335 from dtolnay/cargoenvvar
  • b1590b1 Require cargo promised environment variables to be present
  • 15646f4 Merge pull request #334 from dtolnay/probe
  • Additional commits viewable in compare view

Updates syn from 2.0.43 to 2.0.44

Release notes

Sourced from syn's releases.

2.0.44

  • Documentation improvements
Commits
  • 58b42f5 Release 2.0.44
  • 4523437 Merge pull request #1569 from dtolnay/cfgvisit
  • 694a1bb Render doc cfg on Visit/VisitMut/Fold trait methods
  • 1728630 Add doc cfg on Error::new_spanned
  • 649e426 Mark exprs which are not parsed in "derive" mode as "full"-only
  • 6c4627f Fill in missing doc cfg on Expr and Pat nodes
  • 1cea0be Merge pull request #1568 from dtolnay/doccfg
  • dc2153d Restore doc cfg on re-exports
  • e2b6ebc Fix typo in ast_enum cfg
  • a193361 Fix unused_macros warning on ast_enum when features are disabled
  • Additional commits viewable in compare view

Updates clap from 4.4.11 to 4.4.12

Release notes

Sourced from clap's releases.

v4.4.12

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed
Changelog

Sourced from clap's changelog.

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed
Commits
  • 6d601e6 chore: Release
  • 048e7f0 docs: Update changelog
  • 53f5b82 Merge pull request #5267 from vermiculus/sa/avoid-pv-expansion-in-help
  • 05cd057 perf: Avoid retrieving possible_values unless used
  • 2920808 test: Update snapshots
  • 28763eb chore: Release
  • ace7bb5 docs(complete): Update changelog
  • 76beca4 docs(complete): Polish API reference for dynamic
  • 3630e58 Merge pull request #5273 from epage/docsrs
  • 3724b9e docs: Include more content on docs.rs
  • See full diff in compare view

Updates clap_complete from 4.4.4 to 4.4.5

Release notes

Sourced from clap_complete's releases.

v4.4.5

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Changelog

Sourced from clap_complete's changelog.

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Commits

Updates pyo3-build-config from 0.20.0 to 0.20.1

Release notes

Sourced from pyo3-build-config's releases.

PyO3 0.20.1

This release is a maintenance release to resolve a clippy warning which triggers on function arguments of Py<Self>.

This release also contains a few minor API additions, including optional support for the either and smallvec crates.

Thank you to the following users for the improvements:

@​adamreichold @​aldanor @​alex @​daemontus @​davidhewitt @​mejrs @​messense @​neachdainn @​orhun @​suriya-ganesh @​wyfo

Changelog

Sourced from pyo3-build-config's changelog.

[0.20.1] - 2023-12-30

Added

  • Add optional either feature to add conversions for either::Either<L, R> sum type. #3456
  • Add optional smallvec feature to add conversions for smallvec::SmallVec. #3507
  • Add take and into_inner methods to GILOnceCell #3556
  • #[classmethod] methods can now also receive Py<PyType> as their first argument. #3587
  • #[pyfunction(pass_module)] can now also receive Py<PyModule> as their first argument. #3587
  • Add traverse method to GILProtected. #3616
  • Added abi3-py312 feature #3687

Fixed

  • Fix minimum version specification for optional chrono dependency. #3512
  • Silenced new clippy::unnecessary_fallible_conversions warning when using a Py<Self> self receiver. #3564
Commits
  • d3f034a release: 0.20.1
  • 985412f ci: updates for Rust 1.75
  • ecb0e9c Copy note on using check_signals on non-main thread/interpreter from Python d...
  • b842711 Fixes #3645 -- added abi3-py312 feature
  • d897479 Fix the Crossbeam ecosystem to point releases before it required Rust 1.61.
  • 8f6976d Enable GILProtected access via PyVisit
  • 5c1e4d1 ci: fixup pytests to compile in debug
  • 1896a32 ci: refactor pytests dev dependencies
  • 7032789 Add additional definitions for _PyImport_Frozen*
  • 1166a99 Refactor create_type_object so that most of the code is monomorphic
  • 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 <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

@dependabot dependabot bot added dependencies rust Pull requests that update Rust code labels Jan 1, 2024
@prql-bot prql-bot enabled auto-merge (squash) January 1, 2024 17:44
Bumps the patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.76` | `1.0.78` |
| [syn](https://github.com/dtolnay/syn) | `2.0.43` | `2.0.44` |
| [clap](https://github.com/clap-rs/clap) | `4.4.11` | `4.4.12` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.4.4` | `4.4.5` |
| [pyo3-build-config](https://github.com/pyo3/pyo3) | `0.20.0` | `0.20.1` |


Updates `serde_json` from 1.0.108 to 1.0.109
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.108...v1.0.109)

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

Updates `syn` from 2.0.43 to 2.0.44
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.43...2.0.44)

Updates `clap` from 4.4.11 to 4.4.12
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.11...v4.4.12)

Updates `clap_complete` from 4.4.4 to 4.4.5
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.4.4...clap_complete-v4.4.5)

Updates `pyo3-build-config` from 0.20.0 to 0.20.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.20.0...v0.20.1)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: pyo3-build-config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/patch-fd54f757c1 branch from 7a8281f to 9a8a21f Compare January 1, 2024 18:47
@max-sixty
Copy link
Member

@dependabot ignore pyo3-build-config minor version

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2024

OK, I won't notify you about version 0.20.x of pyo3-build-config again, unless you unignore it.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2024

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

@dependabot dependabot bot closed this Jan 1, 2024
auto-merge was automatically disabled January 1, 2024 19:31

Pull request was closed

@dependabot dependabot bot deleted the dependabot/cargo/patch-fd54f757c1 branch January 1, 2024 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant