Skip to content

Commit

Permalink
tracing: prepare to release v0.1.40
Browse files Browse the repository at this point in the history
# 0.1.40

This release fixes a potential stack use-after-free in the
`Instrument::into_inner` method. Only uses of this method are affected
by this bug.

### Fixed

- Use `mem::ManuallyDrop` instead of `mem::forget` in
  `Instrument::into_inner` (tokio-rs#2765)

[tokio-rs#2765]: tokio-rs#2765

Thanks to @cramertj and @Manishearth for finding and fixing this issue!
  • Loading branch information
hawkw authored and kaffarell committed May 22, 2024
1 parent 4003892 commit 0179d40
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tracing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 0.1.40

This release fixes a potential stack use-after-free in the
`Instrument::into_inner` method. Only uses of this method are affected by this
bug.

### Fixed

- Use `mem::ManuallyDrop` instead of `mem::forget` in `Instrument::into_inner`
([#2765])

[#2765]: https://github.com/tokio-rs/tracing/pull/2765

Thanks to @cramertj and @manishearth for finding and fixing this issue!

# 0.1.39 (October 12, 2023)

This release adds several additional features to the `tracing` macros. In
Expand Down

0 comments on commit 0179d40

Please sign in to comment.