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

Update Rust crate backtrace to v0.3.74 #18039

Merged
merged 1 commit into from
Sep 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 18, 2024

This PR contains the following updates:

Package Type Update Change
backtrace dependencies patch 0.3.73 -> 0.3.74
backtrace dev-dependencies patch 0.3.73 -> 0.3.74

Release Notes

rust-lang/backtrace-rs (backtrace)

v0.3.74

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/backtrace-rs@0.3.73...0.3.74


Configuration

📅 Schedule: Branch creation - "after 3pm on Wednesday" in timezone America/New_York, 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 these updates again.


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

Release Notes:

  • N/A

@cla-bot cla-bot bot added the cla-signed The user has signed the Contributor License Agreement label Sep 18, 2024
@ConradIrwin ConradIrwin merged commit 6670c9e into main Sep 19, 2024
9 checks passed
@ConradIrwin ConradIrwin deleted the renovate/backtrace-0.x-lockfile branch September 19, 2024 16:15
noaccOS pushed a commit to noaccOS/zed that referenced this pull request Oct 19, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [backtrace](https://github.com/rust-lang/backtrace-rs) |
dependencies | patch | `0.3.73` -> `0.3.74` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) |
dev-dependencies | patch | `0.3.73` -> `0.3.74` |

---

### Release Notes

<details>
<summary>rust-lang/backtrace-rs (backtrace)</summary>

###
[`v0.3.74`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.74)

[Compare
Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74)

#### What's Changed

- QNX Neutrino 7.0 support, thanks to
[@&zed-industries#8203;nyurik](https://github.com/nyurik) in
[https://github.com/rust-lang/backtrace-rs/pull/648](https://github.com/rust-lang/backtrace-rs/pull/648)
- Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to
[@&zed-industries#8203;fengys](https://github.com/fengys) in
[https://github.com/rust-lang/backtrace-rs/pull/656](https://github.com/rust-lang/backtrace-rs/pull/656)
- Made PrintFmt, which was using the `Enum::__NonExhaustiveVariant`
pattern, use `#[non_exhaustive]` for real. Don't @&zed-industries#8203; me if you were
matching on that! Thanks to
[@&zed-industries#8203;nyurik](https://github.com/nyurik) in
[https://github.com/rust-lang/backtrace-rs/pull/651](https://github.com/rust-lang/backtrace-rs/pull/651)
- Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to
[@&zed-industries#8203;CraftSpider](https://github.com/CraftSpider) and
[@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in
- Don't cast HANDLE to usize and back by
[@&zed-industries#8203;CraftSpider](https://github.com/CraftSpider) in
[https://github.com/rust-lang/backtrace-rs/pull/635](https://github.com/rust-lang/backtrace-rs/pull/635)
- Switch from `winapi` to `windows-sys` by
[@&zed-industries#8203;CraftSpider](https://github.com/CraftSpider) in
[https://github.com/rust-lang/backtrace-rs/pull/641](https://github.com/rust-lang/backtrace-rs/pull/641)
- Update windows bindings and use windows-targets by
[@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in
[https://github.com/rust-lang/backtrace-rs/pull/653](https://github.com/rust-lang/backtrace-rs/pull/653)
- A bunch of updated dependencies. Thanks
[@&zed-industries#8203;djc](https://github.com/djc) and
[@&zed-industries#8203;khuey](https://github.com/khuey)!
- Sorry if you were testing this code in miri! It started yelling about
sussy casts. A lot. We did a bunch of internal cleanups that should make
it quiet down, thanks to
[@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in
[https://github.com/rust-lang/backtrace-rs/pull/641](https://github.com/rust-lang/backtrace-rs/pull/641)
- Uhhh we had to tweak `dl_iterate_phdr` in
[https://github.com/rust-lang/backtrace-rs/pull/660](https://github.com/rust-lang/backtrace-rs/pull/660)
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to [@&zed-industries#8203;saethlin](https://github.com/saethlin) for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...

#### New Contributors

- [@&zed-industries#8203;CraftSpider](https://github.com/CraftSpider) made
their first contribution in
[https://github.com/rust-lang/backtrace-rs/pull/635](https://github.com/rust-lang/backtrace-rs/pull/635)
- [@&zed-industries#8203;fengys1996](https://github.com/fengys1996) made
their first contribution in
[https://github.com/rust-lang/backtrace-rs/pull/656](https://github.com/rust-lang/backtrace-rs/pull/656)
- [@&zed-industries#8203;djc](https://github.com/djc) made their first
contribution in
[https://github.com/rust-lang/backtrace-rs/pull/657](https://github.com/rust-lang/backtrace-rs/pull/657)

**Full Changelog**:
rust-lang/backtrace-rs@0.3.73...0.3.74

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 3pm on Wednesday" in timezone
America/New_York, 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 these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

Release Notes:

- N/A

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla-signed The user has signed the Contributor License Agreement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant