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

build(deps): bump the production-dependencies group across 1 directory with 20 updates #110

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 24, 2024

Bumps the production-dependencies group with 20 updates in the / directory:

Package From To
anyhow 1.0.82 1.0.86
async-trait 0.1.79 0.1.80
base64 0.22.0 0.22.1
chrono 0.4.37 0.4.38
clap 4.5.4 4.5.7
clap_complete 4.5.2 4.5.6
clap_mangen 0.2.20 0.2.21
flate2 1.0.28 1.0.30
lazy_static 1.4.0 1.5.0
prost 0.12.4 0.12.6
prost-types 0.12.4 0.12.6
regex 1.10.4 1.10.5
serde 1.0.197 1.0.203
serde_json 1.0.115 1.0.117
tar 0.4.40 0.4.41
thiserror 1.0.58 1.0.61
tokio 1.37.0 1.38.0
tokio-util 0.7.10 0.7.11
toml 0.8.12 0.8.14
url 2.5.0 2.5.2

Updates anyhow from 1.0.82 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)

1.0.83

  • Integrate compile-time checking of cfgs (#363)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view

Updates async-trait from 0.1.79 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • See full diff in compare view

Updates base64 from 0.22.0 to 0.22.1

Changelog

Sourced from base64's changelog.

0.22.1

  • Correct the symbols used for the predefined alphabet::BIN_HEX.
Commits
  • e144006 v0.22.1
  • 64cca59 Merge pull request #271 from JobanSD/patch-1
  • 838355e Correct BinHex 4.0 alphabet according to specifications
  • bf15ccf Merge pull request #270 from marshallpierce/mp/clippy
  • fc6aabe Appease clippy
  • 9a518a2 Merge pull request #267 from bdura/patch-1
  • d96c80f Merge branch 'marshallpierce:master' into patch-1
  • e8e4a22 docs: fix trailing ``` in mod.rs example
  • See full diff in compare view

Updates chrono from 0.4.37 to 0.4.38

Release notes

Sourced from chrono's releases.

v0.4.38

This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient days_since method for the Weekday type.

Chrono 0.4.38 also removes the long deprecated rustc-serialize feature. Support for rustc-serialize will be soft-destabilized in the next Rust edition. Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.

In chrono 0.4.36 we made an accidental breaking change by switching to derive(Copy) for DateTime instead of a manual implementation. It is reverted in this release.

Removals

Additions

Fixes

  • Return error when rounding with a zero duration (#1474, thanks @​Dav1dde)
  • Manually implement Copy for DateTime if offset is Copy (#1573)

Internal

  • Inline test_encodable_json and test_decodable_json functions (#1550)
  • CI: Reduce combinations in cargo hack check (#1553)
  • Refactor formatting code (#1335)
  • Optimize number formatting (#1558)
  • Only package files needed for building and testing (#1554)

Thanks to all contributors on behalf of the chrono team, @​djc and @​pitdicker!

Commits
  • 352a352 Prepare 0.4.38
  • 46d44d6 Manually implement Copy for DateTime if offset is Copy
  • 760eb66 Update windows-bindgen requirement from 0.55 to 0.56
  • 391187f Return error when rounding with zero duration
  • ffc75e5 Add TimeDelta::checked_mul and TimeDelta::checked_div
  • f8cecbe Make Weekday::num_days_from public, rename to days_since.
  • 0cfc405 Optimize number formatting
  • 74ba83b Take pad by value
  • 78e79db Match on tuples in format_fixed
  • f3d76c7 Match on tuples in format_numeric
  • Additional commits viewable in compare view

Updates clap from 4.5.4 to 4.5.7

Release notes

Sourced from clap's releases.

v4.5.7

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args

v4.5.6

[4.5.6] - 2024-06-06

Changelog

Sourced from clap's changelog.

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args

[4.5.6] - 2024-06-06

[4.5.5] - 2024-06-06

Fixes

  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all
Commits

Updates clap_complete from 4.5.2 to 4.5.6

Release notes

Sourced from clap_complete's releases.

v4.5.6

[4.5.6] - 2024-06-06

v4.5.4

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Changelog

Sourced from clap_complete's changelog.

[4.5.6] - 2024-06-06

[4.5.5] - 2024-06-06

Fixes

  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Commits

Updates clap_mangen from 0.2.20 to 0.2.21

Commits
  • f087c39 chore: Release
  • 1870d32 docs: Update changelog
  • ea7bfe2 Merge pull request #5520 from epage/exclusive
  • 08656d0 fix(parser): Allow exclusive to override required_*
  • 65e90cd test(parser): Show conditional requireds and exclusive
  • 5e3386b docs: Link to repo, not webpage inside repo
  • 2d83106 chore(deps): Update compatible (dev) (#5514)
  • b917796 Merge pull request #5505 from epage/snapbox
  • 75e2199 chore: Upgrade snapbox
  • 4aefa3c docs(ref): Clean up long help descriptions
  • Additional commits viewable in compare view

Updates flate2 from 1.0.28 to 1.0.30

Release notes

Sourced from flate2's releases.

1.0.29 - with new zlib-rs feature (~zlib-ng in Rust)

With the new zlib-rs feature, a new backend is enabled that brings in a SIMD-accelerated Rust implementation.

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.28...1.0.29

Commits
  • d3bea90 Merge pull request #405 from Byron/fix-CI
  • 5048843 Merge pull request #407 from striezel-stash/actions-checkout-v4
  • 42c86ce Merge pull request #406 from striezel-stash/fix-some-typos
  • f7b99e9 Update actions/checkout in GitHub Actions workflows to v4
  • 563f1c4 Fix typos
  • 1126a4a prepare bugfix release to make docs work again
  • bc1b3e9 CI verifies that docs can be built (#404)
  • 5ce4154 fix CI by assuring builds work with --all-features enabled (#404)
  • 9a25bc0 Merge pull request #403 from folkertdev/bump-version-zlib-rs
  • e9c87c0 zlib-rs support version bump
  • Additional commits viewable in compare view

Updates lazy_static from 1.4.0 to 1.5.0

Commits

Updates prost from 0.12.4 to 0.12.6

Commits

Updates prost-types from 0.12.4 to 0.12.6

Commits

Updates regex from 1.10.4 to 1.10.5

Changelog

Sourced from regex's changelog.

1.10.5 (2024-06-09)

This is a new patch release with some minor fixes.

Bug fixes:

Commits
  • 0718fc5 1.10.5
  • 377463b changelog: 1.10.4 and 1.10.5
  • 68c4f0b regex-automata-0.4.7
  • 4757b5f regex-syntax-0.8.4
  • 1430b65 changelog: 1.10.4
  • 1f9f9cc bytes: escape invalid UTF-8 bytes in debug output for Match
  • ab4c8d1 doc: fix duplicate phrasing typo
  • ddeb85e cli/deps: update memmap2 to 0.9
  • 023f1c9 lite: fix attribute warning about rustfmt
  • 9c139f4 syntax: simplify Hir::dot constructors
  • Additional commits viewable in compare view

Updates serde from 1.0.197 to 1.0.203

Release notes

Sourced from serde's releases.

v1.0.203

  • Documentation improvements (#2747)

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • d5bc546 Release 1.0.203
  • 45ae217 Merge pull request #2747 from dtolnay/variadic
  • b7b97dd Unindent implementation inside tuple_impl_body macro
  • 5d3c563 Document tuple impls as fake variadic
  • 3761854 Merge pull request #2745 from dtolnay/docsrs
  • a8f1484 Rely on docs.rs to define --cfg=docsrs by default
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • Additional commits viewable in compare view

Updates serde_json from 1.0.115 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)

v1.0.116

Commits
  • 0ae247c Release 1.0.117
  • 4517c7a PartialEq is not implemented between Value and 128-bit ints
  • fdf99c7 Combine number PartialEq tests
  • b4fc245 Merge pull request #1130 from serde-rs/checkcfg
  • 98f1a24 Resolve unexpected_cfgs warning
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • Additional commits viewable in compare view

Updates tar from 0.4.40 to 0.4.41

Commits

Updates thiserror from 1.0.58 to 1.0.61

Release notes

Sourced from thiserror's releases.

1.0.61

  • Use core::fmt and core::panic to facilitate error_in_core support (#299, thanks @​jordens)

1.0.60

  • Resolve unexpected_cfgs warning (#298)

1.0.59

  • Unblock testing of rustc debug-fmt-detail option (#297)
Commits

Updates tokio from 1.37.0 to 1.38.0

Release notes

Sourced from tokio's releases.

Tokio v1.38.0

This release marks the beginning of stabilization for runtime metrics. It stabilizes RuntimeMetrics::worker_count. Future releases will continue to stabilize more metrics.

Added

  • fs: add File::create_new (#6573)
  • io: add copy_bidirectional_with_sizes (#6500)
  • io: implement AsyncBufRead for Join (#6449)
  • net: add Apple visionOS support (#6465)
  • net: implement Clone for NamedPipeInfo (#6586)
  • net: support QNX OS (#6421)
  • sync: add Notify::notify_last (#6520)
  • sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • sync: add split method to the semaphore permit (#6472, #6478)
  • task: add tokio::task::join_set::Builder::spawn_blocking (#6578)
  • wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)

Changed

  • macros: make #[tokio::test] append #[test] at the end of the attribute list (#6497)
  • metrics: fix blocking_threads count (#6551)
  • metrics: stabilize RuntimeMetrics::worker_count (#6556)
  • runtime: move task out of the lifo_slot in block_in_place (#6596)
  • runtime: panic if global_queue_interval is zero (#6445)
  • sync: always drop message in destructor for oneshot receiver (#6558)
  • sync: instrument Semaphore for task dumps (#6499)
  • sync: use FIFO ordering when waking batches of wakers (#6521)
  • task: make LocalKey::get work with Clone types (#6433)
  • tests: update nix and mio-aio dev-dependencies (#6552)
  • time: clean up implementation (#6517)
  • time: lazily init timers on first poll (#6512)
  • time: remove the true_when field in TimerShared (#6563)
  • time: use sharding for timer implementation (#6534)

Fixed

  • taskdump: allow building taskdump docs on non-unix machines (#6564)
  • time: check for overflow in Interval::poll_tick (#6487)
  • sync: fix incorrect is_empty on mpsc block boundaries (#6603)

Documented

  • fs: rewrite file system docs (#6467)
  • io: fix stdin documentation (#6581)
  • io: fix obsolete reference in ReadHalf::unsplit() documentation (#6498)
  • macros: render more comprehensible documentation for select! (#6468)
  • net: add missing types to module docs (#6482)
  • net: fix misleading NamedPipeServer example (#6590)

... (truncated)

Commits

Updates tokio-util from 0.7.10 to 0.7.11

Commits
  • cdf9d99 chore: prepare tokio-util v0.7.11 (#6535)
  • f6eb1ee time: lazily init timers on first poll (#6512)
  • b7d4fba sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • 3c8d8e6 chore: fix latest rust-1.78.0 warnings (#6528)
  • e971a5e util: use FIFO ordering in WakeList (#6521)
  • 28439e2 time: clean up implementation (#6517)
  • d33fdd8 time: check for overflow in Interval::poll_tick (#6487)
  • 731dde2 runtime: clarify misleading use of UnsafeCell::with_mut (#6513)
  • 9ed5957 wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)
  • a73d6bf macros: #[cfg(not(test))] is no longer necessary for main macros (#6508)
  • Additional commits viewable in compare view

Updates toml from 0.8.12 to 0.8.14

Commits
  • c383efa chore: Release
  • 7bb1781 docs: Update changelog
  • 0af6deb Merge pull request #740 from epage/key-quotes
  • c9e36e7 fix(encode): Prefer literals over escaping double-quotes
  • 42f7a1b test(encode): Show existing quote behavior
  • 9e6290f chore(deps): Update compatible (dev) (#737)
  • dbf1cc1 Merge pull request #736 from epage/snapbox
  • ec9bfd7 chore: Update to snapbox 0.6
  • 881bf67 chore: Remove unused features
  • b62c76e refactor: Resolve deprecations
  • Additional commits viewable in compare view

Updates url from 2.5.0 to 2.5.2

Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it ma...

Description has been truncated

dependabot bot and others added 30 commits January 8, 2024 02:11

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 5.4.0 to 5.5.0.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Commits](docker/metadata-action@v5.4.0...v5.5.0)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…n-0.2.16

build(deps): bump clap_mangen from 0.2.15 to 0.2.16

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [clap_complete](https://github.com/clap-rs/clap) from 4.4.4 to 4.4.6.
- [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.4.4...clap_complete-v4.4.6)

---
updated-dependencies:
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [clap](https://github.com/clap-rs/clap) from 4.4.11 to 4.4.13.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.11...v4.4.13)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…1.0.55

build(deps): bump thiserror from 1.0.51 to 1.0.55

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [quote](https://github.com/dtolnay/quote) from 1.0.34 to 1.0.35.
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.34...1.0.35)

---
updated-dependencies:
- dependency-name: quote
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…ete-4.4.6

build(deps): bump clap_complete from 4.4.4 to 4.4.6

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build(deps): bump clap from 4.4.11 to 4.4.13
This adds the --timeout argument to bpfman system service.
With no timeout it will run forever, default is 15s.
With a timeout it will run for N seconds then quit.

Signed-off-by: Dave Tucker <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs: Community Meeting Minutes - Jan 4, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…ocker/metadata-action-5.5.0

build(deps): bump docker/metadata-action from 5.4.0 to 5.5.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build(deps): bump quote from 1.0.34 to 1.0.35

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Tidy up async code and shutdown handling
Convert the xdpdispatcher to use sled for all it's in memory persistence.
Redo the rebuild logic, leave behind some TODOs for future work.

fix a race in listing loaded programs where a program was deleted before
we could get it's file descriptor.

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Sled fixes, convert xdpdispatcher to use sled, fix loaded_programs race
Convert the xdpdispatcher to use sled for all it's in memory persistence.
Redo the rebuild logic, leave behind some TODOs for future work.

fix a race in listing loaded programs where a program was deleted before
we could get it's file descriptor.

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [clap_mangen](https://github.com/clap-rs/clap) from 0.2.16 to 0.2.17.
- [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_mangen-v0.2.16...clap_mangen-v0.2.17)

---
updated-dependencies:
- dependency-name: clap_mangen
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.55 to 1.0.56.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.55...1.0.56)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [syn](https://github.com/dtolnay/syn) from 2.0.43 to 2.0.48.
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.43...2.0.48)

---
updated-dependencies:
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [opentelemetry_sdk](https://github.com/open-telemetry/opentelemetry-rust) from 0.21.1 to 0.21.2.
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@v0.21.1...v0.21.2)

---
updated-dependencies:
- dependency-name: opentelemetry_sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.193 to 1.0.195.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.193...v1.0.195)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…n-0.2.17

build(deps): bump clap_mangen from 0.2.16 to 0.2.17

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build(deps): bump syn from 2.0.43 to 2.0.48

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…1.0.56

build(deps): bump thiserror from 1.0.55 to 1.0.56
Convert the tc-dispatcher to
use the in memory db.

Cleanup the rebuild logic for the dispatchers.

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…try_sdk-0.21.2

build(deps): bump opentelemetry_sdk from 0.21.1 to 0.21.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build(deps): bump serde from 1.0.193 to 1.0.195
Remove exposed (un-dangerous) credentials and internalize them in
actions.

Signed-off-by: Andrew Stoycos <[email protected]>
Make sure we instruct the operator to undeploy the damon before the
the operator, crds, rbac, etc is deleted to ensure nothing hangs on
a dangling finializer.

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fixup xdp_pass_private test
astoycos and others added 24 commits April 3, 2024 17:00

Unverified

The committer email address is not verified.
simplify and start to audit everything that we
expose publicly.

Move the storage manager (csi plugin) into the
bpfman-api crate with the GRPC server since that's
the only place it's used.

Signed-off-by: Andrew Stoycos <[email protected]>

Unverified

The committer email address is not verified.
This commit removes the bpfmanager structure and
therefore eliminates the need for library users to
instantiate it.

Additionally re-organize the code base a bit to
make everything a bit more streamline.

Signed-off-by: Andrew Stoycos <[email protected]>

Unverified

The committer email address is not verified.
update our public-api files to the latest nightly

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
remove a bunch of un-needed apis

Unverified

The committer email address is not verified.
Signed-off-by: Andrew Stoycos <[email protected]>
Some of the CLI and all of the CRDs use Program ID, but a few placed in
the CLI just use ID. Make them consistent and use Program ID.

Signed-off-by: Billy McFall <[email protected]>
The install scripts and service files were not updated when the code
moved to using the bpfman-rpc. Make the changes so that bpfman-rpc runs
as a socket activated service.

Signed-off-by: Billy McFall <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix public-api for latest nightly
Update all the documentation in preparation for the v0.4.0 release.

Fixes: bpfman#1038

Signed-off-by: Billy McFall <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs: Scrub documentation for Release 0.4.0

Unverified

The committer email address is not verified.
Stop checking the public-api for the bpfman-api
and bpfman-csi crates since they're autogenerated
and cause constant churn.

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
stop checking bpfman-api and bpfman-csi public_api

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bumps the production-dependencies group with 1 update: [apache/skywalking-eyes](https://github.com/apache/skywalking-eyes).


Updates `apache/skywalking-eyes` from 97538682f556b56cc7422ece660d8d7e6c4fb013 to cd7b195c51fd3d6ad52afceb760719ddc6b3ee91
- [Release notes](https://github.com/apache/skywalking-eyes/releases)
- [Changelog](https://github.com/apache/skywalking-eyes/blob/main/CHANGES.md)
- [Commits](apache/skywalking-eyes@9753868...cd7b195)

---
updated-dependencies:
- dependency-name: apache/skywalking-eyes
  dependency-type: direct:production
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bumps the production-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [comfy-table](https://github.com/nukesor/comfy-table) | `7.1.0` | `7.1.1` |
| [netlink-sys](https://github.com/rust-netlink/netlink-sys) | `0.8.5` | `0.8.6` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.3` | `0.12.4` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.12.3` | `0.12.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.57` | `2.0.58` |


Updates `comfy-table` from 7.1.0 to 7.1.1
- [Release notes](https://github.com/nukesor/comfy-table/releases)
- [Changelog](https://github.com/Nukesor/comfy-table/blob/main/CHANGELOG.md)
- [Commits](Nukesor/comfy-table@v7.1.0...v7.1.1)

Updates `netlink-sys` from 0.8.5 to 0.8.6
- [Release notes](https://github.com/rust-netlink/netlink-sys/releases)
- [Changelog](https://github.com/rust-netlink/netlink-sys/blob/main/CHANGELOG)
- [Commits](rust-netlink/netlink-sys@v0.8.5...v0.8.6)

Updates `prost` from 0.12.3 to 0.12.4
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.3...v0.12.4)

Updates `prost-types` from 0.12.3 to 0.12.4
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.3...v0.12.4)

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

---
updated-dependencies:
- dependency-name: comfy-table
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: netlink-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

Unverified

The committer email address is not verified.
Put these in a directory with the version rather
that putting the version in the file name.

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…n-dependencies-73e3b39cb4

build(deps): bump the production-dependencies group with 5 updates

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…production-dependencies-45b3da13a3

build(deps): bump apache/skywalking-eyes from 97538682f556b56cc7422ece660d8d7e6c4fb013 to cd7b195c51fd3d6ad52afceb760719ddc6b3ee91 in the production-dependencies group
A bunch of fixes needed before we cut the v0.4.0
release.

- Doc updates
- make sure we package bpfman-ns along bpfman
  proper
- Fixup the build target for release from musl to gnu

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Release v0.4.0
Make sure to publish the bpfman-csi and bpfman-rpc
crates before doing the core bpfman one since
they are dependencies.

Signed-off-by: Andrew Stoycos <[email protected]>
Signed-off-by: Andrew Stoycos <[email protected]>
Signed-off-by: Andrew Stoycos <[email protected]>

Unverified

The committer email address is not verified.
make sure the bpf-log-exporter compiles independently
of the workspace and run cargo generate-lockfile.

Signed-off-by: Andrew Stoycos <[email protected]>

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…y with 20 updates

Bumps the production-dependencies group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.82` | `1.0.86` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.79` | `0.1.80` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.22.0` | `0.22.1` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.37` | `0.4.38` |
| [clap](https://github.com/clap-rs/clap) | `4.5.4` | `4.5.7` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.2` | `4.5.6` |
| [clap_mangen](https://github.com/clap-rs/clap) | `0.2.20` | `0.2.21` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.28` | `1.0.30` |
| [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) | `1.4.0` | `1.5.0` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.4` | `0.12.6` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.12.4` | `0.12.6` |
| [regex](https://github.com/rust-lang/regex) | `1.10.4` | `1.10.5` |
| [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.203` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.115` | `1.0.117` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.40` | `0.4.41` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.58` | `1.0.61` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.37.0` | `1.38.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.10` | `0.7.11` |
| [toml](https://github.com/toml-rs/toml) | `0.8.12` | `0.8.14` |
| [url](https://github.com/servo/rust-url) | `2.5.0` | `2.5.2` |



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

Updates `async-trait` from 0.1.79 to 0.1.80
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.79...0.1.80)

Updates `base64` from 0.22.0 to 0.22.1
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.22.0...v0.22.1)

Updates `chrono` from 0.4.37 to 0.4.38
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.37...v0.4.38)

Updates `clap` from 4.5.4 to 4.5.7
- [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.4...v4.5.7)

Updates `clap_complete` from 4.5.2 to 4.5.6
- [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.2...clap_complete-v4.5.6)

Updates `clap_mangen` from 0.2.20 to 0.2.21
- [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_mangen-v0.2.20...clap_mangen-v0.2.21)

Updates `flate2` from 1.0.28 to 1.0.30
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.0.28...1.0.30)

Updates `lazy_static` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases)
- [Commits](rust-lang-nursery/lazy-static.rs@1.4.0...1.5.0)

Updates `prost` from 0.12.4 to 0.12.6
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.4...v0.12.6)

Updates `prost-types` from 0.12.4 to 0.12.6
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.4...v0.12.6)

Updates `regex` from 1.10.4 to 1.10.5
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.4...1.10.5)

Updates `serde` from 1.0.197 to 1.0.203
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.197...v1.0.203)

Updates `serde_json` from 1.0.115 to 1.0.117
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.115...v1.0.117)

Updates `tar` from 0.4.40 to 0.4.41
- [Commits](alexcrichton/tar-rs@0.4.40...0.4.41)

Updates `thiserror` from 1.0.58 to 1.0.61
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.58...1.0.61)

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

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

Updates `toml` from 0.8.12 to 0.8.14
- [Commits](toml-rs/toml@toml-v0.8.12...toml-v0.8.14)

Updates `url` from 2.5.0 to 2.5.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.0...v2.5.2)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: clap_mangen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: lazy_static
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tar
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jun 24, 2024
Copy link
Author

dependabot bot commented on behalf of github Jul 19, 2024

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this Jul 19, 2024
@dependabot dependabot bot deleted the dependabot/cargo/production-dependencies-b7472bc58a branch July 19, 2024 18:34
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.

None yet

7 participants