Skip to content

chore(deps): bump tokio from 1.51.0 to 1.52.1 in /bots/finishingbot - #66

Merged
hyperpolymath merged 1 commit into
mainfrom
dependabot/cargo/bots/finishingbot/tokio-1.52.1
Apr 26, 2026
Merged

chore(deps): bump tokio from 1.51.0 to 1.52.1 in /bots/finishingbot#66
hyperpolymath merged 1 commit into
mainfrom
dependabot/cargo/bots/finishingbot/tokio-1.52.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubApr 26, 2026

Copy link
Copy Markdown
Contributor

⚠️Dependabot is rebasing this PR⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps tokio from 1.51.0 to 1.52.1.

Release notes

Sourced from tokio's releases.

Tokio v1.52.1

1.52.1 (April 16th, 2026)

Fixed

  • runtime: revert #7757 to fix [a regression]#8056 that causes spawn_blocking to hang (#8057)

#7757: tokio-rs/tokio#7757#8056: tokio-rs/tokio#8056#8057: tokio-rs/tokio#8057

Tokio v1.52.0

1.52.0 (April 14th, 2026)

Added

  • io: AioSource::register_borrowed for I/O safety support (#7992)
  • net: add try_io function to unix::pipe sender and receiver types (#8030)

Added (unstable)

  • runtime: Builder::enable_eager_driver_handoff setting enable eager hand off of the I/O and time drivers before polling tasks (#8010)
  • taskdump: add trace_with() for customized task dumps (#8025)
  • taskdump: allow impl FnMut() in trace_with instead of just fn() (#8040)
  • fs: support io_uring in AsyncRead for File (#7907)

Changed

  • runtime: improve spawn_blocking scalability with sharded queue (#7757)
  • runtime: use compare_exchange_weak() in worker queue (#8028)

Fixed

  • runtime: overflow second half of tasks when local queue is filled instead of first half (#8029)

Documented

  • docs: fix typo in oneshot::Sender::send docs (#8026)
  • docs: hide #[tokio::main] attribute in the docs of sync::watch (#8035)
  • net: add docs on ConnectionRefused errors with UDP sockets (#7870)

#7757: tokio-rs/tokio#7757#7870: tokio-rs/tokio#7870#7907: tokio-rs/tokio#7907#7992: tokio-rs/tokio#7992#8010: tokio-rs/tokio#8010#8025: tokio-rs/tokio#8025#8026: tokio-rs/tokio#8026#8028: tokio-rs/tokio#8028#8029: tokio-rs/tokio#8029

... (truncated)

Commits

Dependabot compatibility score

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 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)

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.51.0 to 1.52.1.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.51.0...tokio-1.52.1)
---
updated-dependencies:
- dependency-name: tokio
dependency-version: 1.52.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Apr 26, 2026
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Apr 26, 2026
@hyperpolymath
hyperpolymath merged commit 13cf500 into mainApr 26, 2026
17 of 22 checks passed
@hyperpolymath
hyperpolymath deleted the dependabot/cargo/bots/finishingbot/tokio-1.52.1 branch April 26, 2026 11:47
Repository owner deleted a comment from chatgpt-codex-connectorBotMay 13, 2026
hyperpolymath added a commit that referenced this pull request Jun 2, 2026
… (#249)
## Summary
Actuation-half of the three-system propagation architecture (#248):
```
hypatia (detection) → gitbot-fleet (THIS) → .git-private-farm (propagation)
```
- \`scripts/propagate-sha-bump.sh\` consumes a hypatia finding with rule
\`reusable_workflow_sha_bump_needs_propagation\`, pre-filters the
upstream PR title (HARD), enumerates consumers via \`gh search code\`,
drops forks, and fires a \`propagate-sha-bump\` \`repository_dispatch\`
event into \`.git-private-farm\`.
- \`scripts/fix-script-registry.json\` wires the recipe → script;
\`dispatch-runner.sh\` routes via the existing \`by_recipe\` map.
- \`tests/propagate-sha-bump-smoke.sh\` exercises the refusal + DRY_RUN
paths (10/10 passing locally).
## Safety properties
Canonical title-keyword gate lives HERE (per
\`feedback_pr_sweep_title_keyword_exclusion\` +
\`feedback_no_automated_licence_edits\`). The receiver workflow
re-checks belt-and-braces.
- \`pr_title\` matching
\`license|SPDX|PMPL|MPL|AGPL|GPL|Apache|copyright|attribution|relicens|secret|vulnerab|CVE-\`
→ exit 0 (REFUSED, routed to manual review — not an error path).
- \`title_suffix\` synthesised from **safe** metadata (workflow slug +
short SHA), NOT from \`pr_title\`. So even if a forbidden keyword
somehow slipped past the pre-filter, the dispatched PR title would not
carry it.
- \`old_sha == new_sha\` rejected.
- \`source_repo\` constrained to \`hyperpolymath/*\`.
- \`source_workflow\` constrained to \`.github/workflows/*.{yml,yaml}\`
or \`action.{yml,yaml}\`.
- Forks dropped via \`gh repo view --json isFork\`.
- \`DRY_RUN=true\` prints the payload instead of dispatching.
## Coupling with the other two PRs
- **Depends on**: hyperpolymath/hypatia#419 — the finding shape this
script consumes.
- **Triggers**: hyperpolymath/.git-private-farm#68 — the receiver
workflow + scripts (#66).
Each can land independently; once all three land, the chain end-to-ends.
## Test plan
- [x] Wrong rule name → exit 1
- [x] Malformed SHA → exit 1
- [x] \`old_sha == new_sha\` → exit 1
- [x] Non-estate \`source_repo\` → exit 1
- [x] License keyword in \`pr_title\` → exit 0 (REFUSED message printed)
- [x] DRY_RUN with valid finding → exit 0, payload composed
- [x] \`branch_name\` slug correct
(\`ci/bump-<workflow-slug>-<short-sha>\`)
- [x] \`title_suffix\` synthesised from safe metadata only
- [ ] End-to-end (post-merge): hypatia emits → dispatch-runner picks up
→ this script dispatches → farm receiver runs → consumer PRs land
- [ ] Smoke test as a CI job (follow-up — leaving as local script for
first landing)
## Related
- #248 — this PR closes
- hyperpolymath/hypatia#419 — detection rule (PR open)
- hyperpolymath/.git-private-farm#66 — propagation scripts (PR open)
- hyperpolymath/.git-private-farm#68 — receiver workflow (PR open)
Closes#248
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: hyperpolymath <hyperpolymath@users.noreply.github.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@hyperpolymath