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(py): bump the rust-py-rattler group in /py-rattler with 10 updates #1146

Merged
merged 1 commit into from
Mar 10, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the rust-py-rattler group in /py-rattler with 10 updates:

Package From To
tokio 1.43.0 1.44.0
pyo3-build-config 0.23.5 0.24.0
bytes 1.10.0 1.10.1
aws-config 1.5.17 1.5.18
aws-sdk-s3 1.77.0 1.78.0
reflink-copy 0.1.24 0.1.25
serde 1.0.218 1.0.219
serde_repr 0.1.19 0.1.20
syn 2.0.99 2.0.100
tempfile 3.17.1 3.18.0

Updates tokio from 1.43.0 to 1.44.0

Release notes

Sourced from tokio's releases.

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

Added

  • coop: add task::coop module (#7116)
  • process: add Command::get_kill_on_drop() (#7086)
  • sync: add broadcast::Sender::closed (#6685, #7090)
  • sync: add broadcast::WeakSender (#7100)
  • sync: add oneshot::Receiver::is_empty() (#7153)
  • sync: add oneshot::Receiver::is_terminated() (#7152)

Fixed

  • fs: empty reads on File should not start a background read (#7139)
  • process: calling start_kill on exited child should not fail (#7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#7122)
  • sync: properly handle panic during mpsc drop (#7094)

Changes

  • runtime: clean up magic number in registration set (#7112)
  • coop: make coop yield using waker defer strategy (#7185)
  • macros: make select! budget-aware (#7164)
  • net: panic when passing a blocking socket to from_std (#7166)
  • io: clean up buffer casts (#7142)

Changes to unstable APIs

  • rt: add before and after task poll callbacks (#7120)
  • tracing: make the task tracing API unstable public (#6972)

Documented

  • docs: fix nesting of sections in top-level docs (#7159)
  • fs: rename symlink and hardlink parameter names (#7143)
  • io: swap reader/writer in simplex doc test (#7176)
  • macros: docs about select! alternatives (#7110)
  • net: rename the argument for send_to (#7146)
  • process: add example for reading Child stdout (#7141)
  • process: clarify Child::kill behavior (#7162)
  • process: fix grammar of the ChildStdin struct doc comment (#7192)
  • runtime: consistently use worker_threads instead of core_threads (#7186)

#6685: tokio-rs/tokio#6685 #6972: tokio-rs/tokio#6972 #7086: tokio-rs/tokio#7086 #7090: tokio-rs/tokio#7090

... (truncated)

Commits

Updates pyo3-build-config from 0.23.5 to 0.24.0

Release notes

Sourced from pyo3-build-config's releases.

PyO3 0.24.0

This release is an incremental improvement of refinements and optimizations following the new APIs established in PyO3's last few releases.

Support for jiff datetime conversions have been added, and also UUID conversions.

The FromPyObject derive macro has gained new #[pyo3(default = ...)] and #[pyo3(rename_all = ...)] options, and the IntoPyObject derive macro has gained a new #[pyo3(into_py_with = ...)] option.

PyO3 will now pass positional arguments to Python functions using the "vectorcall" protocol in many cases, which should be an optimization over the previous behaviour (of creating a Python tuple of positional arguments).

Many methods on iterators of Python collections have been optimized.

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

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

@​0x676e67 @​alex @​arielb1 @​bschoenmaeckers @​davidhewitt @​dependabot[bot] @​eltociear @​Icxolu @​IvanIsCoding @​JeanArhancet @​kahojyun @​kemingy @​kylebarron @​LifeLex @​LilyFoote @​lundybernard @​matt-codecov @​mattip @​mejrs @​messense @​msimacek @​ngoldbaum @​nicolasavru @​Owen-CH-Leung @​peterjoel @​SilverBzH @​Tpt @​yoav-orca @​yotamofek

Changelog

Sourced from pyo3-build-config's changelog.

[0.24.0] - 2025-03-09

Packaging

  • Add supported CPython/PyPy versions to cargo package metadata. #4756
  • Bump target-lexicon dependency to 0.13. #4822
  • Add optional jiff dependency to add conversions for jiff datetime types. #4823
  • Bump minimum supported inventory version to 0.3.5. #4954

Added

  • Add PyIterator::send method to allow sending values into a python generator. #4746
  • Add PyCallArgs trait for passing arguments into the Python calling protocol. This enabled using a faster calling convention for certain types, improving performance. #4768
  • Add #[pyo3(default = ...'] option for #[derive(FromPyObject)] to set a default value for extracted fields of named structs. #4829
  • Add #[pyo3(into_py_with = ...)] option for #[derive(IntoPyObject, IntoPyObjectRef)]. #4850
  • Add uuid to/from python conversions. #4864
  • Add FFI definitions PyThreadState_GetFrame and PyFrame_GetBack. #4866
  • Optimize last for BoundListIterator, BoundTupleIterator and BorrowedTupleIterator. #4878
  • Optimize Iterator::count() for PyDict, PyList, PyTuple & PySet. #4878
  • Optimize nth, nth_back, advance_by and advance_back_by for BoundTupleIterator #4897
  • Add support for types.GenericAlias as pyo3::types::PyGenericAlias. #4917
  • Add MutextExt trait to help avoid deadlocks with the GIL while locking a std::sync::Mutex. #4934
  • Add #[pyo3(rename_all = "...")] option for #[derive(FromPyObject)]. #4941

Changed

  • Optimize nth, nth_back, advance_by and advance_back_by for BoundListIterator. #4810
  • Use DerefToPyAny in blanket implementations of From<Py<T>> and From<Bound<'py, T>> for PyObject. #4593
  • Map io::ErrorKind::IsADirectory/NotADirectory to the corresponding Python exception on Rust 1.83+. #4747
  • PyAnyMethods::call and friends now require PyCallArgs for their positional arguments. #4768
  • Expose FFI definitions for PyObject_Vectorcall(Method) on the stable abi on 3.12+. #4853
  • #[pyo3(from_py_with = ...)] now take a path rather than a string literal #4860
  • Format Python traceback in impl Debug for PyErr. #4900
  • Convert PathBuf & Path into Python pathlib.Path instead of PyString. #4925
  • Relax parsing of exotic Python versions. #4949
  • PyO3 threads now hang instead of pthread_exit trying to acquire the GIL when the interpreter is shutting down. This mimics the Python 3.14 behavior and avoids undefined behavior and crashes. #4874

Removed

  • Remove implementations of Deref for PyAny and other "native" types. #4593
  • Remove implicit default of trailing optional arguments (see #2935) #4729
  • Remove the deprecated implicit eq fallback for simple enums. #4730

Fixed

  • Correct FFI definition of PyIter_Send to return a PySendResult. #4746
  • Fix a thread safety issue in the runtime borrow checker used by mutable pyclass instances on the free-threaded build. #4948
Commits

Updates bytes from 1.10.0 to 1.10.1

Release notes

Sourced from bytes's releases.

Bytes v1.10.1

1.10.1 (March 5th, 2025)

Fixed

  • Fix memory leak when using to_vec with Bytes::from_owner (#773)

#773: tokio-rs/bytes#773

Changelog

Sourced from bytes's changelog.

1.10.1 (March 5th, 2025)

Fixed

  • Fix memory leak when using to_vec with Bytes::from_owner (#773)
Commits

Updates aws-config from 1.5.17 to 1.5.18

Commits

Updates aws-sdk-s3 from 1.77.0 to 1.78.0

Commits

Updates reflink-copy from 0.1.24 to 0.1.25

Release notes

Sourced from reflink-copy's releases.

v0.1.25

Other

  • Bump rustix from 0.38.34 to 1.0.1 (#101)
Changelog

Sourced from reflink-copy's changelog.

0.1.25 - 2025-03-08

Other

  • Bump rustix from 0.38.34 to 1.0.1 (#101)
Commits

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates serde_repr from 0.1.19 to 0.1.20

Release notes

Sourced from serde_repr's releases.

0.1.20

  • Documentation improvements
Commits
  • dddfad6 Release 0.1.20
  • 30e35f1 Point standard library links to stable
  • 9f39e14 More precise gitignore patterns
  • 9926d68 Remove **/*.rs.bk from project-specific gitignore
  • b82609d Prevent upload-artifact step from causing CI failure
  • 5b6a20f Upload CI Cargo.lock for reproducing failures
  • a803115 Format with rustfmt 1.7.0-nightly
  • 49082fa Fill in ignore reasons in all #[ignore] attributes
  • See full diff in compare view

Updates syn from 2.0.99 to 2.0.100

Release notes

Sourced from syn's releases.

2.0.100

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#1852)
Commits
  • 5357c8f Release 2.0.100
  • 78a1efb Merge pull request #1852 from dtolnay/tokenstream
  • 01a9e6d Visit TokenStream in generated syntax tree traversals
  • 22bd069 Bypass instantiating Span-specific visit functions
  • bf0a11d Generalize proc_macro2 path to other terminal types
  • c38857a Simplify reference-to-references
  • 90381ea Sort TERMINAL_TYPES alphabetically
  • 6a860b0 Update test suite to nightly-2025-03-08
  • aed58d1 Update test suite to nightly-2025-03-05
  • See full diff in compare view

Updates tempfile from 3.17.1 to 3.18.0

Changelog

Sourced from tempfile's changelog.

3.18.0

  • Update rustix to 1.0.0.
  • Make NamedTempFile::persist_noclobber atomic on Apple operating systems. It's now atomic on MacOS, Windows, and Linux (depending on the OS version and filesystem used).
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

@dependabot dependabot bot added the dependencies Bump of a dependency label Mar 10, 2025
Bumps the rust-py-rattler group in /py-rattler with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.44.0` |
| [pyo3-build-config](https://github.com/pyo3/pyo3) | `0.23.5` | `0.24.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.0` | `1.10.1` |
| [aws-config](https://github.com/smithy-lang/smithy-rs) | `1.5.17` | `1.5.18` |
| [aws-sdk-s3](https://github.com/awslabs/aws-sdk-rust) | `1.77.0` | `1.78.0` |
| [reflink-copy](https://github.com/cargo-bins/reflink-copy) | `0.1.24` | `0.1.25` |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [serde_repr](https://github.com/dtolnay/serde-repr) | `0.1.19` | `0.1.20` |
| [syn](https://github.com/dtolnay/syn) | `2.0.99` | `2.0.100` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.17.1` | `3.18.0` |


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

Updates `pyo3-build-config` from 0.23.5 to 0.24.0
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.23.5...v0.24.0)

Updates `bytes` from 1.10.0 to 1.10.1
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.10.0...v1.10.1)

Updates `aws-config` from 1.5.17 to 1.5.18
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-sdk-s3` from 1.77.0 to 1.78.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `reflink-copy` from 0.1.24 to 0.1.25
- [Release notes](https://github.com/cargo-bins/reflink-copy/releases)
- [Changelog](https://github.com/cargo-bins/reflink-copy/blob/main/CHANGELOG.md)
- [Commits](cargo-bins/reflink-copy@v0.1.24...v0.1.25)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `serde_repr` from 0.1.19 to 0.1.20
- [Release notes](https://github.com/dtolnay/serde-repr/releases)
- [Commits](dtolnay/serde-repr@0.1.19...0.1.20)

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

Updates `tempfile` from 3.17.1 to 3.18.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.17.1...v3.18.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-py-rattler
- dependency-name: pyo3-build-config
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-py-rattler
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-py-rattler
- dependency-name: aws-config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-py-rattler
- dependency-name: aws-sdk-s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-py-rattler
- dependency-name: reflink-copy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-py-rattler
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-py-rattler
- dependency-name: serde_repr
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-py-rattler
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-py-rattler
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-py-rattler
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/py-rattler/rust-py-rattler-4d0d344b42 branch from 53f6cc8 to 9765665 Compare March 10, 2025 09:59
@wolfv wolfv merged commit 8995a5c into main Mar 10, 2025
18 checks passed
@wolfv wolfv deleted the dependabot/cargo/py-rattler/rust-py-rattler-4d0d344b42 branch March 10, 2025 11:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Bump of a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant