deps(deps): bump the dev-deps group across 1 directory with 4 updates#42
Closed
dependabot[bot] wants to merge 1 commit into
Closed
deps(deps): bump the dev-deps group across 1 directory with 4 updates#42dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps the dev-deps group with 4 updates in the / directory: [proptest](https://github.com/proptest-rs/proptest), [insta](https://github.com/mitsuhiko/insta), [tempfile](https://github.com/Stebalien/tempfile) and [assert_cmd](https://github.com/assert-rs/assert_cmd). Updates `proptest` from 1.10.0 to 1.11.0 - [Release notes](https://github.com/proptest-rs/proptest/releases) - [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md) - [Commits](proptest-rs/proptest@v1.10.0...v1.11.0) Updates `insta` from 1.46.3 to 1.47.1 - [Release notes](https://github.com/mitsuhiko/insta/releases) - [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md) - [Commits](mitsuhiko/insta@1.46.3...1.47.1) Updates `tempfile` from 3.26.0 to 3.27.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](Stebalien/tempfile@v3.26.0...v3.27.0) Updates `assert_cmd` from 2.1.2 to 2.2.0 - [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md) - [Commits](assert-rs/assert_cmd@v2.1.2...v2.2.0) --- updated-dependencies: - dependency-name: proptest dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-deps - dependency-name: insta dependency-version: 1.47.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-deps - dependency-name: tempfile dependency-version: 3.27.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-deps - dependency-name: assert_cmd dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-deps ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
Contributor
Author
|
Looks like these dependencies are no longer updatable, so this is no longer needed. |
4 tasks
EffortlessSteven
added a commit
that referenced
this pull request
May 12, 2026
…) (#237) Stabilises `concurrent_version_exists_checks` (and any other test using `with_multi_server`) on slow macOS CI runners. Hit three times in a single rollout session (#233, #234, #236) as `version_exists: registry request failed -> operation timed out` against the local tiny_http mock. Root cause: the helper's accept loop blocked on `handler(req)` until each response was fully written before returning to `recv_timeout`. With 5 concurrent reqwest clients hitting the same loopback socket, the remaining clients sat in the kernel's TCP backlog long enough to exceed reqwest's default OS-level connect timeout. Windows and Linux runners process the queue fast enough to mask the bug; macOS does not. Fix: spawn one worker thread per accepted request and let the accept loop return to `recv_timeout` immediately. The accept loop still serialises on `recv_timeout` (tiny_http requires that), but handlers run in parallel, so the kernel's listen queue drains as fast as connections arrive. Other changes: - `recv_timeout` bumped from 30s to 60s for additional headroom. - Trait bound on the handler closure goes from `Fn + Send + 'static` to `Fn + Send + Sync + 'static` (required to wrap the handler in `Arc` for clone-into-workers). All existing call sites use closures that already satisfy `Sync`. - The accept thread joins worker threads before returning so any panic in a handler surfaces in CI. cargo test -p shipper-registry --lib passes 258/258 locally (Windows). The fix targets a macOS-specific timing bug, so CI is the real verification.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the dev-deps group with 4 updates in the / directory: proptest, insta, tempfile and assert_cmd.
Updates
proptestfrom 1.10.0 to 1.11.0Commits
7f1367fMerge pull request #641 from proptest-rs/release-1.11a63bf7eproptest-state-machine v0.8.0d86e9ffadd changelog for #6407940313proptest v1.11.03ec998cfix #638 changelog8ceb00cMerge pull request #639 from lukoktonos/bits1289c8df1aMerge pull request #638 from folkertdev/f16-supportca9d8e1changelog #638a39869fimply f16 feat by unstable85c5ca0Merge pull request #637 from folkertdev/min-max-assoc-constantsUpdates
instafrom 1.46.3 to 1.47.1Release notes
Sourced from insta's releases.
... (truncated)
Changelog
Sourced from insta's changelog.
Commits
fdbfc15Revert sort_maps sequence sorting, release 1.47.1 (#891)46b6f2aRelease 1.47.0 (#889)aa12933Upgradeconsoleto 0.16, bump MSRV to 1.66 (#885)98c084cupgrade toml-edit to 0.25 (#882)4e889b0the test_glob test depends on both glob and json (#883)4d738e5Bump@tootallnate/onceand@vscode/test-electronin /vscode-insta (#881)09f2b8bImprove TOML serialization error message for unsupported types (#880)1373bbcAdd Comparator trait (#872)ebe5a6eSort sequences insort_mapsto fix non-deterministicHashSetsnapshots (#...eaf15baRemove unnecessarySend + Syncbounds fromRedaction(#874)Updates
tempfilefrom 3.26.0 to 3.27.0Changelog
Sourced from tempfile's changelog.
Commits
5c8fa12chore: release 3.27.0e34e574test: disable uds conflict test on redox772c795test: add CWD guards2632fb9fix: resolve relative paths when constructingTempPathUpdates
assert_cmdfrom 2.1.2 to 2.2.0Changelog
Sourced from assert_cmd's changelog.
Commits
d935ff8chore: Release assert_cmd version 2.2.01631cf4docs: Changelog3137b55Merge pull request #283 from epage/panicebd79f1fix(cargo): Panic, rather than return bad path79c9b0dchore: Release assert_cmd version 2.1.390cb0dddocs: Update changelog7af59b9Merge pull request #282 from epage/deprecated80fe94cdocs(cargo): Specify support for different versions0246aa6test: Close markdown quotescb3b590Revert "fix: Deprecate cargo_bin (runtime version)"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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions