Skip to content

Bump the dependencies group with 7 updates #215

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 2, 2025

Bumps the dependencies group with 7 updates:

Package From To
prettyplease 0.2.32 0.2.33
pyo3-build-config 0.24.2 0.25.0
cargo_metadata 0.19.2 0.20.0
cargo-platform 0.1.9 0.2.0
cc 1.2.24 1.2.25
thiserror 2.0.12 1.0.69
thiserror-impl 2.0.12 1.0.69

Updates prettyplease from 0.2.32 to 0.2.33

Release notes

Sourced from prettyplease's releases.

0.2.33

  • Improve macro token spacing after $crate (#116)
Commits
  • d5239de Release 0.2.33
  • 395827d Merge pull request #116 from dtolnay/dollarcrate
  • 6e21c91 Improve macro token spacing after $crate
  • e05fac9 Regenerate output.rustc.rs using nightly-2025-04-28
  • 8eb8c14 Update to nightly-2025-04-12
  • See full diff in compare view

Updates pyo3-build-config from 0.24.2 to 0.25.0

Release notes

Sourced from pyo3-build-config's releases.

PyO3 0.25.0

This version extends Python version support to include the new Python 3.14, currently in beta. Please note it is possible that there may yet be changes to 3.14 before stable release which may impact final compatibility.

New optional dependencies on bigdecimal, ordered_float, and time have been added to permit converting types from those crates to Python types (and vice versa).

The experimental-inspect feature now has the capability to autogenerate type stubs. These stubs are still extremely basic and lack much information. Tooling such as setuptools-rust and maturin will also need to be updated to make adoption of these easier. Please follow PyO3/pyo3#5137 to keep abreast of developments of this feature.

The #[pyclass] macro has gained new options #[pyclass(generic)] and #[pyclass(immutable_type)] to offer additional control over the runtime behaviour of the generated Python type object.

The AsPyPointer trait has been removed as PyO3's smart pointer types such as Py<T>, Bound<T> and Borrowed<T> covered this use case with a better API.

As part of the upgrade to support 3.14, there have also been many cleanups to pyo3-ffi. Many definitions which are private implementation details of CPython have been removed; projects downstream of CPython cannot rely on stability of these even across CPython patch releases.

There are also many other incremental improvements, bug fixes and smaller features.

Please consult the migration guide for help upgrading.

Thank you to everyone who contributed code, documentation, design ideas, bug reports, and feedback. The following contributors' commits are included in this release:

@​0x676e67 @​bschoenmaeckers @​clin1234 @​davidbrochart @​davidhewitt @​ddelange @​decathorpe @​dependabot[bot] @​exg @​hgmich @​Icxolu @​IvanIsCoding @​m-ou-se @​n-eq @​ngoldbaum @​Owen-CH-Leung @​prutschman-iv @​superserious-dev @​Tpt @​trim21 @​Vrajs16 @​xhochy

Changelog

Sourced from pyo3-build-config's changelog.

[0.25.0] - 2025-05-14

Packaging

  • Support Python 3.14.0b1. #4811
  • Bump supported GraalPy version to 24.2. #5116
  • Add optional bigdecimal dependency to add conversions for bigdecimal::BigDecimal. #5011
  • Add optional time dependency to add conversions for time types. #5057
  • Remove cfg-if dependency. #5110
  • Add optional ordered_float dependency to add conversions for ordered_float::NotNan and ordered_float::OrderedFloat. #5114

Added

  • Add initial type stub generation to the experimental-inspect feature. #3977
  • Add #[pyclass(generic)] option to support runtime generic typing. #4926
  • Implement OnceExt & MutexExt for parking_lot & lock_api. Use the new extension traits by enabling the arc_lock, lock_api, or parking_lot cargo features. #5044
  • Implement From/Into for Borrowed<T> -> Py<T>. #5054
  • Add PyTzInfo constructors. #5055
  • Add FFI definition PY_INVALID_STACK_EFFECT. #5064
  • Implement AsRef<Py<PyAny>> for Py<T>, Bound<T> and Borrowed<T>. #5071
  • Add FFI definition PyModule_Add and compat::PyModule_Add. #5085
  • Add FFI definitions Py_HashBuffer, Py_HashPointer, and PyObject_GenericHash. #5086
  • Support #[pymodule_export] on const items in declarative modules. #5096
  • Add #[pyclass(immutable_type)] option (on Python 3.14+ with abi3, or 3.10+ otherwise) for immutable type objects. #5101
  • Support #[pyo3(rename_all)] support on #[derive(IntoPyObject)]. #5112
  • Add PyRange wrapper. #5117

Changed

  • Enable use of datetime types with abi3 feature enabled. #4970
  • Deprecate timezone_utc in favor of PyTzInfo::utc. #5055
  • Reduce visibility of some CPython implementation details: #5064
    • The FFI definition PyCodeObject is now an opaque struct on all Python versions.
    • The FFI definition PyFutureFeatures is now only defined up until Python 3.10 (it was present in CPython headers but unused in 3.11 and 3.12).
  • Change PyAnyMethods::is to take other: &Bound<T>. #5071
  • Change Py::is to take other: &Py<T>. #5071
  • Change PyVisit::call to take T: Into<Option<&Py<T>>>. #5071
  • Expose PyDateTime_DATE_GET_TZINFO and PyDateTime_TIME_GET_TZINFO on PyPy 3.10 and later. #5079
  • Add #[track_caller] to with_gil and with_gil_unchecked. #5109
  • Use std::thread::park() instead of libc::pause() or sleep(9999999). #5115

Removed

  • Remove all functionality deprecated in PyO3 0.23. #4982
  • Remove deprecated IntoPy and ToPyObject traits. #5010
  • Remove private types from pyo3-ffi (i.e. starting with _Py) which are not referenced by public APIs: _PyLocalMonitors, _Py_GlobalMonitors, _PyCoCached, _PyCoLineInstrumentationData, _PyCoMonitoringData, _PyCompilerSrcLocation, _PyErr_StackItem. #5064
  • Remove FFI definition PyCode_GetNumFree (PyO3 cannot support it due to knowledge of the code object). #5064
  • Remove AsPyPointer trait. #5071
  • Remove support for the deprecated string form of from_py_with. #5097
  • Remove FFI definitions of private static variables: _PyMethodWrapper_Type, _PyCoroWrapper_Type, _PyImport_FrozenBootstrap, _PyImport_FrozenStdlib, _PyImport_FrozenTest, _PyManagedBuffer_Type, _PySet_Dummy, _PyWeakref_ProxyType, and _PyWeakref_CallableProxyType. #5105

... (truncated)

Commits

Updates cargo_metadata from 0.19.2 to 0.20.0

Commits
  • fa60b98 Merge pull request #293 from oli-obk/push-orzyoroqpxpu
  • 61345fb required features have a different format from normal feature names
  • 19f4203 Bump MSRV
  • 6861466 Fix build on with builder feature
  • a21b7a1 Update examples
  • 5895dd6 Merge pull request #261 from zetanumbers/docsrs-features
  • e3373d0 refactor: NodeDep::name: PackageName
  • 2f0142d Merge pull request #291 from gear-tech/fix-cross-compilation
  • 95d4a36 update changelog
  • 9cd40e6 append docs
  • Additional commits viewable in compare view

Updates cargo-platform from 0.1.9 to 0.2.0

Commits

Updates cc from 1.2.24 to 1.2.25

Release notes

Sourced from cc's releases.

cc-v1.2.25

Other

  • make powerp64 use powerpc64-linux-gnu prefix (#1474)
Changelog

Sourced from cc's changelog.

1.2.25 - 2025-05-30

Other

  • make powerp64 use powerpc64-linux-gnu prefix (#1474)
Commits

Updates thiserror from 2.0.12 to 1.0.69

Commits
  • 41938bd Release 1.0.69
  • 9d6506e Merge pull request #382 from dtolnay/hang
  • 591a44d Fix fallback fmt expression parser hang
  • 5b36e37 Add ui test of invalid expression syntax in display attribute
  • 8d06fb5 Release 1.0.68
  • 372fd8a Merge pull request #344 from dtolnay/binop
  • 08f8992 Disregard equality binop in fallback parser
  • d2a823d Merge pull request #343 from dtolnay/unnamed
  • b3bf7a6 Add logic to determine whether unnamed fmt arguments are present
  • 490f9c0 Merge pull request #342 from dtolnay/synfull
  • Additional commits viewable in compare view

Updates thiserror-impl from 2.0.12 to 1.0.69

Commits
  • 41938bd Release 1.0.69
  • 9d6506e Merge pull request #382 from dtolnay/hang
  • 591a44d Fix fallback fmt expression parser hang
  • 5b36e37 Add ui test of invalid expression syntax in display attribute
  • 8d06fb5 Release 1.0.68
  • 372fd8a Merge pull request #344 from dtolnay/binop
  • 08f8992 Disregard equality binop in fallback parser
  • d2a823d Merge pull request #343 from dtolnay/unnamed
  • b3bf7a6 Add logic to determine whether unnamed fmt arguments are present
  • 490f9c0 Merge pull request #342 from dtolnay/synfull
  • 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

Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.32` | `0.2.33` |
| [pyo3-build-config](https://github.com/pyo3/pyo3) | `0.24.2` | `0.25.0` |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | `0.19.2` | `0.20.0` |
| [cargo-platform](https://github.com/rust-lang/cargo) | `0.1.9` | `0.2.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.24` | `1.2.25` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.12` | `1.0.69` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `2.0.12` | `1.0.69` |


Updates `prettyplease` from 0.2.32 to 0.2.33
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.32...0.2.33)

Updates `pyo3-build-config` from 0.24.2 to 0.25.0
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.24.2...v0.25.0)

Updates `cargo_metadata` from 0.19.2 to 0.20.0
- [Release notes](https://github.com/oli-obk/cargo_metadata/releases)
- [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md)
- [Commits](oli-obk/cargo_metadata@0.19.2...0.20.0)

Updates `cargo-platform` from 0.1.9 to 0.2.0
- [Changelog](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/cargo/commits/0.2.0)

Updates `cc` from 1.2.24 to 1.2.25
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.24...cc-v1.2.25)

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

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

---
updated-dependencies:
- dependency-name: prettyplease
  dependency-version: 0.2.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pyo3-build-config
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cargo_metadata
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cargo-platform
  dependency-version: 0.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cc
  dependency-version: 1.2.25
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: thiserror
  dependency-version: 1.0.69
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: thiserror-impl
  dependency-version: 1.0.69
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies rust Pull requests that update Rust code labels Jun 2, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 7, 2025

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

@dependabot dependabot bot closed this Jun 7, 2025
@dependabot dependabot bot deleted the dependabot/cargo/dependencies-631b25ac5c branch June 7, 2025 06:55
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.

0 participants