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(deps): bump the minor group across 1 directory with 22 updates #477

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the minor group with 17 updates in the / directory:

Package From To
tree-sitter-rust 0.23.1 0.23.2
pyo3 0.22.6 0.23.1
cpufeatures 0.2.15 0.2.16
itoa 1.0.11 1.0.13
libc 0.2.162 0.2.164
litemap 0.7.3 0.7.4
portable-atomic 1.9.0 1.10.0
proc-macro2 1.0.89 1.0.92
rustix 0.38.40 0.38.41
schannel 0.1.26 0.1.27
serde_json 1.0.132 1.0.133
syn 2.0.87 2.0.89
unicode-ident 1.0.13 1.0.14
url 2.5.3 2.5.4
yoke 0.7.4 0.7.5
zerofrom 0.1.4 0.1.5
zerofrom-derive 0.1.4 0.1.5

Updates tree-sitter-rust from 0.23.1 to 0.23.2

Release notes

Sourced from tree-sitter-rust's releases.

v0.23.2

NOTE: Download tree-sitter-rust.tar.xz for the complete source code.

Commits

Updates pyo3 from 0.22.6 to 0.23.1

Release notes

Sourced from pyo3's releases.

PyO3 0.23.1

This is a re-release of PyO3 0.23.0 with corrections to fix docs.rs builds.

Thanks @​yotamofek for the reports & fixes!

PyO3 0.23.0

This release is a significant iteration to both PyO3's internals and API with two major enhancements:

  • Support for Python 3.13t, also known as "free-threaded Python".
  • A new trait IntoPyObject, which unifies the existing to-Python conversion traits IntoPy and ToPyObject while also allowing new optimizations and proper error handling. The new trait also has a #[derive(IntoPyObject)] macro.

While both of these new features have undergone extensive design, it will be no surprise to find teething issues. All feedback is encouraged so that we can follow up with iterative improvements for these new features in future releases.

On top of the major additions, the removal of the "GIL Refs" API deprecated in PyO3 0.21 is now complete. A number of PyO3 APIs have had new simpler names introduced now that the PyO3 API is no longer in a migration phase (for example PyTuple::new_bound is now simplified to PyTuple::new).

Beyond that, PyO3 0.23 contains nearly 5 months of incremental improvements, bug fixes and smaller features that have been implemented while the major work of this release was ongoing.

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:

@​abrisco @​adamcavendish @​ahlinc @​akuhnregnier @​alex @​attack68 @​birkenfeld @​Brogolem35 @​bschoenmaeckers @​ChayimFriedman2 @​Cheukting @​csernazs @​davidhewitt @​deedy5 @​dependabot[bot] @​digitalsentinel @​exg @​FlickerSoul @​gi0baro @​glevco @​Icxolu @​jakelishman @​jeff-k @​jonaspleyer @​JRRudy1 @​KLMatlock @​konstin @​LilyFoote @​MatthijsKok @​Mottl

... (truncated)

Changelog

Sourced from pyo3's changelog.

[0.23.1] - 2024-11-16

Re-release of 0.23.0 with fixes to docs.rs build.

[0.23.0] - 2024-11-15

Packaging

  • Drop support for PyPy 3.7 and 3.8. #4582
  • Extend range of supported versions of hashbrown optional dependency to include version 0.15. #4604
  • Bump minimum version of eyre optional dependency to 0.6.8. #4617
  • Bump minimum version of hashbrown optional dependency to 0.14.5. #4617
  • Bump minimum version of indexmap optional dependency to 2.5.0. #4617
  • Bump minimum version of num-complex optional dependency to 0.4.6. #4617
  • Bump minimum version of chrono-tz optional dependency to 0.10. #4617
  • Support free-threaded Python 3.13t. #4588

Added

  • Add IntoPyObject (fallible) conversion trait to convert from Rust to Python values. #4060
  • Add #[pyclass(str="<format string>")] option to generate __str__ based on a Display implementation or format string. #4233
  • Implement PartialEq for Bound<'py, PyInt> with u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128 and isize. #4317
  • Implement PartialEq<f64> and PartialEq<f32> for Bound<'py, PyFloat>. #4348
  • Add as_super and into_super methods for Bound<T: PyClass>. #4351
  • Add FFI definitions PyCFunctionFast and PyCFunctionFastWithKeywords #4415
  • Add FFI definitions for PyMutex on Python 3.13 and newer. #4421
  • Add PyDict::locked_for_each to iterate efficiently on freethreaded Python. #4439
  • Add FFI definitions PyObject_GetOptionalAttr, PyObject_GetOptionalAttrString, PyObject_HasAttrWithError, PyObject_HasAttrStringWithError, Py_CONSTANT_* constants, Py_GetConstant, Py_GetConstantBorrowed, and PyType_GetModuleByDef on Python 3.13 and newer. #4447
  • Add FFI definitions for the Python critical section API available on Python 3.13 and newer. #4477
  • Add derive macro for IntoPyObject. #4495
  • Add Borrowed::as_ptr. #4520
  • Add FFI definition for PyImport_AddModuleRef. #4529
  • Add PyAnyMethods::try_iter. #4553
  • Add pyo3::sync::with_critical_section, a wrapper around the Python Critical Section API added in Python 3.13. #4587
  • Add #[pymodule(gil_used = false)] option to declare that a module supports the free-threaded build. #4588
  • Add PyModule::gil_used method to declare that a module supports the free-threaded build. #4588
  • Add FFI definition PyDateTime_CAPSULE_NAME. #4634
  • Add PyMappingProxy type to represent the mappingproxy Python class. #4644
  • Add FFI definitions PyList_Extend and PyList_Clear. #4667
  • Add derive macro for IntoPyObjectRef. #4674
  • Add pyo3::sync::OnceExt and pyo3::sync::OnceLockExt traits. #4676

Changed

  • Prefer IntoPyObject over IntoPy<Py<PyAny>>> for #[pyfunction] and #[pymethods] return types. #4060
  • Report multiple errors from #[pyclass] and #[pyo3(..)] attributes. #4243
  • Nested declarative #[pymodule] are automatically treated as submodules (no PyInit_ entrypoint is created). #4308
  • Deprecate PyAnyMethods::is_ellipsis (Py::is_ellipsis was deprecated in PyO3 0.20). #4322
  • Deprecate PyLong in favor of PyInt. #4347
  • Rename IntoPyDict::into_py_dict_bound to IntoPyDict::into_py_dict. #4388

... (truncated)

Commits

Updates cpufeatures from 0.2.15 to 0.2.16

Commits

Updates itoa from 1.0.11 to 1.0.13

Release notes

Sourced from itoa's releases.

1.0.13

1.0.12

Commits
  • d49fc1d Release 1.0.13
  • 3118ea6 Merge pull request #55 from dtolnay/isize
  • ed2b9b4 Eliminate 64-bit-to-isize conversion
  • 513debf Merge pull request #54 from dtolnay/lut
  • 09a06f6 Change decimal digits lookup table from static to const
  • d39d767 Merge pull request #53 from dtolnay/render
  • daf766b Replace 'decode' terminology with 'render'
  • 535f396 Merge pull request #52 from dtolnay/fouratatime
  • 21e76dc Remove redundant size_of check
  • c4ba250 Merge pull request #51 from dtolnay/maxlen
  • Additional commits viewable in compare view

Updates libc from 0.2.162 to 0.2.164

Release notes

Sourced from libc's releases.

0.2.164

MSRV

This release increases the MSRV of libc to 1.63.

Other

0.2.163

Added

Changed

Other

Changelog

Sourced from libc's changelog.

0.2.164 - 2024-11-16

MSRV

This release increases the MSRV of libc to 1.63.

Other

0.2.163 - 2024-11-16

Added

Changed

Other

Commits
  • dad00cb chore: release v0.2.164
  • 01ce562 Merge pull request #4051 from tgross35/stable-ci
  • 8153ac1 Merge pull request #4049 from tgross35/rust-version
  • 5f0d183 Merge pull request #4040 from tgross35/stable-msrv
  • 5125160 Merge pull request #4027 from rust-lang/release-plz-2024-11-12T07-15-20Z
  • 6093ce0 MacOS: move ifconf to s_no_extra_traits
  • a4b5bf8 Remove the "main" workflow
  • d7b6bf0 ci: Remove tests with rust < 1.63
  • 0a976d3 ci: trim trailing whitespace
  • cfd7ebf chore: release v0.2.163
  • Additional commits viewable in compare view

Updates litemap from 0.7.3 to 0.7.4

Changelog

Sourced from litemap's changelog.

Changelog

icu4x 2.0-beta1

  • Components
    • General
      • Constructors updated to take type-safe "preferences" objects instead of locales.
        • Preference bags are often built from a locale, but they can also be built manually or merged from other sources.
        • Preference bags are taken by value, so most call sites will need to change from &locale.into() to locale.into() or (&locale).into()
      • Compiled data updated to CLDR 45 and ICU 75 (unicode-org#4782)
      • Compiled data updated to CLDR 46 (unicode-org#5479, unicode-org#5598)
      • Fine-tuning error enums; removal of obsolete variants (unicode-org#4959, unicode-org#4638, unicode-org#5019, unicode-org#5041, unicode-org#5146)
      • Refactored FromStr and try_from_str functions (unicode-org#4934, unicode-org#5085)
      • Deleted various deprecated functions
      • Shadow default instead of making new function const_default (unicode-org#5354)
      • Rename marker types (unicode-org#4999)
      • Fix take/into function names and conventions (unicode-org#5723)
    • icu
      • Adding datagen feature to meta crate (#5047)
    • icu_calendar
      • Restructure icu_calendar public API to put all calendars under cal (unicode-org#5701)
      • Consistently name calendar-specific Date/DateTime functions that have a calendar argument (unicode-org#5692)
      • Move all calendar types to cal module (unicode-org#5701)
      • Shorten integer types returned by day_of_month(), week_of_month(), and week_of_year() to u8 (unicode-org#5702)
      • IntoAnyCalendar: new kind() method (unicode-org#4975)
      • Fixed various broken assertions (unicode-org#4986)
      • Fix Japanese calendar year 0 (unicode-org#5006)
      • Add Date, Time, and DateTime from str impls via IXDTF (unicode-org#5260)
      • Fix bug by consistently 1-indexing months and days (unicode-org#5726)
      • Refactor YearInfo to separate cyclic/Temporal/Formatting eras (unicode-org#5509)
      • FormattableMonth -> MonthInfo, and split standard from formatting month codes (unicode-org#5536)
      • Remove unix epoch APIs (unicode-org#5748)
      • Shorten integer type of day_of_month, week_of_month, week_of_year (unicode-org#5702)
    • icu_collator
      • Introduce a borrowed version of the collator (unicode-org#5513)
      • Adapt the collator to Unicode 16 normalization changes (unicode-org#4878)
      • Use script fallback in collator (unicode-org#5743)
    • icu_collections
    • icu_normalizer
      • Introduce borrowed variants of normalizer structs (unicode-org#5413)
      • Make the normalizer work with new Unicode 16 normalization behaviors (unicode-org#4860)
    • icu_datetime
      • All-new semantic skeletons. (unicode-org#1317, unicode-org#4945)
        • This is a re-write of DateTimeFormatter and most of the icu_datetime crate. It adds the ability to format specific subsets of fields, conforming with LDML version 46. All call sites of ICU4X 1.x DateTimeFormatter will need to be updated. It is recommended to start fresh with the new crate documentation.
      • Optimize YearNames storage (unicode-org#5721)
      • Drop support for week-of-year, to likely be re-added in a future version or upon request (unicode-org#5569)
      • Remove VVV time zone format, to possibly be added back later (unicode-org#5659)
      • Fix generic location format for single-tz countries (unicode-org#5657)
      • Support localized offsets with seconds (unicode-org#5674)
      • Audit datetime format function (unicode-org#5789)

... (truncated)

Commits

Updates portable-atomic from 1.9.0 to 1.10.0

Changelog

Sourced from portable-atomic's changelog.

[1.10.0] - 2024-11-23

  • Update to stabilized s390x and Arm64EC inline assembly. (97645c1, e1d1a97)

  • Make get_mut const fn on Rust 1.83+. (0dea68c)

  • Make from_ptr const fn on Rust 1.83+. (align to the std atomic change in Rust 1.84) (50532d8)

  • Various optimizations:

    • RISC-V without A-extension: Optimize 16-bit fetch_not when Zabha enabled. (a487a09)
    • s390x: Optimize 128-bit CAS/RMW. (fba028d, 33ab2c1)
    • PowerPC64: Optimize 128-bit Acquire/AcqRel/SeqCst CAS/RMW and 128-bit CAS with Relaxed failure ordering. (33ab2c1)
    • AVR: Optimize 8-bit load/store. (33ab2c1)
  • Improve support of run-time detection and outline-atomics:

    • Enable run-time detection by default on powerpc64 and aarch64 linux-uclibc. (#193)
    • Improve run-time detection of powerpc64 quadword-atomics. (1e3bfda)
    • Improve run-time detection of Zhaoxin CPU. (f283d2a)
  • Support RISC-V Zacas extension on pre-1.82 rustc. (#194)

  • Improve compile-time detection of RISC-V Zaamo/Zabha extensions. (673137a)

  • Respect RUSTC_BOOTSTRAP=-1 recently added in nightly in rustc version detection. (5b2847a)

Commits
  • b703006 Release portable-atomic 1.10.0
  • 1af9480 Update changelog
  • 33ab2c1 Cleanups for AVR/MSP430/PowerPC/RISC-V/s390x
  • 6d945ab Revert "ci: Temporarily disable NetBSD test"
  • e7b7a56 Release portable-atomic-util 0.2.4
  • 99e56d6 ci: Adjust codegen job
  • 8b642b9 util: Update docs and changelog
  • d8e6bbf util: add portable_atomic_unstable_coerce_unsized cfg option (#195)
  • 13e9580 Apply unqualified_local_imports lint
  • 464f393 tools: Tweak test.sh
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.89 to 1.0.92

Release notes

Sourced from proc-macro2's releases.

1.0.92

  • Improve compiler/fallback mismatch panic message (#487)

1.0.91

  • Fix panic "compiler/fallback mismatch 949" when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment (#484)

1.0.90

  • Improve error recovery in TokenStream's and Literal's FromStr implementations to work around rust-lang/rust#58736 such that rustc does not poison compilation on codepaths that should be recoverable errors (#477, #478, #479, #480, #481, #482)
Commits
  • acc7d36 Release 1.0.92
  • 0cb443d Merge pull request #487 from dtolnay/mismatchline
  • ae478ed Change mismatch panic message to avoid github linkifying
  • 5046761 Release 1.0.91
  • 27c5494 Merge pull request #486 from dtolnay/compilerlex
  • a9146d6 Ensure that compiler tokenstream parsing only produces a compiler lexerror
  • 1ce5f04 Merge pull request #485 from dtolnay/fallbackident
  • 75d0818 Make parser's fallback Ident symmetric with Group and Literal
  • 56c3e31 Merge pull request #484 from dtolnay/fbliteral
  • d2c0e61 Fix spanned fallback literal construction
  • Additional commits viewable in compare view

Updates pyo3-build-config from 0.22.6 to 0.23.1

Release notes

Sourced from pyo3-build-config's releases.

PyO3 0.23.1

This is a re-release of PyO3 0.23.0 with corrections to fix docs.rs builds.

Thanks @​yotamofek for the reports & fixes!

PyO3 0.23.0

This release is a significant iteration to both PyO3's internals and API with two major enhancements:

  • Support for Python 3.13t, also known as "free-threaded Python".
  • A new trait IntoPyObject, which unifies the existing to-Python conversion traits IntoPy and ToPyObject while also allowing new optimizations and proper error handling. The new trait also has a #[derive(IntoPyObject)] macro.

While both of these new features have undergone extensive design, it will be no surprise to find teething issues. All feedback is encouraged so that we can follow up with iterative improvements for these new features in future releases.

On top of the major additions, the removal of the "GIL Refs" API deprecated in PyO3 0.21 is now complete. A number of PyO3 APIs have had new simpler names introduced now that the PyO3 API is no longer in a migration phase (for example PyTuple::new_bound is now simplified to PyTuple::new).

Beyond that, PyO3 0.23 contains nearly 5 months of incremental improvements, bug fixes and smaller features that have been implemented while the major work of this release was ongoing.

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:

@​abrisco @​adamcavendish @​ahlinc @​akuhnregnier @​alex @​attack68 @​birkenfeld @​Brogolem35 @​bschoenmaeckers @​ChayimFriedman2 @​Cheukting @​csernazs @​davidhewitt @​deedy5 @​dependabot[bot] @​digitalsentinel @​exg @​FlickerSoul @​gi0baro @​glevco @​Icxolu @​jakelishman @​jeff-k @​jonaspleyer @​JRRudy1 @​KLMatlock @​konstin @​LilyFoote @​MatthijsKok @​Mottl

... (truncated)

Changelog

Sourced from pyo3-build-config's changelog.

[0.23.1] - 2024-11-16

Re-release of 0.23.0 with fixes to docs.rs build.

[0.23.0] - 2024-11-15

Packaging

  • Drop support for PyPy 3.7 and 3.8. #4582
  • Extend range of supported versions of hashbrown optional dependency to include version 0.15. #4604
  • Bump minimum version of eyre optional dependency to 0.6.8. #4617
  • Bump minimum version of hashbrown optional dependency to 0.14.5. #4617
  • Bump minimum version of indexmap optional dependency to 2.5.0. #4617
  • Bump minimum version of num-complex optional dependency to 0.4.6. #4617
  • Bump minimum version of chrono-tz optional dependency to 0.10. #4617
  • Support free-threaded Python 3.13t. #4588

Added

  • Add IntoPyObject (fallible) conversion trait to convert from Rust to Python values. #4060
  • Add #[pyclass(str="<format string>")] option to generate __str__ based on a Display implementation or format string. #4233
  • Implement PartialEq for Bound<'py, PyInt> with u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128 and isize. #4317
  • Implement PartialEq<f64> and PartialEq<f32> for Bound<'py, PyFloat>. #4348
  • Add as_super and into_super methods for Bound<T: PyClass>. #4351
  • Add FFI definitions PyCFunctionFast and PyCFunctionFastWithKeywords #4415
  • Add FFI definitions for PyMutex on Python 3.13 and newer. #4421
  • Add PyDict::locked_for_each to iterate efficiently on freethreaded Python. #4439
  • Add FFI definitions PyObject_GetOptionalAttr, PyObject_GetOptionalAttrString, PyObject_HasAttrWithError, PyObject_HasAttrStringWithError, Py_CONSTANT_* constants, Py_GetConstant, Py_GetConstantBorrowed, and PyType_GetModuleByDef on Python 3.13 and newer. #4447
  • Add FFI definitions for the Python critical section API available on Python 3.13 and newer. #4477
  • Add derive macro for IntoPyObject. #4495
  • Add Borrowed::as_ptr. #4520
  • Add FFI definition for PyImport_AddModuleRef. #4529
  • Add PyAnyMethods::try_iter. #4553
  • Add pyo3::sync::with_critical_section, a wrapper around the Python Critical Section API added in Python 3.13. #4587
  • Add #[pymodule(gil_used = false)] option to declare that a module supports the free-threaded build. #4588
  • Add PyModule::gil_used method to declare that a module supports the free-threaded build. #4588
  • Add FFI definition PyDateTime_CAPSULE_NAME. #4634
  • Add PyMappingProxy type to represent the mappingproxy Python class. #4644
  • Add FFI definitions PyList_Extend and PyList_Clear. #4667
  • Add derive macro for IntoPyObjectRef. #4674
  • Add pyo3::sync::OnceExt and pyo3::sync::OnceLockExt traits. #4676

Changed

  • Prefer IntoPyObject over IntoPy<Py<PyAny>>> for #[pyfunction] and #[pymethods] return types. #4060
  • Report multiple errors from #[pyclass] and #[pyo3(..)] attributes. #4243
  • Nested declarative #[pymodule] are automatically treated as submodules (no PyInit_ entrypoint is created). #4308
  • Deprecate PyAnyMethods::is_ellipsis (Py::is_ellipsis was deprecated in PyO3 0.20). #4322
  • Deprecate PyLong in favor of PyInt. #4347
  • Rename IntoPyDict::into_py_dict_bound to IntoPyDict::into_py_dict. #4388

... (truncated)

Commits

Updates pyo3-ffi from 0.22.6 to 0.23.1

Release notes

Sourced from pyo3-ffi's releases.

PyO3 0.23.1

This is a re-release of PyO3 0.23.0 with corrections to fix docs.rs builds.

Thanks @​yotamofek for the reports & fixes!

PyO3 0.23.0

This release is a significant iteration to both PyO3's internals and API with two major enhancements:

  • Support for Python 3.13t, also known as "free-threaded Python".
  • A new trait IntoPyObject, which unifies the existing to-Python conversion traits IntoPy and ToPyObject while also allowing new optimizations and proper error handling. The new trait also has a #[derive(IntoPyObject)] macro.

While both of these new features have undergone extensive design, it will be no surprise to find teething issues. All feedback is encouraged so that we can follow up with iterative improvements for these new features in future releases.

On top of the major additions, the removal of the "GIL Refs" API deprecated in PyO3 0.21 is now complete. A number of PyO3 APIs have had new simpler names introduced now that the PyO3 API is no longer in a migration phase (for example PyTuple::new_bound is now simplified to PyTuple::new).

Beyond that, PyO3 0.23 contains nearly 5 months of incremental improvements, bug fixes and smaller features that have been implemented while the major work of this release was ongoing.

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:

@​abrisco @​adamcavendish @​ahlinc @​akuhnregnier @​alex @​attack68 @​birkenfeld @​Brogolem35 @​bschoenmaeckers @​ChayimFriedman2 @​Cheukting @​csernazs @​davidhewitt @​deedy5 @​dependabot[bot] @​digitalsentinel @​exg @​FlickerSoul @​gi0baro @​glevco @​Icxolu @​jakelishman @​jeff-k @​jonaspleyer @​JRRudy1 @​KLMatlock @​konstin @​LilyFoote @​MatthijsKok @​Mottl

... (truncated)

Changelog

Sourced from pyo3-ffi's changelog.

[0.23.1] - 2024-11-16

Re-release of 0.23.0 with fixes to docs.rs build.

[0.23.0] - 2024-11-15

Packaging

  • Drop support for PyPy 3.7 and 3.8. #4582
  • Extend range of supported versions of hashbrown optional dependency to include version 0.15. #4604
  • Bump minimum version of eyre optional dependency to 0.6.8. #4617
  • Bump minimum version of hashbrown optional dependency to 0.14.5. #4617
  • Bump minimum version of indexmap optional dependency to 2.5.0. #4617
  • Bump minimum version of num-complex optional dependency to 0.4.6. #4617
  • Bump minimum version of chrono-tz optional dependency to 0.10. #4617
  • Support free-threaded Python 3.13t. #4588

Added

  • Add IntoPyObject (fallible) conversion trait to convert from Rust to Python values. #4060
  • Add #[pyclass(str="<format string>")] option to generate __str__ based on a Display implementation or format string. #4233
  • Implement PartialEq for Bound<'py, PyInt> with u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128 and isize. #4317
  • Implement PartialEq<f64> and PartialEq<f32> for Bound<'py, PyFloat>. #4348
  • Add as_super and into_super methods for Bound<T: PyClass>. #4351
  • Add FFI definitions PyCFunctionFast and PyCFunctionFastWithKeywords #4415
  • Add FFI definitions for PyMutex on Python 3.13 and newer. #4421
  • Add PyDict::locked_for_each to iterate efficiently on freethreaded Python. #4439
  • Add FFI definitions PyObject_GetOptionalAttr, PyObject_GetOptionalAttrString, PyObject_HasAttrWithError, PyObject_HasAttrStringWithError, Py_CONSTANT_* constants, Py_GetConstant, Py_GetConstantBorrowed, and PyType_GetModuleByDef on Python 3.13 and newer. #4447
  • Add FFI definitions for the Python critical section API available on Python 3.13 and newer. #4477
  • Add derive macro for IntoPyObject. #4495
  • Add Borrowed::as_ptr. #4520
  • Add FFI definition for PyImport_AddModuleRef. #4529
  • Add PyAnyMethods::try_iter. #4553
  • Add pyo3::sync::with_critical_section, a wrapper around the Python Critical Section API added in Python 3.13. #4587
  • Add #[pymodule(gil_used = false)]Description has been truncated

Bumps the minor group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tree-sitter-rust](https://github.com/tree-sitter/tree-sitter-rust) | `0.23.1` | `0.23.2` |
| [pyo3](https://github.com/pyo3/pyo3) | `0.22.6` | `0.23.1` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.15` | `0.2.16` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.11` | `1.0.13` |
| [libc](https://github.com/rust-lang/libc) | `0.2.162` | `0.2.164` |
| [litemap](https://github.com/unicode-org/icu4x) | `0.7.3` | `0.7.4` |
| [portable-atomic](https://github.com/taiki-e/portable-atomic) | `1.9.0` | `1.10.0` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.89` | `1.0.92` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.40` | `0.38.41` |
| [schannel](https://github.com/steffengy/schannel-rs) | `0.1.26` | `0.1.27` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.132` | `1.0.133` |
| [syn](https://github.com/dtolnay/syn) | `2.0.87` | `2.0.89` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.13` | `1.0.14` |
| [url](https://github.com/servo/rust-url) | `2.5.3` | `2.5.4` |
| [yoke](https://github.com/unicode-org/icu4x) | `0.7.4` | `0.7.5` |
| [zerofrom](https://github.com/unicode-org/icu4x) | `0.1.4` | `0.1.5` |
| [zerofrom-derive](https://github.com/unicode-org/icu4x) | `0.1.4` | `0.1.5` |



Updates `tree-sitter-rust` from 0.23.1 to 0.23.2
- [Release notes](https://github.com/tree-sitter/tree-sitter-rust/releases)
- [Commits](tree-sitter/tree-sitter-rust@v0.23.1...v0.23.2)

Updates `pyo3` from 0.22.6 to 0.23.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.22.6...v0.23.1)

Updates `cpufeatures` from 0.2.15 to 0.2.16
- [Commits](RustCrypto/utils@cpufeatures-v0.2.15...cpufeatures-v0.2.16)

Updates `itoa` from 1.0.11 to 1.0.13
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.11...1.0.13)

Updates `libc` from 0.2.162 to 0.2.164
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/main/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.162...0.2.164)

Updates `litemap` from 0.7.3 to 0.7.4
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `portable-atomic` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/taiki-e/portable-atomic/releases)
- [Changelog](https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md)
- [Commits](taiki-e/portable-atomic@v1.9.0...v1.10.0)

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

Updates `pyo3-build-config` from 0.22.6 to 0.23.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.22.6...v0.23.1)

Updates `pyo3-ffi` from 0.22.6 to 0.23.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.22.6...v0.23.1)

Updates `pyo3-macros` from 0.22.6 to 0.23.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.22.6...v0.23.1)

Updates `pyo3-macros-backend` from 0.22.6 to 0.23.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.22.6...v0.23.1)

Updates `rustix` from 0.38.40 to 0.38.41
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.40...v0.38.41)

Updates `schannel` from 0.1.26 to 0.1.27
- [Release notes](https://github.com/steffengy/schannel-rs/releases)
- [Commits](steffengy/schannel-rs@v0.1.26...v0.1.27)

Updates `serde_json` from 1.0.132 to 1.0.133
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.132...v1.0.133)

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

Updates `unicode-ident` from 1.0.13 to 1.0.14
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.13...1.0.14)

Updates `url` from 2.5.3 to 2.5.4
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.3...v2.5.4)

Updates `yoke` from 0.7.4 to 0.7.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `yoke-derive` from 0.7.4 to 0.7.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `zerofrom` from 0.1.4 to 0.1.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/[email protected])

Updates `zerofrom-derive` from 0.1.4 to 0.1.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/[email protected])

---
updated-dependencies:
- dependency-name: tree-sitter-rust
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: pyo3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: itoa
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: litemap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: portable-atomic
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: pyo3-build-config
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pyo3-ffi
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pyo3-macros
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pyo3-macros-backend
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: schannel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde_json
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: url
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: yoke
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: yoke-derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: zerofrom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: zerofrom-derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 25, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 26, 2024

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

@dependabot dependabot bot closed this Nov 26, 2024
@dependabot dependabot bot deleted the dependabot/cargo/minor-d11d76e5c3 branch November 26, 2024 10:48
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