Skip to content
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

Bump the all-updates group across 1 directory with 15 updates #41

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the all-updates group with 15 updates in the /core directory:

Package From To
clap 4.5.21 4.5.23
containerd-shim-wasm 0.7.0 0.8.0
wasmtime 26.0.1 28.0.0
tokio 1.41.1 1.42.0
tracing 0.1.40 0.1.41
anyhow 1.0.93 1.0.95
kube 0.96.0 0.98.0
k8s-openapi 0.23.0 0.24.0
serde_json 1.0.133 1.0.134
tokio-util 0.7.12 0.7.13
tokio-stream 0.1.16 0.1.17
tracing-subscriber 0.3.18 0.3.19
serde 1.0.215 1.0.217
tower 0.5.1 0.5.2
itertools 0.13.0 0.14.0

Updates clap from 4.5.21 to 4.5.23

Release notes

Sourced from clap's releases.

v4.5.23

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Changelog

Sourced from clap's changelog.

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Commits

Updates containerd-shim-wasm from 0.7.0 to 0.8.0

Release notes

Sourced from containerd-shim-wasm's releases.

containerd-shim-wasm/v0.8.0

Added

  • Support for "wasi:http/proxy" world in Wasmtime shim (#691, #705)
  • Re-export containerd_shim::Config (#714)
  • CI jobs for spell checking and running documentation tests (#728)

Changed

  • Update the opentelemetry related dependencies to the latest version (#712)
  • Use InstanceAllocationStrategy::Pooling if possible in wasmtime-shim (#751)

Removed

  • Removed special handling of the pause container, now it is treated as any other native container (#724)

Fixed

  • Documentation tests (#728)

New Contributors

Commits
  • a9b1afd Merge pull request #754 from Mossaka/bump-crates-version
  • 16e5d0e containerd-shim-wasm/CHANGELOG: unreleased -> v0.8.0 (#759)
  • 14d2a13 scripts, .github/workflows: add script to extract changelog (#689)
  • 96f5a1e containerd-shim-wasm/CHANGELOG: unreleased -> v0.8.0
  • a70ae91 Merge pull request #757 from containerd/dependabot/cargo/patch-f1374328a4
  • af6ebdc chore(deps): bump the patch group with 4 updates
  • 30d4f80 fix: change the wamr crate version to 0.1.0
  • 4e93eb7 Release containerd-shim-wasm: bump version to 0.8.0
  • 1b0ef20 Merge pull request #753 from Mossaka/wasip1
  • fd58321 chore: switch to wasm32-wasip1 target
  • Additional commits viewable in compare view

Updates wasmtime from 26.0.1 to 28.0.0

Release notes

Sourced from wasmtime's releases.

v28.0.0

28.0.0

Released 2024-12-20.

Added

  • The ISLE DSL used for Cranelift now has a first-class bool type. #9593

  • Cranelift now supports a new single-pass register allocator designed for compile-time performance (unlike the current default which is optimized for runtime-of-generated-code performance). #9611

  • The wasmtime crate now natively supports the wasm-wave crate and its encoding of component value types. #8872

  • A Module can now be created from an already-open file. #9571

  • A new default-enabled crate feature, signals-based-traps, has been added to the wasmtime crate. When disabled then runtime signal handling is not required by the host. This is intended to help with future effort to port Wasmtime to more platforms. #9614

  • Linear memories may now be backed by malloc in certain conditions when guard pages are disabled, for example. #9614 #9634

  • Wasmtime's async feature no longer requires std. #9689

  • The buffer and budget capacity of OutgoingBody in wasmtime-wasi-http are now configurable. #9670

Changed

  • Wasmtime's external and internal distinction of "static" and "dynamic" memories has been refactored and reworded. All options are preserved but exported under different names with improved documentation about how they all interact with one another. (and everything should be easier to understand) #9545

  • Each Store<T> now caches a single fiber stack in async mode to avoid allocating/deallocating if the store is used multiple times.

... (truncated)

Changelog

Sourced from wasmtime's changelog.

28.0.0

Released 2024-12-20.

Added

  • The ISLE DSL used for Cranelift now has a first-class bool type. #9593

  • Cranelift now supports a new single-pass register allocator designed for compile-time performance (unlike the current default which is optimized for runtime-of-generated-code performance). #9611

  • The wasmtime crate now natively supports the wasm-wave crate and its encoding of component value types. #8872

  • A Module can now be created from an already-open file. #9571

  • A new default-enabled crate feature, signals-based-traps, has been added to the wasmtime crate. When disabled then runtime signal handling is not required by the host. This is intended to help with future effort to port Wasmtime to more platforms. #9614

  • Linear memories may now be backed by malloc in certain conditions when guard pages are disabled, for example. #9614 #9634

  • Wasmtime's async feature no longer requires std. #9689

  • The buffer and budget capacity of OutgoingBody in wasmtime-wasi-http are now configurable. #9670

Changed

  • Wasmtime's external and internal distinction of "static" and "dynamic" memories has been refactored and reworded. All options are preserved but exported under different names with improved documentation about how they all interact with one another. (and everything should be easier to understand) #9545

  • Each Store<T> now caches a single fiber stack in async mode to avoid allocating/deallocating if the store is used multiple times. #9604

... (truncated)

Commits
  • 2e584e8 Release Wasmtime 28.0.0 (#9876)
  • edce721 Add release notes (#9771)
  • d1ff945 wasi-http: make the buffer and budget capacity of the OutgoingBody writer con...
  • abcd6ac Port wasmtime-fiber to no_std and allow async feature in no_std Wasmtim...
  • 7ef8f2e winch: Improve frame handling (#9708)
  • f40e53e Add basic pulley disassembly support to clif-util (#9721)
  • 350a6e2 pulley: Fill out more bits and pieces of stack allocation (#9718)
  • 94da012 Update clang-format to LLVM 18 (#9729)
  • da7c53b winch: Prefer using Context::without for fuel checks (#9709)
  • 06103f7 Update build/test images to Ubuntu 24.04 (#9728)
  • Additional commits viewable in compare view

Updates tokio from 1.41.1 to 1.42.0

Release notes

Sourced from tokio's releases.

Tokio v1.42.0

1.42.0 (Dec 3rd, 2024)

Added

  • io: add AsyncFd::{try_io, try_io_mut} (#6967)

Fixed

  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#6929)
  • runtime: do not defer yield_now inside block_in_place (#6999)

Changes

  • io: simplify io readiness logic (#6966)

Documented

  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#6791)
  • time: fix a typo in Instant docs (#6982)

#6791: tokio-rs/tokio#6791 #6929: tokio-rs/tokio#6929 #6966: tokio-rs/tokio#6966 #6967: tokio-rs/tokio#6967 #6982: tokio-rs/tokio#6982 #6999: tokio-rs/tokio#6999

Commits

Updates tracing from 0.1.40 to 0.1.41

Release notes

Sourced from tracing's releases.

tracing 0.1.41

[ [crates.io][crate-0.1.41] ] | [ [docs.rs][docs-0.1.41] ]

This release updates the tracing-core dependency to [v0.1.33][core-0.1.33] and the tracing-attributes dependency to [v0.1.28][attrs-0.1.28].

Added

  • core: Add index API for Field (#2820)
  • core: Allow &[u8] to be recorded as event/span field (#2954)

Changed

  • Bump MSRV to 1.63 (#2793)
  • core: Use const thread_locals when possible (#2838)

Fixed

  • Removed core imports in macros (#2762)
  • attributes: Added missing RecordTypes for instrument (#2781)
  • attributes: Change order of async and unsafe modifier (#2864)
  • Fix missing field prefixes (#2878)
  • attributes: Extract match scrutinee (#2880)
  • Fix non-simple macro usage without message (#2879)
  • Fix event macros with constant field names in the first position (#2883)
  • Allow field path segments to be keywords (#2925)
  • core: Fix missed register_callsite error (#2938)
  • attributes: Support const values for target and name (#2941)
  • Prefix macro calls with ::core to avoid clashing with local macros (#3024)

#2762: tokio-rs/tracing#2762 #2781: tokio-rs/tracing#2781 #2793: tokio-rs/tracing#2793 #2820: tokio-rs/tracing#2820 #2838: tokio-rs/tracing#2838 #2864: tokio-rs/tracing#2864 #2878: tokio-rs/tracing#2878 #2879: tokio-rs/tracing#2879 #2880: tokio-rs/tracing#2880 #2883: tokio-rs/tracing#2883 #2925: tokio-rs/tracing#2925 #2938: tokio-rs/tracing#2938 #2941: tokio-rs/tracing#2941 #2954: tokio-rs/tracing#2954 #3024: tokio-rs/tracing#3024 [attrs-0.1.28]: https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.28 [core-0.1.33]: https://github.com/tokio-rs/tracing/releases/tag/tracing-core-0.1.33 [docs-0.1.41]: https://docs.rs/tracing/0.1.41/tracing/

... (truncated)

Commits

Updates anyhow from 1.0.93 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

1.0.94

  • Documentation improvements
Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • Additional commits viewable in compare view

Updates kube from 0.96.0 to 0.98.0

Release notes

Sourced from kube's releases.

0.98.0

Highlights

What's Changed

Added

Changed

Fixed

New Contributors

Full Changelog: kube-rs/kube@0.97.0...0.98.0

0.97.0

Highlights

  • CustomResource derive added features for crd yaml output:
  • Configuration edge cases:
    • Avoid double installations of aws-lc-rs (rustls crypto) provider #1617
    • Kubeconfig fix for null user; #1608
    • Default runtime watcher backoff alignment with client-go #1603
  • Feature use:
    • Client proxy feature-set misuse prevention #1626
    • Allow disabling gzip via Config #1627
  • Depedency minors: thiserror, hashbrown, jsonptr, json-patch. Killed lazy_static / once_cell

What's Changed

... (truncated)

Changelog

Sourced from kube's changelog.

0.98.0 / 2024-12-23

Highlights

What's Changed

Added

Changed

Fixed

0.97.0 / 2024-11-20

Highlights

  • CustomResource derive added features for crd yaml output:
  • Configuration edge cases:
    • Avoid double installations of aws-lc-rs (rustls crypto) provider #1617
    • Kubeconfig fix for null user; #1608
    • Default runtime watcher backoff alignment with client-go #1603
  • Feature use:
    • Client proxy feature-set misuse prevention #1626
    • Allow disabling gzip via Config #1627
  • Depedency minors: thiserror, hashbrown, jsonptr, json-patch. Killed lazy_static / once_cell

What's Changed

Added

Changed

... (truncated)

Commits
  • 3f122f9 release 0.98.0
  • abcfed4 fix readme version sync error
  • 68a46a4 Update tokio-tungstenite requirement from 0.24.0 to 0.25.0 (#1666)
  • 000e99a Update garde requirement from 0.20.0 to 0.21.0 (#1672)
  • 76b4af6 Bump k8s-openapi for Kubernetes v1_32 support and MSRV (#1671)
  • b104472 Implement derive(CELSchema) macro for generating cel validation on CRDs (#...
  • 0424cb4 chore(deps): Update Rust crate hostname to 0.4 (#1665)
  • 36882b6 feat(runtime): Add series implementation for event recorder (#1655)
  • 419442b rustfmt (#1661)
  • 9265aa2 Add support for UTF-16 encoded kubeconfig files (#1654)
  • Additional commits viewable in compare view

Updates k8s-openapi from 0.23.0 to 0.24.0

Release notes

Sourced from k8s-openapi's releases.

v0.24.0

k8s-openapi

  • BREAKING CHANGE: Added support for Kubernetes 1.32 under the v1_32 feature.

  • BREAKING CHANGE: Dropped support for Kubernetes 1.26 and 1.27.

Corresponding Kubernetes API server versions:

  • v1.28.15
  • v1.29.12
  • v1.30.8
  • v1.31.4
  • v1.32.0

k8s-openapi-codegen-common

  • No changes.

k8s-openapi-derive

  • No changes except to bump the k8s-openapi-codegen-common dependency to the new version.
Changelog

Sourced from k8s-openapi's changelog.

v0.24.0 (2024-12-21)

k8s-openapi

  • BREAKING CHANGE: Added support for Kubernetes 1.32 under the v1_32 feature.

  • BREAKING CHANGE: Dropped support for Kubernetes 1.26 and 1.27.

Corresponding Kubernetes API server versions:

  • v1.28.15
  • v1.29.12
  • v1.30.8
  • v1.31.4
  • v1.32.0

k8s-openapi-codegen-common

  • No changes.

k8s-openapi-derive

  • No changes except to bump the k8s-openapi-codegen-common dependency to the new version.

Commits
  • 27a69bc v0.24.0
  • 1f0f14f Update kind to v0.26.0
  • 6a64cac Fix various leftover mentions of k8s-openapi-derive generating API functions.
  • 3f16b5e Drop v1.26, v1.27
  • 9413a9a Add v1.32.0
  • dfcf9ab Fix new clippy lint about unnecessary lifetimes on impl blocks.
  • d078091 Update to v1.29.12, v1.30.8, v1.31.4
  • b460fff Update to v1.29.11, v1.30.7, v1.31.3
  • 7f38ac0 Update kind to v0.25.0
  • d2240d4 Update to v1.31.2
  • Additional commits viewable in compare view

Updates serde_json from 1.0.133 to 1.0.134

Release notes

Sourced from serde_json's releases.

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)
Commits
  • b2a1415 Release 1.0.134
  • 9875785 Tweak wording of NULL/TRUE/FALSE documentation
  • 4aa05b9 Merge pull request #1222 from dtolnay/rawvalueassoc
  • f42c7c7 Move RawValue associated constants into same impl block as public functions
  • 96576ba Merge pull request #1221 from bheylin/add-const-raw-values-for-null-and-bools
  • 4db66fb Add 'static lifetime to const's
  • 9c9aa1f Add literal 'null', 'true' and 'false' consts to RawValue struct.
  • See full diff in compare view

Updates tokio-util from 0.7.12 to 0.7.13

Commits
  • 0b31c2f chore: prepare tokio-util v0.7.13 (#7012)
  • 129f9fc codec: fix incorrect handling of invalid utf-8 in LinesCodec::decode_eof (#...
  • b5c227d tracing: move tracing instrumentation tests into tokio tests (#7007)
  • dcae2b9 ci: unfreeze FreeBSD from rustc 1.81 (#7009)
  • bb9d570 chore: prepare Tokio v1.42.0 (#7005)
  • af9c683 tests: fix typo in build test instructions (#7004)
  • 4bc5a1a ci: allow Unicode-3.0 license for unicode-ident (#7006)
  • f8948ea runtime: do not defer yield_now inside block_in_place (#6999)
  • bce9780 time: use array::from_fn instead of manually creating array (#7000)
  • 38151f3 readme: unlist 1.32.x as LTS release (#6997)
  • Additional commits viewable in compare view

Updates tokio-stream from 0.1.16 to 0.1.17

Commits
  • 67355c6 chore: prepare tokio-stream v0.1.17 (#7020)
  • 405d746 signal: remove oneshot channels from tests (#7015)
  • e0d1293 ci: add instructions that explain how to fix spellcheck errors (#7016)
  • 480c010 signal: add SignalKind::info on illumos (#6995)
  • c032ea0 ci: detect trailing whitespace (#7013)
  • 0b31c2f chore: prepare tokio-util v0.7.13 (#7012)
  • 129f9fc codec: fix incorrect handling of invalid utf-8 in LinesCodec::decode_eof (#...
  • b5c227d tracing: move tracing instrumentation tests into tokio tests (#7007)
  • dcae2b9 ci: unfreeze FreeBSD from rustc 1.81 (#7009)
  • bb9d570 chore: prepare Tokio v1.42.0 (#7005)
  • Additional commits viewable in compare view

Updates tracing-subscriber from 0.3.18 to 0.3.19

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.19

[ [crates.io][crate-0.3.19] ] | [ [docs.rs][docs-0.3.19] ]

This release updates the tracing dependency to [v0.1.41][tracing-0.1.41] and the tracing-serde dependency to [v0.2.0][tracing-serde-0.2.0].

Added

  • Add set_span_events to fmt::Subscriber (#2962)
  • tracing: Allow &[u8] to be recorded as event/span field (#2954)

Changed

  • Set log max level when reloading (#1270)
  • Bump MSRV to 1.63 (#2793)
  • Use const thread_locals when possible (#2838)
  • Don't gate with_ansi() on the "ansi" feature (#3020)
  • Updated tracing-serde to 0.2.0 (#3160)

#1270: tokio-rs/tracing#1270 #2793: tokio-rs/tracing#2793 #2838: tokio-rs/tracing#2838 #2954: tokio-rs/tracing#2954 #2962: tokio-rs/tracing#2962 #3020: tokio-rs/tracing#3020 #3160: tokio-rs/tracing#3160 [tracing-0.1.41]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.41 [tracing-serde-0.2.0]: https://github.com/tokio-rs/tracing/releases/tag/tracing-serde-0.2.0 [docs-0.3.19]: https://docs.rs/tracing-subscriber/0.3.19/tracing_subscriber/ [crate-0.3.19]: https://crates.io/crates/tracing-subscriber/0.3.19

Commits

Updates serde from 1.0.215 to 1.0.217

Release notes

Sourced from Description has been truncated

Bumps the all-updates group with 15 updates in the /core directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.21` | `4.5.23` |
| [containerd-shim-wasm](https://github.com/containerd/runwasi) | `0.7.0` | `0.8.0` |
| [wasmtime](https://github.com/bytecodealliance/wasmtime) | `26.0.1` | `28.0.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.1` | `1.42.0` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.40` | `0.1.41` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.95` |
| [kube](https://github.com/kube-rs/kube) | `0.96.0` | `0.98.0` |
| [k8s-openapi](https://github.com/Arnavion/k8s-openapi) | `0.23.0` | `0.24.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.133` | `1.0.134` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.12` | `0.7.13` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.16` | `0.1.17` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.18` | `0.3.19` |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.217` |
| [tower](https://github.com/tower-rs/tower) | `0.5.1` | `0.5.2` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.13.0` | `0.14.0` |



Updates `clap` from 4.5.21 to 4.5.23
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.21...clap_complete-v4.5.23)

Updates `containerd-shim-wasm` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/containerd/runwasi/releases)
- [Changelog](https://github.com/containerd/runwasi/blob/main/RELEASE.md)
- [Commits](containerd/runwasi@containerd-shim-wasm/v0.7.0...containerd-shim-wasm/v0.8.0)

Updates `wasmtime` from 26.0.1 to 28.0.0
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.0/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v26.0.1...v28.0.0)

Updates `tokio` from 1.41.1 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.41.1...tokio-1.42.0)

Updates `tracing` from 0.1.40 to 0.1.41
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-0.1.40...tracing-0.1.41)

Updates `anyhow` from 1.0.93 to 1.0.95
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.93...1.0.95)

Updates `kube` from 0.96.0 to 0.98.0
- [Release notes](https://github.com/kube-rs/kube/releases)
- [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md)
- [Commits](kube-rs/kube@0.96.0...0.98.0)

Updates `k8s-openapi` from 0.23.0 to 0.24.0
- [Release notes](https://github.com/Arnavion/k8s-openapi/releases)
- [Changelog](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md)
- [Commits](Arnavion/k8s-openapi@v0.23.0...v0.24.0)

Updates `serde_json` from 1.0.133 to 1.0.134
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.133...v1.0.134)

Updates `tokio-util` from 0.7.12 to 0.7.13
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.12...tokio-util-0.7.13)

Updates `tokio-stream` from 0.1.16 to 0.1.17
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-stream-0.1.16...tokio-stream-0.1.17)

Updates `tracing-subscriber` from 0.3.18 to 0.3.19
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.18...tracing-subscriber-0.3.19)

Updates `serde` from 1.0.215 to 1.0.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.217)

Updates `tower` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-0.5.1...tower-0.5.2)

Updates `itertools` from 0.13.0 to 0.14.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.13.0...v0.14.0)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: containerd-shim-wasm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: kube
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: k8s-openapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tokio-stream
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tower
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant