Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore(deps): Update Rust Stable to v1.85 #18

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 21, 2024

This PR contains the following updates:

Package Update Change
STABLE minor 1.76 -> 1.85

Release Notes

rust-lang/rust (STABLE)

v1.85

Compare Source

==========================

Language

Compiler

Platform Support

Refer to Rust's [platform support page][platform-support-doc]
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

These APIs are now stable in const contexts:

Cargo

Rustdoc

Compatibility Notes

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

v1.84

Compare Source

==========================

v1.83

Compare Source

==========================

Language

Compiler

Refer to Rust's [platform support page][platform-support-doc]
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

These APIs are now stable in const contexts:

Cargo

Rustdoc

Compatibility Notes

v1.82

Compare Source

==========================

Language

Compiler

Libraries

Stabilized APIs

These APIs are now stable in const contexts:

Cargo

Compatibility Notes

  • We now disallow setting some built-in cfgs via the command-line with the newly added explicit_builtin_cfgs_in_flags lint in order to prevent incoherent state, eg. windows cfg active but target is Linux based. The appropriate rustc flag should be used instead.
  • The standard library has a new implementation of binary_search which is significantly improves performance (#​128254). However when a sorted slice has multiple values which compare equal, the new implementation may select a different value among the equal ones than the old implementation.
  • illumos/Solaris now sets MSG_NOSIGNAL when writing to sockets. This avoids killing the process with SIGPIPE when writing to a closed socket, which matches the existing behavior on other UNIX targets.
  • Removes a problematic hack that always passed the --whole-archive linker flag for tests, which may cause linker errors for code accidentally relying on it.
  • The WebAssembly target features multivalue and reference-types are now
    both enabled by default. These two features both have subtle changes implied
    for generated WebAssembly binaries. For the multivalue feature, WebAssembly
    target support has changed when upgrading to LLVM 19. Support for generating
    functions with multiple returns no longer works and
    -Ctarget-feature=+multivalue has a different meaning than it did in LLVM 18
    and prior. There is no longer any supported means to generate a module that has
    a function with multiple returns in WebAssembly from Rust source code. For the
    reference-types feature the encoding of immediates in the call_indirect, a
    commonly used instruction by the WebAssembly backend, has changed. Validators
    and parsers which don't understand the reference-types proposal will no
    longer accept modules produced by LLVM due to this change in encoding of
    immediates. Additionally these features being enabled are encoded in the
    target_features custom section and may affect downstream tooling such as
    wasm-opt consuming the module. Generating a WebAssembly module that disables
    default features requires -Zbuild-std support from Cargo and more information
    can be found at
    rust-lang/rust#128511.
  • Rust now raises unsafety errors for union patterns in parameter-position

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

v1.81

Compare Source

==========================

Language

Compiler

Libraries

Stabilized APIs

These APIs are now stable in const contexts:

Cargo

Compatibility Notes

  • Usage of the wasm32-wasi target will now issue a compiler warning and request users switch to the wasm32-wasip1 target instead. Both targets are the same, wasm32-wasi is only being renamed, and this change to the WASI target is being done to enable removing wasm32-wasi in January 2025.

  • We have renamed std::panic::PanicInfo to std::panic::PanicHookInfo. The old name will continue to work as an alias, but will result in a deprecation warning starting in Rust 1.82.0.

    core::panic::PanicInfo will remain unchanged, however, as this is now a different type.

    The reason is that these types have different roles: std::panic::PanicHookInfo is the argument to the panic hook in std context (where panics can have an arbitrary payload), while core::panic::PanicInfo is the argument to the #[panic_handler] in no_std context (where panics always carry a formatted message). Separating these types allows us to add more useful methods to these types, such as std::panic::PanicHookInfo::payload_as_str() and core::panic::PanicInfo::message().

  • The new sort implementations may panic if a type's implementation of Ord (or the given comparison function) does not implement a total order as the trait requires. Ord's supertraits (PartialOrd, Eq, and PartialEq) must also be consistent. The previous implementations would not "notice" any problem, but the new implementations have a good chance of detecting inconsistencies, throwing a panic rather than returning knowingly unsorted data.

  • In very rare cases, a change in the internal evaluation order of the trait
    solver may result in new fatal overflow errors.

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.


Configuration

📅 Schedule: Branch creation - "* * * * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/stable-1.x branch from c6d88df to 8caca44 Compare March 28, 2024 14:57
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 8caca44 to 1cd10a2 Compare April 17, 2024 02:47
@renovate renovate bot force-pushed the renovate/stable-1.x branch 5 times, most recently from 84e39c4 to b44e7ec Compare May 2, 2024 13:12
@renovate renovate bot changed the title chore(deps): Update Rust Stable to v1.77 chore(deps): Update Rust Stable to v1.78 May 2, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch 3 times, most recently from ecf3930 to 28897e9 Compare June 3, 2024 15:29
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 28897e9 to 89227d6 Compare June 4, 2024 20:34
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 89227d6 to f59f1f6 Compare June 13, 2024 16:12
@renovate renovate bot changed the title chore(deps): Update Rust Stable to v1.78 chore(deps): Update Rust Stable to v1.79 Jun 13, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch from f59f1f6 to 6d4612c Compare June 21, 2024 18:21
@renovate renovate bot force-pushed the renovate/stable-1.x branch 2 times, most recently from c450586 to 9c58349 Compare July 9, 2024 16:10
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 9c58349 to 56716ed Compare July 25, 2024 20:48
@renovate renovate bot changed the title chore(deps): Update Rust Stable to v1.79 chore(deps): Update Rust Stable to v1.80 Jul 25, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 56716ed to 54d5858 Compare July 26, 2024 20:45
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 54d5858 to b78b094 Compare August 6, 2024 08:33
@renovate renovate bot changed the title chore(deps): Update Rust Stable to v1.80 chore(deps): Update dependency STABLE to v1.80.0 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch from b78b094 to cdf480d Compare September 5, 2024 04:43
@renovate renovate bot changed the title chore(deps): Update dependency STABLE to v1.80.0 chore(deps): Update dependency STABLE to v1.80.1 Sep 5, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch from cdf480d to c841a4d Compare September 5, 2024 16:39
@renovate renovate bot changed the title chore(deps): Update dependency STABLE to v1.80.1 chore(deps): Update dependency STABLE to v1.81.0 Sep 5, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch from c841a4d to 349d1a8 Compare October 17, 2024 17:27
@renovate renovate bot changed the title chore(deps): Update dependency STABLE to v1.81.0 chore(deps): Update dependency STABLE to v1.82.0 Oct 17, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 349d1a8 to 539b5f5 Compare October 21, 2024 09:57
@renovate renovate bot changed the title chore(deps): Update dependency STABLE to v1.82.0 chore(deps): Update Rust Stable to v1.82 Oct 21, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 539b5f5 to 4679cea Compare November 1, 2024 23:06
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 4679cea to 18088c3 Compare November 18, 2024 19:49
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 18088c3 to 246e25e Compare November 28, 2024 17:01
@renovate renovate bot changed the title chore(deps): Update Rust Stable to v1.82 chore(deps): Update Rust Stable to v1.83 Nov 28, 2024
@renovate renovate bot force-pushed the renovate/stable-1.x branch 3 times, most recently from 665c504 to d23a285 Compare December 3, 2024 22:02
@renovate renovate bot force-pushed the renovate/stable-1.x branch 2 times, most recently from db498eb to d7b83a2 Compare December 18, 2024 17:04
@renovate renovate bot force-pushed the renovate/stable-1.x branch from d7b83a2 to 7479857 Compare January 9, 2025 18:35
@renovate renovate bot changed the title chore(deps): Update Rust Stable to v1.83 chore(deps): Update Rust Stable to v1.84 Jan 9, 2025
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 7479857 to 6e7b844 Compare January 24, 2025 21:26
@renovate renovate bot force-pushed the renovate/stable-1.x branch from 6e7b844 to 08cbf8b Compare February 20, 2025 19:05
@renovate renovate bot changed the title chore(deps): Update Rust Stable to v1.84 chore(deps): Update Rust Stable to v1.85 Feb 20, 2025
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants