Skip to content

chore(deps): bump the cargo-major group across 1 directory with 28 updates - #26065

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/cargo-major-edad968beb
Open

chore(deps): bump the cargo-major group across 1 directory with 28 updates#26065
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/cargo-major-edad968beb

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo-major group with 28 updates in the / directory:

Package From To
console-subscriber 0.4.1 0.5.0
aws-smithy-http 0.63.6 0.64.0
opendal 0.54.1 0.55.0
goauth 0.16.0 0.17.0
smpl_jwt 0.8.0 0.9.0
greptimedb-ingester 0.17.0 0.18.0
bollard 0.20.2 0.21.0
databend-client 0.28.3 0.34.2
evmap 10.0.2 11.0.0
lru 0.16.4 0.18.2
maxminddb 0.27.3 0.30.0
md-5 0.10.6 0.11.0
async-nats 0.49.1 0.50.0
openssl-probe 0.1.6 0.2.1
redis 0.32.7 1.2.0
rumqttc 0.24.0 0.25.1
sqlx 0.8.6 0.9.0
syslog 6.1.1 7.0.0
sysinfo 0.37.2 0.39.6
windows-sys 0.52.0 0.61.0
windows 0.58.0 0.61.3
quick-xml 0.31.0 0.41.0
similar-asserts 1.7.0 2.0.0
openssl-src 300.6.1+3.6.3 400.0.0+4.0.1
convert_case 0.10.0 0.11.0
darling 0.23.0 0.24.0
syn 2.0.119 3.0.3
serde_derive_internals 0.29.1 0.30.0

Updates console-subscriber from 0.4.1 to 0.5.0

Release notes

Sourced from console-subscriber's releases.

console-subscriber-v0.5.0

Breaking Changes

  • Upgrade tonic to 0.13 (#615) (2bd1afd)This is a breaking change for users of console-api and console-subscriber, as it changes the public tonic dependency to a semver-incompatible version. This breaks compatibility with tonic 0.12.x.
  • Upgrade tonic to 0.14 (#642)This is a breaking change for users of console-api and console-subscriber, as it changes the public tonic dependency to a semver-incompatible version. This breaks compatibility with tonic 0.13.x.

Added

Documented

  • Fix typo in doc comment (3dbca7a)

Updated

  • breaking Upgrade tonic to 0.13 (#615) (2bd1afd)
  • breaking Upgrade tonic to 0.14 (#645)
Commits
  • d8fba13 chore: release console-api-v0.9.0, console-subscriber-v0.5.0, tokio-console-v...
  • 5839f99 chore: update release-plz workflow (#646)
  • 51b9010 chore: update dist (cargo-dist) to 0.30.1 (#647)
  • 44e2281 Bump various dependencies (#643)
  • dca4748 Bump tonic to 0.14 (#642)
  • d3848d7 Fix Nix builds and update the lock file (#641)
  • 4238e73 Fix some clippy warnings and building with --all-features (#640)
  • 71e7f1d chore(deps-dev): bump vite in /console-subscriber/examples/grpc_web/app (#627)
  • 63c70ee feat: add support for vsock connections (#623)
  • 1aa5185 chore(deps): bump crossbeam-channel from 0.5.13 to 0.5.15 (#624)
  • Additional commits viewable in compare view

Updates aws-smithy-http from 0.63.6 to 0.64.0

Commits

Updates opendal from 0.54.1 to 0.55.0

Release notes

Sourced from opendal's releases.

v0.55.0

Rust Core Upgrade to v0.55

Public API

Timestamp types now come from jiff

All public metadata APIs that previously exposed chrono::DateTime<Utc> now use jiff::Timestamp. For example, Metadata::last_modified() and related setters return/accept Timestamp values (core/src/types/metadata.rs). Update downstream crates to depend on jiff if they manipulate these timestamps or convert them to other formats.

Scheme handling is string-based

OperatorInfo::scheme() now returns &'static str instead of Scheme, and Operator::via_iter accepts impl AsRef<str> (typically the services::*_SCHEME constants). Additionally, the deprecated constructors Operator::from_map and Operator::via_map have been removed. Migrate any code that relied on the enum variants or the removed constructors to the new string-based constants and from_iter/via_iter.

List APIs only support versions

OpList::with_version()/version() and Capability::list_with_version have been removed after a long deprecation cycle. Use with_versions()/versions() on OpList and read Capability::list_with_versions instead.

S3Builder::security_token removed

S3Builder no longer exposes the deprecated security_token() helper. Use session_token() exclusively when configuring temporary credentials.

KV-style services no longer pretend to support list

Services that never returned meaningful results for Operator::list (such as D1, FoundationDB, GridFS, Memcached, MongoDB, MySQL, Persy, PostgreSQL, Redb, Redis, SurrealDB, TiKV, etc.) now rely on the default Unsupported implementation. Those features will be implemented later.

Raw API

Deprecated KV adapters removed

The legacy opendal::raw::adapters::{kv, typed_kv} modules have been deleted. Services should directly implement Access instead of depending on the adapters. Remove the corresponding imports and shim layers from any out-of-tree services.

Bindings Python Upgrade to v0.47

Breaking change: Module exports are explicit

opendal.__init__ now only re-exports the capability, exceptions, file, layers, services, types, Operator, and AsyncOperator symbols. Imports such as:

from opendal import Metadata, Layer

no longer work. Update them to use the dedicated submodules:

from opendal.types import Metadata
from opendal.layers import Layer

The legacy helper module opendal.__base has also been removed together with _Base.

... (truncated)

Changelog

Sourced from opendal's changelog.

[v0.55.0] - 2025-11-11

Added

Changed

... (truncated)

Commits
  • 48c48b1 ci: Remove hdfs-native from arm platform (#6792)
  • f9b6790 chore: Don't introduce openssl for python binding (#6790)
  • ec8d0cd chore: Fix build (#6789)
  • fe8c14f Bump to version 0.55.0 with rc.2 (#6788)
  • d05602c fix(bindings/python): Update python/stubgen & core/hdfs-native (#6774)
  • 0c51354 docs: Make it clear that bindings have different version with rust core. (#6780)
  • e9494dc chore(services/fs): use NotADirectory directly (#6786)
  • d0eddb2 No need to copy the whole tree (#6783)
  • fc5725a feat(binding/nodejs): add TimeoutLayer, LoggingLayer and ThrottleLayer in nod...
  • 147b1e1 chore(services/s3)!: remove deprecated S3::security_token (#6779)
  • Additional commits viewable in compare view

Updates goauth from 0.16.0 to 0.17.0

Commits

Updates smpl_jwt from 0.8.0 to 0.9.0

Commits

Updates greptimedb-ingester from 0.17.0 to 0.18.0

Release notes

Sourced from greptimedb-ingester's releases.

v0.18.0

What's Changed

New Contributors

Full Changelog: GreptimeTeam/greptimedb-ingester-rust@v0.17.0...v0.18.0

Commits
  • 86aaa15 chore: bump version 0.18.0 (#57)
  • 5fa393e feat: add start_timestamp/end_timestamp to DoPutMetadata to facilitate fast i...
  • See full diff in compare view

Updates bollard from 0.20.2 to 0.21.0

Release notes

Sourced from bollard's releases.

Release v0.21.0

What's Changed

New Contributors

Full Changelog: fussybeaver/bollard@v0.20.2...v0.21.0

Commits
  • f536c94 chore: Release 0.21.0 (#721)
  • 24037ed chore: podman state release 1.53.1 (#720)
  • 94f4e53 build(deps): bump swagger-codegen.version in /codegen/swagger (#717)
  • 5ea2d69 build(deps): bump rust from 1.94.1-slim to 1.95.0-slim (#716)
  • 1a49547 build(deps): update rand requirement from 0.9 to 0.10 (#690)
  • 94cf615 fix(codegen): add Podman "stopping" state to container state enums (#715)
  • 35c3968 fix: Remove topology special case (#719)
  • ce5f6e5 Allow users to pass their own build reference (#687)
  • 64a73dd Also set the messages limits for the client, file send and ssh (#718)
  • b2699e7 build(deps): update tokio-tungstenite requirement from 0.28 to 0.29 (#699)
  • Additional commits viewable in compare view

Updates databend-client from 0.28.3 to 0.34.2

Release notes

Sourced from databend-client's releases.

Release v0.34.2

What's Changed

Full Changelog: databendlabs/bendsql@v0.34.1...v0.34.2

Release v0.34.1

What's Changed

Full Changelog: databendlabs/bendsql@v0.34.0...v0.34.1

Release v0.34.0

What's Changed

New Contributors

Full Changelog: databendlabs/bendsql@v0.33.7...v0.34.0

Release v0.33.7

What's Changed

Full Changelog: databendlabs/bendsql@v0.33.6...v0.33.7

... (truncated)

Commits
  • 8bc5e01 ci(bindings): restore nodejs windows builds (#789)
  • 5b953bf chore: bump version to 0.34.1 (#787)
  • 1d26df9 fix(cli): do not split BEGIN...END script blocks on inner semicolons (#786)
  • 6a8a5bf docs: add PR title format rule to AGENTS.md (#783)
  • b206a8d docs: clarify tenant param is only for Databend Cloud management mode (#781)
  • 9b70c81 fix: ignore pyo3 security advisories RUSTSEC-2026-0176/0177 in cargo-deny (#782)
  • 9940680 ci: retry docker compose image pulls (#780)
  • f0c05c1 feat(auth): add key-pair authentication support (#774)
  • c685ec0 feat: add Python 3.14 support for Python bindings (#779)
  • b43d20a chore: bump version to 0.34.0 (#778)
  • Additional commits viewable in compare view

Updates evmap from 10.0.2 to 11.0.0

Commits

Updates lru from 0.16.4 to 0.18.2

Changelog

Sourced from lru's changelog.

v0.18.2 - 2026-08-03

  • Fix panic-safety unsoundness in pop method.

v0.18.1 - 2026-07-09

  • Add find_and_promote method.

v0.18.0 - 2026-04-27

  • Fix unconstrained lifetime in get_or_insert_mut_ref.

v0.17.0 - 2026-04-14

  • Upgrade hashbrown to 0.17.0 and update MSRV to 1.85.0.
Commits
  • 2544aae Merge pull request #239 from jeromefroe/jerome/prepare-0-18-2-release
  • 7fc46b1 Prepare 0.18.2 release
  • f9a7f00 Merge pull request #238 from tooson9010-spec/fix/pop-panic-safety
  • 2776ded Fix panic-safety unsoundness in LruCache::pop (UAF when key Drop panics)
  • c6620d1 Merge pull request #237 from jeromefroe/jerome/prepare-0-18-1-release
  • da3c0fc Prepare 0.18.1 release
  • 1166263 Merge pull request #236 from pixmaip/find-and-promote
  • 2daba12 Apply suggestions from code review
  • 2ea00dc feat: add find_and_promote API
  • dac07e3 Merge pull request #234 from jeromefroe/jerome/prepare-0-18-0-release
  • Additional commits viewable in compare view

Updates maxminddb from 0.27.3 to 0.30.0

Release notes

Sourced from maxminddb's releases.

0.30.0

  • Added deserialize_any_with_raw_strings() for Serde-based format adapters to validate MMDB strings while constructing another runtime's native string type, avoiding duplicate UTF-8 validation without unsafe Rust. Adapters remain responsible for strict UTF-8 validation.
  • Fixed network iteration on cyclic or over-deep corrupt search trees so it returns an error instead of looping indefinitely.
  • Fixed decode_path() error rendering for extreme negative indexes and reduced path traversal header parsing.
  • Removed decoder logging checks from hot deserialization paths.
  • Fixed verify() to validate shared data-section pointer targets once, reject pointer cycles, invalid scalar encodings, and impossible container sizes.

0.29.0

  • Breaking: Metadata::build_time() now returns Result<SystemTime, MaxMindDbError> instead of panicking on unrepresentable timestamps, and databases whose build_epoch cannot be represented as SystemTime are rejected as invalid during open and verify.
  • Breaking: Reader::metadata is now private. Use Reader::metadata() to access validated metadata by shared reference.
  • Breaking: Opening a database now rejects unsupported major format versions, unsupported IP versions, and zero-node search trees. Minor format versions are still accepted for forward compatibility.
  • Fixed: within() and networks() now handle IPv6 databases without an IPv4 subtree without reading terminal data nodes as tree nodes or panicking while formatting low IPv6 networks.
  • Fixed: Skipping ignored or unknown fields now enforces data-section bounds and the maximum nesting depth instead of accepting truncated values or overflowing the stack on deeply nested corrupt data.
  • Internal: Added focused benchmarks for network iteration and serde unknown-field skipping, plus metadata build-time conversion, to guard performance-sensitive fixes.
  • Documentation: Fixed intra-doc links so docs build with warnings denied, and added a CI check to keep them passing.

0.28.1

  • Fixed: Databases with an impossible declared search tree size are now rejected during open/verify instead of causing runaway allocation during validation.
  • Fixed: within() now rejects IPv6 CIDRs on IPv4-only databases instead of yielding unrelated networks.
  • Fixed: Verification now rejects truncated scalar/string payloads instead of skipping past them and reporting the database as valid.
  • Fixed: LookupResult::network() now uses the reader's measured IPv4 subtree depth instead of assuming it always begins at bit 96.

0.28.0

... (truncated)

Changelog

Sourced from maxminddb's changelog.

0.30.0 - 2026-07-18

  • Added deserialize_any_with_raw_strings() for Serde-based format adapters to validate MMDB strings while constructing another runtime's native string type, avoiding duplicate UTF-8 validation without unsafe Rust. Adapters remain responsible for strict UTF-8 validation.
  • Fixed network iteration on cyclic or over-deep corrupt search trees so it returns an error instead of looping indefinitely.
  • Fixed decode_path() error rendering for extreme negative indexes and reduced path traversal header parsing.
  • Removed decoder logging checks from hot deserialization paths.
  • Fixed verify() to validate shared data-section pointer targets once, reject pointer cycles, invalid scalar encodings, and impossible container sizes.

0.29.0 - 2026-06-28

  • Breaking: Metadata::build_time() now returns Result<SystemTime, MaxMindDbError> instead of panicking on unrepresentable timestamps, and databases whose build_epoch cannot be represented as SystemTime are rejected as invalid during open and verify.
  • Breaking: Reader::metadata is now private. Use Reader::metadata() to access validated metadata by shared reference.
  • Breaking: Opening a database now rejects unsupported major format versions, unsupported IP versions, and zero-node search trees. Minor format versions are still accepted for forward compatibility.
  • Fixed: within() and networks() now handle IPv6 databases without an IPv4 subtree without reading terminal data nodes as tree nodes or panicking while formatting low IPv6 networks.
  • Fixed: Skipping ignored or unknown fields now enforces data-section bounds and the maximum nesting depth instead of accepting truncated values or overflowing the stack on deeply nested corrupt data.
  • Internal: Added focused benchmarks for network iteration and serde unknown-field skipping, plus metadata build-time conversion, to guard performance-sensitive fixes.
  • Documentation: Fixed intra-doc links so docs build with warnings denied, and added a CI check to keep them passing.

0.28.1 - 2026-04-26

  • Fixed: Databases with an impossible declared search tree size are now rejected during open/verify instead of causing runaway allocation during validation.
  • Fixed: within() now rejects IPv6 CIDRs on IPv4-only databases instead of yielding unrelated networks.
  • Fixed: Verification now rejects truncated scalar/string payloads instead of skipping past them and reporting the database as valid.
  • Fixed: LookupResult::network() now uses the reader's measured IPv4 subtree depth instead of assuming it always begins at bit 96.

0.28.0 - 2026-04-25

... (truncated)

Commits
  • fceaa66 Prepare v0.30.0 release
  • 770547a Set release date
  • 68f7876 Merge pull request #118 from oschwald/greg/raw-string-deserialization
  • 64107cd Clarify unsafe string decoding use case
  • 35ade52 Clarify raw string adapter contract
  • 37b3b66 Consolidate dynamic decoder dispatch
  • f04108b Expand raw string decoder coverage
  • 93a7d3b Expose raw string bytes to Serde adapters
  • 9f194b4 Merge pull request #117 from oschwald/greg/harden-reader
  • f8cd8eb Share search tree node decoding
  • Additional commits viewable in compare view

Updates md-5 from 0.10.6 to 0.11.0

Commits

Updates async-nats from 0.49.1 to 0.50.0

Release notes

Sourced from async-nats's releases.

async-nats/v0.50.0

Overview

This release allows for on-demand swap between chrono and time crates.

What's Changed

Chrono vs Time

Enabling chrono anywhere in the dependency graph selects the chrono backend for the whole build (Cargo feature unification).

New Contributors

Full Changelog: nats-io/nats.rs@async-nats/v0.49.1...async-nats/v0.50.0

Commits
  • 9b382a2 Release v0.50.0
  • 834b129 Apply linter fixes
  • d00e6b5 Fix account info deser failure on servers with tiered jetstream
  • afceb76 Replace dead feature-powerset CI job with curated feature check
  • a493d15 Switch to tryhard for nats-server tests
  • c27e773 Use new start method for retry start in nats-server crate
  • 86ecbaf Use time by default and cover chrono in CI
  • 15f9f63 Add chrono as alternative to time.
  • See full diff in compare view

Updates openssl-probe from 0.1.6 to 0.2.1

Release notes

Sourced from openssl-probe's releases.

0.2.1

  • Support for OpenHarmony.
  • Corrections to crate metadata.

What's Changed

@dependabot dependabot Bot added domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Aug 7, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 7, 2026 17:24
@dependabot dependabot Bot added domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Aug 7, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 35a06e2c57

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

quote = { version = "1.0", default-features = false }
serde_derive_internals = "0.29"
syn = { version = "2.0", default-features = false, features = ["full", "extra-traits", "visit-mut", "visit"] }
serde_derive_internals = "0.30"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep serde internals on a compatible API

With this bump, vector-config-macros is compiled against serde_derive_internals 0.30, but the code in lib/vector-config-macros/src/ast/container.rs still calls serde_ast::Container::from_ast(&context, input, Derive::Deserialize) with the old 3-argument signature. In 0.30 that API requires an additional private Ident, so any build that reaches this proc-macro crate fails before Vector can compile; either adapt the call for 0.30 or keep this dependency on the compatible 0.29 line.

Useful? React with 👍 / 👎.

@dependabot
dependabot Bot force-pushed the dependabot/cargo/cargo-major-edad968beb branch 4 times, most recently from 1ab4616 to d10e2be Compare August 10, 2026 20:24
…dates

Bumps the cargo-major group with 28 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [console-subscriber](https://github.com/tokio-rs/console) | `0.4.1` | `0.5.0` |
| [aws-smithy-http](https://github.com/smithy-lang/smithy-rs) | `0.63.6` | `0.64.0` |
| [opendal](https://github.com/apache/opendal) | `0.54.1` | `0.55.0` |
| [goauth](https://github.com/durch/rust-goauth) | `0.16.0` | `0.17.0` |
| [smpl_jwt](https://github.com/durch/rust-jwt) | `0.8.0` | `0.9.0` |
| [greptimedb-ingester](https://github.com/GreptimeTeam/greptimedb-ingester-rust) | `0.17.0` | `0.18.0` |
| [bollard](https://github.com/fussybeaver/bollard) | `0.20.2` | `0.21.0` |
| [databend-client](https://github.com/databendlabs/bendsql) | `0.28.3` | `0.34.2` |
| [evmap](https://github.com/jonhoo/evmap) | `10.0.2` | `11.0.0` |
| [lru](https://github.com/jeromefroe/lru-rs) | `0.16.4` | `0.18.2` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.27.3` | `0.30.0` |
| [md-5](https://github.com/RustCrypto/hashes) | `0.10.6` | `0.11.0` |
| [async-nats](https://github.com/nats-io/nats.rs) | `0.49.1` | `0.50.0` |
| [openssl-probe](https://github.com/rustls/openssl-probe) | `0.1.6` | `0.2.1` |
| [redis](https://github.com/redis-rs/redis-rs) | `0.32.7` | `1.2.0` |
| [rumqttc](https://github.com/bytebeamio/rumqtt) | `0.24.0` | `0.25.1` |
| [sqlx](https://github.com/launchbadge/sqlx) | `0.8.6` | `0.9.0` |
| [syslog](https://github.com/Geal/rust-syslog) | `6.1.1` | `7.0.0` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.37.2` | `0.39.6` |
| [windows-sys](https://github.com/microsoft/windows-rs) | `0.52.0` | `0.61.0` |
| [windows](https://github.com/microsoft/windows-rs) | `0.58.0` | `0.61.3` |
| [quick-xml](https://github.com/tafia/quick-xml) | `0.31.0` | `0.41.0` |
| [similar-asserts](https://github.com/mitsuhiko/similar-asserts) | `1.7.0` | `2.0.0` |
| [openssl-src](https://github.com/alexcrichton/openssl-src-rs) | `300.6.1+3.6.3` | `400.0.0+4.0.1` |
| [convert_case](https://github.com/rutrum/convert-case) | `0.10.0` | `0.11.0` |
| [darling](https://github.com/TedDriggs/darling) | `0.23.0` | `0.24.0` |
| [syn](https://github.com/dtolnay/syn) | `2.0.119` | `3.0.3` |
| [serde_derive_internals](https://github.com/serde-rs/serde) | `0.29.1` | `0.30.0` |



Updates `console-subscriber` from 0.4.1 to 0.5.0
- [Release notes](https://github.com/tokio-rs/console/releases)
- [Changelog](https://github.com/tokio-rs/console/blob/main/release-plz.toml)
- [Commits](tokio-rs/console@console-subscriber-v0.4.1...console-subscriber-v0.5.0)

Updates `aws-smithy-http` from 0.63.6 to 0.64.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `opendal` from 0.54.1 to 0.55.0
- [Release notes](https://github.com/apache/opendal/releases)
- [Changelog](https://github.com/apache/opendal/blob/main/CHANGELOG.md)
- [Commits](apache/opendal@v0.54.1...v0.55.0)

Updates `goauth` from 0.16.0 to 0.17.0
- [Release notes](https://github.com/durch/rust-goauth/releases)
- [Commits](https://github.com/durch/rust-goauth/commits)

Updates `smpl_jwt` from 0.8.0 to 0.9.0
- [Commits](https://github.com/durch/rust-jwt/commits)

Updates `greptimedb-ingester` from 0.17.0 to 0.18.0
- [Release notes](https://github.com/GreptimeTeam/greptimedb-ingester-rust/releases)
- [Commits](GreptimeTeam/greptimedb-ingester-rust@v0.17.0...v0.18.0)

Updates `bollard` from 0.20.2 to 0.21.0
- [Release notes](https://github.com/fussybeaver/bollard/releases)
- [Changelog](https://github.com/fussybeaver/bollard/blob/master/RELEASE.md)
- [Commits](fussybeaver/bollard@v0.20.2...v0.21.0)

Updates `databend-client` from 0.28.3 to 0.34.2
- [Release notes](https://github.com/databendlabs/bendsql/releases)
- [Commits](databendlabs/bendsql@v0.28.3...v0.34.2)

Updates `evmap` from 10.0.2 to 11.0.0
- [Commits](jonhoo/evmap@v10.0.2...v11.0.0)

Updates `lru` from 0.16.4 to 0.18.2
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.16.4...0.18.2)

Updates `maxminddb` from 0.27.3 to 0.30.0
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.27.3...v0.30.0)

Updates `md-5` from 0.10.6 to 0.11.0
- [Commits](RustCrypto/hashes@md-5-v0.10.6...md2-v0.11.0)

Updates `async-nats` from 0.49.1 to 0.50.0
- [Release notes](https://github.com/nats-io/nats.rs/releases)
- [Commits](nats-io/nats.rs@async-nats/v0.49.1...async-nats/v0.50.0)

Updates `openssl-probe` from 0.1.6 to 0.2.1
- [Release notes](https://github.com/rustls/openssl-probe/releases)
- [Commits](rustls/openssl-probe@0.1.6...0.2.1)

Updates `redis` from 0.32.7 to 1.2.0
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.32.7...redis-1.2.0)

Updates `rumqttc` from 0.24.0 to 0.25.1
- [Release notes](https://github.com/bytebeamio/rumqtt/releases)
- [Changelog](https://github.com/bytebeamio/rumqtt/blob/main/CHANGELOG.md)
- [Commits](bytebeamio/rumqtt@rumqttc-0.24.0...rumqttc-0.25.1)

Updates `sqlx` from 0.8.6 to 0.9.0
- [Changelog](https://github.com/transact-rs/sqlx/blob/main/CHANGELOG.md)
- [Commits](transact-rs/sqlx@v0.8.6...v0.9.0)

Updates `syslog` from 6.1.1 to 7.0.0
- [Commits](Geal/rust-syslog@6.1.1...7.0.0)

Updates `sysinfo` from 0.37.2 to 0.39.6
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.37.2...v0.39.6)

Updates `windows-sys` from 0.52.0 to 0.61.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.52.0...0.61.0)

Updates `windows` from 0.58.0 to 0.61.3
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `quick-xml` from 0.31.0 to 0.41.0
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.31.0...v0.41.0)

Updates `similar-asserts` from 1.7.0 to 2.0.0
- [Changelog](https://github.com/mitsuhiko/similar-asserts/blob/main/CHANGELOG.md)
- [Commits](mitsuhiko/similar-asserts@1.7.0...2.0.0)

Updates `openssl-src` from 300.6.1+3.6.3 to 400.0.0+4.0.1
- [Release notes](https://github.com/alexcrichton/openssl-src-rs/releases)
- [Commits](https://github.com/alexcrichton/openssl-src-rs/commits)

Updates `convert_case` from 0.10.0 to 0.11.0
- [Commits](https://github.com/rutrum/convert-case/commits)

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

Updates `syn` from 2.0.119 to 3.0.3
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.119...3.0.3)

Updates `serde_derive_internals` from 0.29.1 to 0.30.0
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/commits)

---
updated-dependencies:
- dependency-name: async-nats
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: aws-smithy-http
  dependency-version: 0.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: bollard
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: console-subscriber
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: convert_case
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: darling
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: databend-client
  dependency-version: 0.34.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: evmap
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-major
- dependency-name: goauth
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: greptimedb-ingester
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: lru
  dependency-version: 0.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: maxminddb
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: md-5
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: opendal
  dependency-version: 0.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: openssl-probe
  dependency-version: 0.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: openssl-src
  dependency-version: 400.0.0+4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-major
- dependency-name: quick-xml
  dependency-version: 0.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: redis
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-major
- dependency-name: rumqttc
  dependency-version: 0.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: serde_derive_internals
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: similar-asserts
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-major
- dependency-name: smpl_jwt
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: sqlx
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: syn
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-major
- dependency-name: sysinfo
  dependency-version: 0.39.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: syslog
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-major
- dependency-name: windows
  dependency-version: 0.61.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
- dependency-name: windows-sys
  dependency-version: 0.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/cargo-major-edad968beb branch from d10e2be to 9e80f94 Compare August 10, 2026 21:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants