Sourced from tokio's releases.
Tokio v1.44.2
This release fixes a soundness issue in the broadcast channel. The channel accepts values that are
Send
but!Sync
. Previously, the channel calledclone()
on these values without synchronizing. This release fixes the channel by synchronizing calls to.clone()
(Thanks Austin Bonander for finding and reporting the issue).Fixed
- sync: synchronize
clone()
call in broadcast channel (#7232)
ec4b1d7
chore: forward port 1.43.xe3c3a56
Merge branch 'tokio-1.43.x' into forward-port-1.43.xa7b658c
chore: prepare Tokio v1.43.1 releasec1c8d10
Merge remote-tracking branch 'origin/tokio-1.38.x' into
forward-port-1.38.xaa303bc
chore: prepare Tokio v1.38.2 release7b6ccb5
chore: backport CI fixes4b174ce
sync: fix cloning value when receiving from broadcast channel