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): update rust crate cc to 1.0.96 - autoclosed #28

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
cc build-dependencies patch 1.0 -> 1.0.96

Release Notes

rust-lang/cc-rs (cc)

v1.0.96

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.95...1.0.96

v1.0.95

Compare Source

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.94...1.0.95

v1.0.94

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.93...1.0.94

v1.0.93

Compare Source

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.92...1.0.93

v1.0.92

Compare Source

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.91...1.0.92

v1.0.91

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.90...1.0.91

v1.0.90

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.89...1.0.90

v1.0.89

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.88...1.0.89

v1.0.88

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.87...1.0.88

v1.0.87

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.86...1.0.87

v1.0.86

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.85...1.0.86

v1.0.85

Compare Source

[!IMPORTANT]

This release has been yanked, due to panicking in freeBSD debug build. A release without these issues will be made in the near future.

Sorry, and thanks.

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.84...1.0.85

v1.0.84

Compare Source

[!IMPORTANT]

This release has been yanked, due to the Apple deployment target changes causing unintentional widespread breakage for building C++ code on the target (for projects without an explicit deployment target set). A release without these issues will be made in the near future.

Sorry, and thanks.

Changes

This isn't a complete list, but I've tried to cover everything that is either significant, or could cause problems for people using cc in configurations not covered by our tests.

As always, please file bugs if you hit issues. cc is used in many more ways than we can possibly test (especially when cross-compiling or using tier-3 platforms).

Thanks.

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.83...1.0.84

v1.0.83

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.82...1.0.83

v1.0.82

Compare Source

This release corrects a deadlock and potential performance regression present since 1.0.80, and contains no other changes. See https://github.com/rust-lang/cc-rs/pull/849 for details.

v1.0.81

Compare Source

This release exists to fix a bug introduced in 1.0.80 where we would panic if non-UTF8 were written to stderr by the C compiler. See https://github.com/rust-lang/cc-rs/pull/842 and https://github.com/rust-lang/cc-rs/issues/841 for more info.

v1.0.80

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.79...1.0.80

v1.0.79

Compare Source

Version 1.0.79

Changelog

  • The riscv32imc-esp-espidf target is now supported (#​776)
  • Build::is_flag_supported now checks the exit status of the compiler in addition to stderr output, improving reliability (#​757)
  • When building for the aarch64-apple-ios-sim target -arch arm64 is now correctly passed as two arguments instead of one (#​759)
  • Improved control over ar and ranlib (#​763)
    • New functions to return the ar (Build::get_archiver) and ranlib (Build::get_ranlib) binaries used for this build have been added.
    • Several related environment variables involving the archiver and ranlib variant (ARFLAGS, RANLIBFLAGS, AR, and RANLIB) are now respected automatically if not overridden.
    • Some other changes too, see #​763 for details.
  • We will now correctly locate msbuild under VS2022 (#​773)

Additionally, a number of smaller changes which shouldn't impact users have been made (in particular #​769 and #​777); see the commit history for complete details.

Thanks to everybody who contributed to this release!

v1.0.78

Compare Source

Version 1.0.78

Changelog

  • Now, only .asm files are passed to masm on windows targets, bringing things back in line with how cc-rs<1.0.77 handled it (#​755).
  • Absolute paths in source are now mapped as relative in OUT_DIR (#​684)
  • Several improvements were made to CUDA support (#​712)
  • llvm-lib.exe is now used instead of lib.exe when clang-cl is used in an MSVC environment (#​758)

Thanks to everybody who contributed to this release!

v1.0.77

Compare Source

Version 1.0.77

Changelog

  • Added a new Build::asm_flag function, which allows providing flags that are only used when compiling assembly files (for example, if your C compiler rejects flags passed to the assembler when not used as an assembler). (#​752)
  • Ensure that the version of DWARF debuginfo we emit is consistent with what rustc uses on the given target. (#​694)

Thanks to everybody who contributed to this release!

v1.0.76

Compare Source

Version 1.0.76

Changelog

  • When compiling with clang-cl, we now only use -- to separate flags/options from input files when not using the assembler, which doesn't support that option. This is a fix for a regression introduced in 1.0.74 (by #​514) (present in 1.0.75 as well). (#​747)

This is essentially a bugfix release, so that's all!

v1.0.75

Compare Source

Version 1.0.75

Changelog

  • When Rust debuginfo is enabled, debuginfo is passed to MSVC assemblers (#​742)
  • When locating an ar executable, *-ar is now preferred to *-gcc-ar (#​741)
  • On MSVC 15+, the atlmfc directory is now correctly located (#​699)

Additionally, a number of smaller changes which shouldn't impact users have been made; see the commit history for complete details.

Thanks to everybody who contributed to this release!

v1.0.74

Compare Source

Version 1.0.74

Changelog

  • When compiling with clang-cl, we now use -- to separate flags/options from input files. (#​514)
  • We now fall back to RUSTC_LINKER's prefix (rather than erroring) if we fail to determine the prefix to use for the given target. (#​685)
  • A Build::link_lib_modifier function was added to allow control which library modifiers are used when linking with the generated library. (#​671)
  • When searching for an ar binary to use, we now try {target}-ar in addition to {target}-gcc-ar. If they're both present, {target}-ar will be preferred. (#​735, #​736)
  • We now emit cargo:rerun-if-env-changed messages for environment variables that influence the build. This is only done if cargo_metadata is enabled, and can be disabled by passing false to the new Build::emit_rerun_if_env_changed builder function. (#​701, #​738)
New Targets

The following targets are now supported:

  • The Apple WatchOS (and simulator) targets (*-watchos and *-watchos-sim). (#​662)
  • The LLVM-based MinGW targets (*-pc-windows-gnullvm). (#​734)
  • The Xous microkernel (riscv32imac-unknown-xous-elf). (#​686)

Additionally, a number of smaller changes which shouldn't impact users have been made; see the commit history for complete details.

Thanks to everybody who contributed to this release!

v1.0.73

Compare Source

v1.0.72

Compare Source

v1.0.71

Compare Source

v1.0.70

Compare Source

v1.0.69

Compare Source

v1.0.68

Compare Source

v1.0.67

Compare Source

v1.0.66

Compare Source

v1.0.65

Compare Source

v1.0.64

Compare Source

v1.0.63

Compare Source

v1.0.62

Compare Source

v1.0.61

Compare Source

v1.0.60

Compare Source

v1.0.59

Compare Source

v1.0.58

Compare Source

v1.0.57

Compare Source

v1.0.56

Compare Source

v1.0.55

Compare Source

v1.0.54

Compare Source

v1.0.53

Compare Source

v1.0.52

Compare Source

v1.0.51

Compare Source

v1.0.50

Compare Source

v1.0.49

Compare Source

v1.0.48

Compare Source

v1.0.47

Compare Source

v1.0.46

Compare Source

v1.0.45

Compare Source

v1.0.44

Compare Source

v1.0.43

Compare Source

v1.0.42

Compare Source

v1.0.41

Compare Source

v1.0.40

Compare Source

v1.0.39

Compare Source

v1.0.38

Compare Source

v1.0.37

Compare Source

v1.0.36

Compare Source

v1.0.35

Compare Source

v1.0.34

Compare Source

v1.0.33

Compare Source

v1.0.32

Compare Source

v1.0.31

Compare Source

v1.0.30

Compare Source

v1.0.29

Compare Source

v1.0.28

Compare Source

v1.0.27

Compare Source

v1.0.26

Compare Source

v1.0.25

Compare Source

v1.0.24

Compare Source

v1.0.23

Compare Source

v1.0.22

Compare Source

v1.0.21

Compare Source

v1.0.20

Compare Source

v1.0.19

Compare Source

v1.0.18

Compare Source

v1.0.17

Compare Source

v1.0.16

Compare Source

v1.0.15

Compare Source

v1.0.14

Compare Source

v1.0.13

Compare Source

v1.0.12

Compare Source

v1.0.11

Compare Source

v1.0.10

Compare Source

v1.0.9

Compare Source

v1.0.8

Compare Source

v1.0.7

Compare Source

v1.0.6

Compare Source

v1.0.5

Compare Source

v1.0.4

Compare Source

v1.0.3

Compare Source

v1.0.2

Compare Source

v1.0.1

Compare Source


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update rust crate cc to 1.0.96 chore(deps): update rust crate cc to 1.0.96 - autoclosed May 5, 2024
@renovate renovate bot closed this May 5, 2024
@renovate renovate bot deleted the renovate/cc-1.x branch May 5, 2024 11:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants