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

feat: update flux to latest head #25051

Merged
merged 5 commits into from
Jun 11, 2024
Merged

feat: update flux to latest head #25051

merged 5 commits into from
Jun 11, 2024

Commits on Jun 10, 2024

  1. feat: update flux to latest head

    Flux has updated some dependencies, including prometheus. Prometheus
    has changed in some incompatible ways. Update the flux dependency
    to a newer version with the updated prometheus dependency and apply
    some small fixes to make everything build. This is in preparation
    for a flux release later in the week.
    
    The biggest change is in some tests that were using runtime.DeepEqual
    to check the correctness of prometheus metrics. The internals of
    these types have changed such that this is not a safe thing to do
    anymore. The test now verifies the string representations, as
    produced by String(), match.
    mhilton committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    395e6c3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2f821c View commit details
    Browse the repository at this point in the history
  3. fix: go.mod set toolchain

    mhilton committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    2c42c8a View commit details
    Browse the repository at this point in the history
  4. fix: lint

    mhilton committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    c452876 View commit details
    Browse the repository at this point in the history
  5. fix: update CI script

    The scripts/ci/check-system-go-matches-go-mod.sh is failing because
    newer go toolchains include the bugfix version in go.mod's go
    directive. Update the script to check the major and minor versions
    reported by both tools match.
    mhilton committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    9db62cc View commit details
    Browse the repository at this point in the history