-
-
Notifications
You must be signed in to change notification settings - Fork 3
build(deps): bump tokio from 1.35.1 to 1.38.2 #15
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
base: main
Are you sure you want to change the base?
Conversation
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.35.1 to 1.38.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.35.1...tokio-1.38.2) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.38.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Reviewer's Guide by SourceryThis pull request updates the Updated class diagram for tokio::sync::broadcast::ReceiverclassDiagram
class Receiver {
- rx: Arc<Mutex<Rx<T>>>
- id: usize
- alive: bool
+ recv() -> Result<T, RecvError>
+ try_recv() -> Result<T, TryRecvError>
+ subscribe() -> Receiver<T>
}
note for Receiver "The broadcast channel receiver. Updated to fix a soundness issue in the broadcast channel."
Updated class diagram for tokio::time::wheelclassDiagram
class Wheel {
- shards: Vec<Mutex<Shard>>
- tick: AtomicUsize
+ new(config: &Config) -> Self
+ add(task: Task)
+ remove(task: &Task)
+ tick()
}
class Shard {
- slots: Vec<Slot>
- mask: usize
- next_index: usize
+ new(capacity: usize) -> Self
+ insert(task: Task)
+ remove(task: &Task) -> bool
+ for_each(f: impl FnMut(&Task))
}
class Slot {
- tasks: Vec<Task>
}
class Task {
- deadline: Instant
- callback: Callback
}
note for Wheel "The time wheel implementation. Updated to fix a bug that caused timers not to fire when they should."
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!
Bumps tokio from 1.35.1 to 1.38.2.
Release notes
Sourced from tokio's releases.
... (truncated)
Commits
aa303bc
chore: prepare Tokio v1.38.2 release7b6ccb5
chore: backport CI fixes4b174ce
sync: fix cloning value when receiving from broadcast channel9681ce2
chore: make 1.38 an LTS (#6706)14b9f71
chore: release Tokio v1.38.1 (#6688)24344df
time: fix race condition leading to lost timers (#6683)14c17fc
chore: prepare Tokio v1.38.0 (#6601)65cbf73
chore: prepare tokio-macros v2.3.0 (#6600)dbf93c7
sync: fix incorrect is_empty on mpsc block boundaries (#6603)873cb8a
runtime: move task out of thelifo_slot
inblock_in_place
(#6596)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.
Summary by Sourcery
Build: