-
Notifications
You must be signed in to change notification settings - Fork 21
deps(rust): bump the minor-updates group across 1 directory with 8 updates #869
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
869ce2c
to
d51791f
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #869 +/- ##
==========================================
- Coverage 83.43% 79.39% -4.05%
==========================================
Files 83 104 +21
Lines 8689 10503 +1814
Branches 74 75 +1
==========================================
+ Hits 7250 8339 +1089
- Misses 1111 1702 +591
- Partials 328 462 +134 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
It seems like one of our dependencies now requires Cargo lock file version 4, which is not supported in the Rust version available in Noble, if I understand this error correctly:
|
As long as the bump is not mandatory (i.e. fixes something awful that affects us), we should try to match the toolchain version available in the targeted release. |
…dates Bumps the minor-updates group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [libc](https://github.com/rust-lang/libc) | `0.2.169` | `0.2.171` | | [tonic](https://github.com/hyperium/tonic) | `0.12.3` | `0.13.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.44.1` | | [log](https://github.com/rust-lang/log) | `0.4.25` | `0.4.27` | | [ctor](https://github.com/mmastrac/rust-ctor) | `0.3.6` | `0.4.1` | | [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.10` | `0.1.11` | | [tonic-build](https://github.com/hyperium/tonic) | `0.11.0` | `0.13.0` | | [cc](https://github.com/rust-lang/cc-rs) | `1.2.14` | `1.2.17` | Updates `libc` from 0.2.169 to 0.2.171 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.171/CHANGELOG.md) - [Commits](rust-lang/libc@0.2.169...0.2.171) Updates `tonic` from 0.12.3 to 0.13.0 - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](hyperium/tonic@v0.12.3...v0.13.0) Updates `tokio` from 1.43.0 to 1.44.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.43.0...tokio-1.44.1) Updates `log` from 0.4.25 to 0.4.27 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](rust-lang/log@0.4.25...0.4.27) Updates `ctor` from 0.3.6 to 0.4.1 - [Commits](https://github.com/mmastrac/rust-ctor/commits) Updates `hyper-util` from 0.1.10 to 0.1.11 - [Release notes](https://github.com/hyperium/hyper-util/releases) - [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md) - [Commits](hyperium/hyper-util@v0.1.10...v0.1.11) Updates `tonic-build` from 0.11.0 to 0.13.0 - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](hyperium/tonic@v0.11.0...v0.13.0) Updates `cc` from 1.2.14 to 1.2.17 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](rust-lang/cc-rs@cc-v1.2.14...cc-v1.2.17) --- updated-dependencies: - dependency-name: libc dependency-version: 0.2.171 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: tonic dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: tokio dependency-version: 1.44.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: log dependency-version: 0.4.27 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: ctor dependency-version: 0.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: hyper-util dependency-version: 0.1.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: tonic-build dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: cc dependency-version: 1.2.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates ... Signed-off-by: dependabot[bot] <[email protected]>
The compile method was renamed to compile_protos, see https://github.com/hyperium/tonic/blob/4b8d2c46aa57e40b1e80077f4f7b7d4679027bb5/tonic-build/src/prost.rs#L604
Fixes this build error: error[E0432]: unresolved import `tower::service_fn` Error: --> nss/src/client/mod.rs:6:5 | 6 | use tower::service_fn; | ^^^^^^^^^^^^^^^^^ no `service_fn` in the root | note: found an item that was configured out --> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.4.13/src/lib.rs:223:22 | 223 | pub use self::util::{service_fn, ServiceExt}; | ^^^^^^^^^^ note: the item is gated behind the `util` feature --> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.4.13/src/lib.rs:220:7
d51791f
to
ae335b0
Compare
Yeah we should then lock such dependency to the latest we can support in distro... |
Bumps the minor-updates group with 8 updates in the / directory:
0.2.169
0.2.171
0.12.3
0.13.0
1.43.0
1.44.1
0.4.25
0.4.27
0.3.6
0.4.1
0.1.10
0.1.11
0.11.0
0.13.0
1.2.14
1.2.17
Updates
libc
from 0.2.169 to 0.2.171Release notes
Sourced from libc's releases.
... (truncated)
Changelog
Sourced from libc's changelog.
... (truncated)
Commits
78b0f8a
chore: release v0.2.171b988ca5
Merge pull request #4318 from tgross35/backport-morel5746f8e
Add missing macos proc types and constants29a40e2
linux: add devmem structs85f6836
linux: add socket constants up to SO_DEVMEM_DONTNEEDff17476
linux_like: add F_SEAL_EXEC67352ee
ci: sparc64: fix 'cannot find libc' error10af5a6
ci: s390x: fix 'cannot find libc' errorc6ad434
Merge pull request #4315 from tgross35/backport-porcini5726b3c
Cygwin: Add PTY and group APIUpdates
tonic
from 0.12.3 to 0.13.0Release notes
Sourced from tonic's releases.
... (truncated)
Changelog
Sourced from tonic's changelog.
Commits
8be906d
Handle stream error correctly (#2199)7b2984c
feat(transport): add support for uds, unix domain socket (#2218)885b38e
chore: Remove unnecessary docs.rs config (#2223)e36a168
chore(server): Refactor default http2 keepalive timeout config (#2213)29fcc7f
chore(server): Remove import sleep and pending function (#2234)0e6c9cb
chore: fix changelog header2f76364
chore: update changelog to point to releases (#2235)99476a4
chore: Remove unnecessary license file from private crate (#2203)6a34e26
feat(router): Use infallible as error type (#2232)7b4803b
chore(router): Use upstream poll_ready to implement service (#2215)Updates
tokio
from 1.43.0 to 1.44.1Release notes
Sourced from tokio's releases.
... (truncated)
Commits
d413c9c
chore: prepare Tokio v1.44.1 (#7217)addbfb9
rt: skip defer queue inblock_in_place
context (#7216)8182ecf
chore: prepare Tokio v1.44.0 (#7202)a258bff
ci: enable printing in multi thread loom tests (#7200)e076d21
process: clarifyChild::kill
behavior (#7162)042433c
net: debug_assert on creating a tokio socket from a blocking one (#7166)0284d1b
macros: makeselect!
budget-aware (#7164)710bc80
rt: coop should yield using waker defer strategy (#7185)a2b12bd
readme: adjust release schedule to once per month (#7191)e7b593c
process: fix grammar of theChildStdin
struct doc comment (#7192)Updates
log
from 0.4.25 to 0.4.27Release notes
Sourced from log's releases.
Changelog
Sourced from log's changelog.
Commits
35161d0
Merge pull request #674 from rust-lang/cargo/0.4.27cc131ef
prepare for 0.4.27 releaseea6f54d
Merge pull request #673 from rust-lang/feat/logger-by-refd229c73
fix unclosed code block02486e4
fill in more tests for logger argument71e034f
expand logger testsdfa067e
fix up kv passing39d4c3a
run fmt7aacc8f
pass global logger by value, supplied logger by refa438c6e
Merge pull request #664 from tisonkun/logger-fieldUpdates
ctor
from 0.3.6 to 0.4.1Commits
Updates
hyper-util
from 0.1.10 to 0.1.11Release notes
Sourced from hyper-util's releases.
Changelog
Sourced from hyper-util's changelog.
Commits
4c4e062
v0.1.11486e3b6
bump license year5831ace
feat(client): enableHttpConnector::interface
on macOS and Solarish systems...dc03ad4
feat(client): implement Connection for UnixStream and NamedPipeClient (#177)94afd50
feat(rt/tokio): additive tokio and hyper i/o adaptors (#170)ef35d8a
chore: pin once-cell on msrv ci job (#175)d51318d
chore(client/legacy): remove unusedPoolClient::is_closed()
(#169)1290685
chore(tokio): warn on dead code (#168)b90ff7d
feat(rt): addtracing
feature that will propagate span context in TokioExec...46826ea
feat(server): supportauto_date_header
,max_local_error_reset_streams
, an...Updates
tonic-build
from 0.11.0 to 0.13.0Release notes
Sourced from tonic-build's releases.
... (truncated)
Changelog
Sourced from tonic-build's changelog.
... (truncated)
Commits
8be906d
Handle stream error correctly (#2199)7b2984c
feat(transport): add support for uds, unix domain socket (#2218)885b38e
chore: Remove unnecessary docs.rs config (#2223)e36a168
chore(server): Refactor default http2 keepalive timeout config (#2213)29fcc7f
chore(server): Remove import sleep and pending function (#2234)0e6c9cb
chore: fix changelog header2f76364
chore: update changelog to point to releases (#2235)99476a4
chore: Remove unnecessary license file from private crate (#2203)6a34e26
feat(router): Use infallible as error type (#2232)7b4803b
chore(router): Use upstream poll_ready to implement service (#2215)Updates
cc
from 1.2.14 to 1.2.17Release notes
Sourced from cc's releases.