kubernetes-sigs / blixt

Layer 4 Kubernetes load-balancer
Apache License 2.0
354 stars 51 forks source link

chore(deps): bump aya-log from 0.2.0 to 0.2.1 #294

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps aya-log from 0.2.0 to 0.2.1.

Release notes

Sourced from aya-log's releases.

aya-log-v0.2.1

Chore

  • Rename bpf -> ebpf

Documentation

  • reword rustdocs a bit

New Features

  • Rename Bpf to Ebpf And BpfLoader to EbpfLoader. This also adds type aliases to preserve the use of the old names, making updating to a new Aya release less of a burden. These aliases are marked as deprecated since we'll likely remove them in a later release.
  • Rename BpfLogger to EbpfLogger

Bug Fixes

  • print &[u8] using full width Otherwise &[1u8, 0u8] cannot be distinguished from &[0x10u8] (they both become 10)

Other

  • remove unwrap and NonZero* in info Addresses the feedback from #1007:
    • remove panic from unwrap and expect
    • Option with 0 mapping to None
  • revamp MapInfo be more friendly with older kernels Adds detection for whether a field is available in MapInfo:
    • For map_type(), we treturn new enum MapType instead of the integer representation.
    • For fields that can't be zero, we return Option<NonZero*> type.
    • For name_as_str(), it now uses the feature probe bpf_name() to detect if field is available. Although the feature probe checks for program name, it can also be used for map name since they were both introduced in the same commit.
  • revamp ProgramInfo be more friendly with older kernels Purpose of this commit is to add detections for whether a field is available in ProgramInfo.
    • For program_type(), we return the new enum ProgramType instead of the integer representation.
    • For fields that we know cannot be zero, we return Option<NonZero*> type.
    • For name_as_str(), it now also uses the feature probe bpf_name() to detect if field is available or not.
    • Two additional feature probes are added for the fields:
      • prog_info_map_ids() probe -> map_ids() field
      • prog_info_gpl_compatible() probe -> gpl_compatible() field

... (truncated)

Commits
  • 6591165 Release aya-log v0.2.1
  • 04bbbcc Release aya-log-common v0.1.15, aya-log-ebpf v0.1.1
  • c3f0c7d chore: Prepare for aya-log-ebpf release
  • 59082f5 Release aya-ebpf-cty v0.2.2, aya-ebpf-bindings v0.1.1, aya-ebpf-macros v0.1.1...
  • c169b72 Release aya-obj v0.2.0, aya v0.13.0, safety bump aya v0.13.0
  • 5478cac feat(aya): Implement TCX
  • 1d272f3 build(deps): update hashbrown requirement in the cargo-crates group
  • aa240ba Appease clippy
  • 55ed9e0 fix(aya-log): print &[u8] using full width (#1008)
  • d05110f perf: cache nr_cpus in a thread_local
  • Additional commits viewable in compare view


Dependabot compatibility score

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 manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
shaneutt commented 1 month ago

@dependabot recreate

k8s-ci-robot commented 1 month ago

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: dependabot[bot], shaneutt

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files: - ~~[OWNERS](https://github.com/kubernetes-sigs/blixt/blob/main/OWNERS)~~ [shaneutt] Approvers can indicate their approval by writing `/approve` in a comment Approvers can cancel approval by writing `/approve cancel` in a comment