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

Update all non-major dependencies #1646

Merged
merged 12 commits into from
May 15, 2023
Merged

Update all non-major dependencies #1646

merged 12 commits into from
May 15, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@​defense-unicorns/unicorn-ui ^0.0.47 -> ^0.0.48 age adoption passing confidence dependencies patch
@floating-ui/dom (source) 1.2.6 -> 1.2.7 age adoption passing confidence dependencies patch
@playwright/test (source) 1.32.3 -> 1.33.0 age adoption passing confidence devDependencies minor
@sveltejs/kit (source) 1.15.7 -> 1.16.3 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin 5.59.0 -> 5.59.5 age adoption passing confidence devDependencies patch
@typescript-eslint/parser 5.59.0 -> 5.59.5 age adoption passing confidence devDependencies patch
anchore/sbom-action v0.14.1 -> v0.14.2 age adoption passing confidence action patch
cuelang.org/go v0.4.3 -> v0.5.0 age adoption passing confidence require minor
eslint (source) 8.39.0 -> 8.40.0 age adoption passing confidence devDependencies minor
flate2 1.0.25 -> 1.0.26 age adoption passing confidence dependencies patch
github.com/anchore/syft v0.79.0 -> v0.80.0 age adoption passing confidence require minor
github.com/derailed/k9s v0.27.3 -> v0.27.4 age adoption passing confidence require patch
github.com/distribution/distribution v2.8.1+incompatible -> v2.8.2+incompatible age adoption passing confidence require patch
github.com/docker/cli v23.0.4+incompatible -> v23.0.6+incompatible age adoption passing confidence require patch
github.com/google/go-containerregistry v0.14.0 -> v0.15.1 age adoption passing confidence require minor
github.com/moby/moby v23.0.4+incompatible -> v23.0.6+incompatible age adoption passing confidence require patch
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b -> v1.1.0-rc3 age adoption passing confidence require patch
github/codeql-action v2.3.0 -> v2.3.3 age adoption passing confidence action patch
github/codeql-action v2.3.2 -> v2.3.3 age adoption passing confidence action patch
golang.org/x/crypto v0.8.0 -> v0.9.0 age adoption passing confidence require minor
helm.sh/helm/v3 v3.11.3 -> v3.12.0 age adoption passing confidence require minor
k8s.io/api v0.26.4 -> v0.27.1 age adoption passing confidence require minor
k8s.io/apimachinery v0.26.4 -> v0.27.1 age adoption passing confidence require minor
k8s.io/client-go v0.26.4 -> v0.27.1 age adoption passing confidence require minor
k8s.io/component-base v0.26.4 -> v0.27.1 age adoption passing confidence require minor
k8s.io/klog/v2 v2.90.1 -> v2.100.1 age adoption passing confidence require minor
k8s.io/kubectl v0.26.4 -> v0.27.1 age adoption passing confidence require minor
oras.land/oras-go/v2 v2.0.2 -> v2.1.0 age adoption passing confidence require minor
playwright (source) 1.32.3 -> 1.33.0 age adoption passing confidence devDependencies minor
quicktype 23.0.21 -> 23.0.30 age adoption passing confidence devDependencies patch
sass 1.62.0 -> 1.62.1 age adoption passing confidence devDependencies patch
sigs.k8s.io/kustomize/api v0.12.1 -> v0.13.4 age adoption passing confidence require minor
svelte (source) 3.58.0 -> 3.59.1 age adoption passing confidence devDependencies minor
svelte-check 3.2.0 -> 3.3.2 age adoption passing confidence devDependencies minor
vite (source) 4.3.1 -> 4.3.5 age adoption passing confidence devDependencies patch

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

floating-ui/floating-ui

v1.2.7

Compare Source

Bug Fixes

  • fix(getClippingRect): incorrect clipping rect calculation with position: fixed ancestors (#​2291)

  • fix(autoUpdate): prevent animationFrame: true from disabling visualViewport scrolling updates (#​2303)

Microsoft/playwright

v1.33.0

Compare Source

Locators Update
  • Use [locator.or()][locator.or()] to create a locator that matches either of the two locators.
    Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead.
    In this case, you can wait for either a "New email" button, or a dialog and act accordingly:

    const newEmail = page.getByRole('button', { name: 'New' });
    const dialog = page.getByText('Confirm security settings');
    await expect(newEmail.or(dialog)).toBeVisible();
    if (await dialog.isVisible())
      await page.getByRole('button', { name: 'Dismiss' }).click();
    await newEmail.click();
  • Use new options hasNot and hasNotText in [locator.filter()][locator.filter()]
    to find elements that do not match certain conditions.

    const rowLocator = page.locator('tr');
    await rowLocator
        .filter({ hasNotText: 'text in column 1' })
        .filter({ hasNot: page.getByRole('button', { name: 'column 2 button' }) })
        .screenshot();
  • Use new web-first assertion [locatorAssertions.toBeAttached()][locatorAssertions.toBeAttached()] to ensure that the element
    is present in the page's DOM. Do not confuse with the [locatorAssertions.toBeVisible()][locatorAssertions.toBeVisible()] that ensures that
    element is both attached & visible.

New APIs
  • [locator.or()][locator.or()]
  • New option hasNot in [locator.filter()][locator.filter()]
  • New option hasNotText in [locator.filter()][locator.filter()]
  • [locatorAssertions.toBeAttached()][locatorAssertions.toBeAttached()]
  • New option timeout in [route.fetch()][route.fetch()]
  • [reporter.onExit()][reporter.onExit()]
⚠️ Breaking change
  • The mcr.microsoft.com/playwright:v1.33.0 now serves a Playwright image based on Ubuntu Jammy.
    To use the focal-based image, please use mcr.microsoft.com/playwright:v1.33.0-focal instead.
Browser Versions
  • Chromium 113.0.5672.53
  • Mozilla Firefox 112.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 112
  • Microsoft Edge 112
sveltejs/kit

v1.16.3

Compare Source

Patch Changes
  • fix: entry generation with mixed segments (#​9879)

  • fix: use focusVisible: false to prevent unwanted focus ring on navigation (#​9861)

v1.16.2

Compare Source

Patch Changes
  • fix: support Node 20 (6e2efcf62)

  • fix: reset focus synchronously on navigation (#​9837)

v1.16.1

Compare Source

Patch Changes
  • fix: realign state.branch on the client on first load (#​9754)

  • fix: update $page.data correctly after invalidate (#​9798)

  • fix: file not found in manifest (#​9846)

v1.16.0

Compare Source

Minor Changes
  • feat: route-level entry generators via export const entries (#​9571)

v1.15.11

Compare Source

Patch Changes
  • chore: more compact representation for invalidated search param (#​9708)

  • chore: fix import path to app script on windows (#​9743)

  • fix: make $app/navigation more resilient to bundler reordering (#​9808)

  • fix: page load fetch() now accepts the same input types for the body as the native fetch function (#​9801)

  • fix: handle preload and filterSerializedResponseHeaders in sequence function (#​9741)

v1.15.10

Compare Source

Patch Changes
  • fix: log whole error object in default handleError (#​9791)

v1.15.9

Compare Source

Patch Changes
  • fix: correctly replace state when data-sveltekit-replacestate is used with a hash link (#​9751)

  • fix: compute trailing slash on page server / data request (#​9738)

  • fix: update vite-plugin-svelte to fix windows resolution issue (#​9769)

v1.15.8

Compare Source

Patch Changes
  • chore: revert undici pin and upgrade version (#​9740)

  • chore: upgrade vite-plugin-svelte for resolve improvements and warnings (#​9742)

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.59.5

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.2

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.1

Compare Source

Bug Fixes
  • eslint-plugin: [prefer-regexp-exec] skip malformed regexes (#​6935) (05ed60e)
  • eslint-plugin: [unified-signatures] no parameters function (#​6940) (2970861)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.59.5

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.59.2

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.59.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

anchore/sbom-action

v0.14.2

Compare Source

Changes in v0.14.2

cue-lang/cue

v0.5.0

Compare Source

This release focuses on changes to the implementation of comprehensions, the algorithm for detecting cycles in CUE, and the reimplementation of let comprehensions as fields.

Also included are a number of bug fixes and changes to help the KubeVela project upgrade off CUE v0.2.2 to the latest release. v0.5.0 is the first release since v0.4.3 back in April 2022. It has been a long time in the making, and is comprised of 277 commits.

It is worth noting that we do not plan nor wish for such long gaps between releases. For more details on upcoming releases and steps we are taking to increase release cadence as well as our confidence in each release, please see this discussion.

As a reminder: users can register their projects with unity, our regression and performance testing setup. unity is used to ensure that a project's CUE evaluations do not unexpectedly stop working, or regress in terms of performance. unity continues to catch multiple issues with each release. Adding your project to unity not only guarantees that we will not break your tests (if we do, we will work with you to fix your CUE code), but it also helps to improve the quality of each CUE release. We are currently in the process of releasing Unity as a GitHub App on the public Marketplace. Sign up to receive updates; we will be in touch as soon as the GitHub App is ready.

Thank you to @​djosephsen, @​joaopapereira, @​mpvl, @​mvdan, @​myitcv, @​qequ, @​rogpeppe, @​rytswd, @​satotake, @​spachava753, and @​tmm1 for contributing to this release!

Project-level changes

Various CI-related changes have been made to simplify and streamline the GerritHub-based CI setup across the various CUE repositories. A common base package is vendored into each repository and used as a template for GitHub workflows and other configuration. For those interested in studying the setup, please see the files beneath internal/ci.

This release drops support for go1.16.x , go1.17.x and go1.18.x, is tested against go1.19.x and go1.20.x, and is built using go1.20.2.

Our dependency on github.com/rogpeppe/go-internal is upgraded to v1.9.0 and various testscript-related improvements have been made to CUE's tests.

GoReleaser has been upgrade to v1.16.2 as part of the release workflow. In a related change, CL 546920 moves us to a CUE-based source configuration for GoReleaser. This allows us to define the concept of 'latest', state which indicates whether we should perform the homebrew release and the Docker manifest latest steps. This fixes a long-standing bug whereby homebrew taps and Docker images were created for the latest release, regardless of whether that was a pre-release, or indeed a patch version of a non-current minor version.

As of CL 547507, CUE build artefacts published on GitHub are entirely reproducible, thanks to Go's support for reproducible, verifiable and verified builds.

Encoders

When cue import-ing YAML, the -R recursive flag now only recursively interprets text as YAML if it contains a newline CL 536902.

API

Various APIs have been transitioned to drop use of the deprecated cue.Runtime type, as well as migrating away from cue.Instance via cue.InstanceOrValue. Some use of these deprecated types remains: #​1035, #​1735, #​1806. These will be tidied up in later releases as the API surface matures towards v1.0.0.

The cue package now supports InlineImports for Value.Syntax CL 541561. This leverages new support within the internal exporter to creating self-contained CUE. This change also deprecates Value.ResolveReferences().

Package cue adds Selector.Type to make it easier to pull out selector-specific information from a selector (for example, it makes it possible and cheap to retrieve the unquoted string label from a regular field selector) CL 542738.

Package cue adds Value.BuildInstance(). If a cue.Value exactly represents a package, BuildInstance() returns the build instance corresponding to the value CL 542769.

cue/stats is introduced as a new package for getting CUE operation statistics. The functionality is hoisted from internal/core/adt, but the package should for all practical purposes be seen as a new implementation. The stats have been aggregated as experimental functionality to the tools/flow package.

CL 546763 disallowed deprecated language features in the Go API. These features had long been deprecated in cmd/cue. This means that API operations will now fail on deprecated features whereas before they were handled in compatibility mode. The parser.FromVersion feature can be used to reenable these deprecated features.

Language

This release does not introduce any language changes. CL 537264 made some minor adjustments to the language specification to improve readability.

CL 541457 removes support for re-writing of old-style let declarations. This had already been deprecated for a long time and this change was made to enable support for aliases of embeddings.

Core evaluator

Per-field comprehensions

One of the major changes introduced in this release is how comprehensions are handled. CL 529524 move the evaluator to a model of per-field comprehensions.

Comprehensions are expanded for, if, and let clauses that yield zero or more structs to be embedded in the enclosing list or struct.

CUE does not allow cyclic dependencies between comprehensions if they result in an ambiguous set of fields. It does allow cascading insertions as in:

a?: int
b?: int
if a != _|_ {
    b: 2
}
if b != _|_ {
    c: 3
    d: 4
}

The way this works is that for fields with a fixed prefix path in a comprehension value, the comprehension is assigned to these respective fields.

More concretely, the above example is rewritten to:

a?: int
b: if a != _|_ { 2 }
c: if b != _|_ { 3 }
d: if b != _|_ { 4 }

where the fields with if clause are only inserted if their condition resolves to true. Note that this is not valid CUE; it may be in the future.

With this rewrite, dependencies in comprehension expressions are handled analogously to other expressions.

Note that a single comprehension may be distributed across multiple fields. The evaluator will ensure, however, that a comprehension is only evaluated once.

Analogous to reference cycles, as of CL 544129 we allow comprehensions to use the struct in which they are defined as source, as long as they do not introduce new fields, which would alter the source on which they iterate.

Reimplementation of cycle detection

The new algorithm is inspired by the cycle detection used by Tomabechi's 1 and Van Lohuizen's 2 graph unification algorithms.

Unlike with traditional graph unification, however, CUE uses references, which, unlike node equivalence, are unidirectional. This means that the technique to track equivalence through dereference, as common in graph unification algorithms like Tomabechi's, does not work unaltered.

The unidirectional nature of references imply that each reference equates an exact copy of the value it points to. This renders the original approach of node-pointer equivalence useless.

The new algorithm, a variant of Tomabechi's and Van Lohuizen's algorithm, looks at references equality on conjuncts, instead of node equality. This simplifies the accounting and allows for far simpler and precise accounting when using references instead of the traditional node equivalence.

More background info on cycles

We have to define when a cycle is detected. CUE implementations MUST report an error upon a structural cycle, and SHOULD report cycles at the shortest possible paths at which they occur, but MAY report these at deeper paths. For instance, the following CUE has a structural cycle:

f: g: f

The shortest path at which the cycle can be reported is f.g, but as all failed configurations are logically equal, it is fine for implementations to report them at f.g.g, for instance.

It is not, however, correct to assume that a reference to a parent is always a cycle. Consider this case:

a: [string]: b: a

Even though reference a refers to a parent node, the cycle needs to be fed by a concrete field in struct a to persist, meaning it cannot result in a cycle as defined in the spec as it is defined here. Note however, that a specialization of this configuration can result in a cycle. Consider

a: [string]: b: a
a: c: _

Here reference a is guaranteed to result in a structural cycle, as field c will match the pattern constraint unconditionally.

In other words, it is not possible to exclude tracking references across pattern constraints from cycle checking.

It is tempting to try to find a complete set of these edge cases with the aim to statically determine cases in which this occurs. But as Carpenter [^Carpenter] demonstrates, it is possible for cycles to be created as a result of unifying two graphs that are themselves acyclic. The following example is a translation of Carpenters example to CUE:

y: {
	f: h: g
	g: _
}
x: {
	f: _
	g: f
}

Even though the above contains no cycles, the result of x & y is cyclic:

f: h: g
g: f

This means that, in practice, cycle detection has at least partially a dynamic component to it.

The language specification contains a higher-level and more complete overview of structural cycles.

Hideto Tomabechi. 1992. Quasi-Destructive Graph Unification with
Structure-Sharing. In COLING 1992 Volume 2: The 14th International
Conference on Computational Linguistics.

Marcel P. van Lohuizen. 2000. "Memory-Efficient and Thread-Safe
Quasi-Destructive Graph Unification". In Proceedings of the 38th Annual
Meeting of the Association for Computational Linguistics, pages 352–359,
Hong Kong. Association for Computational Linguistics.

[^Carpenter]:
Bob Carpenter, "The logic of typed feature structures."
Cambridge University Press, ISBN:0-521-41932-8

Reimplementation of let comprehensions

CL 543362 made a change to internal/core to reimplement let comprehensions as fields. This makes it easier to track context as let comprehensions then follow the same paradigm as fields. It also allows debug information to be shown as to where lets are added in the tree. This change was accompanied by number of others that refined the approach.

Self-contained export

internal/core/export now implements an algorithm for generating self-contained CUE on export, an option that can further be refined by asking the exporter to inline imports. These internal changes manifest in changes to cue def and cuelang.org/go/cue that are described elsewhere.

Other changes

CL 545897 started tracking stats within the core CUE tests. This book keeping helps to spot likely regressions in performance early by collocating the stats with the CUE that is being evaluated.

Builtins

In the strconv package, strconv.FormatInt and strconv.FormatUint now support arbitary-precision format; see CL 538512.

CL 545898 improved the error messages for pkg builtins, by including the path in error in many cases, and passing a wrapped message for encoding/yaml.

CL 546237 allows incomplete list.MinItems constraints. Before it either returned false or true, ignoring that making a configuration more specific might still satisfy MinItems later on. CL 546238 made a similar change for struct.MinFields.

Tooling layer

Standard input is now parsed correctly in cue cmd-declared command tasks; see CL 541898.

cmd/cue

Version control system (VCS) information is included in cue version as of CL 540297. The Go version used to build cmd/cue is included as of CL 549302.

cue def now supports an --inline-imports flag which resolves imports to print a self-contained version of the command input. For example, given the txtar input:

-- cue.mod/module.cue --
module: "example.com/a"

-- in.cue --
package a

import "example.com/a/pkg"
import "list"

v: pkg.v

-- pkg/pkg.cue --
package pkg

v: { x: 3, y: x }

The running cue def --inline-imports in.cue will give:

package a

import "list"

v: {
	x: 3
	y: x
}

CL 546243 fixed a long-standing bug whereby the --ignore errors flag was not observed by cue eval.

Changelog


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Footnotes

  1. https://aclanthology.org/C92-2068

  2. https://aclanthology.org/P00-1045/

@renovate
Copy link
Contributor Author

renovate bot commented Apr 25, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_sidecar --label=renovate_child -v "/mnt/renovate/gh/defenseunicorns/zarf":"/mnt/renovate/gh/defenseunicorns/zarf" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/containerbase":"/tmp/containerbase" -e GOPATH -e GOPROXY -e GOFLAGS -e CGO_ENABLED -e GIT_CONFIG_KEY_0 -e GIT_CONFIG_VALUE_0 -e GIT_CONFIG_KEY_1 -e GIT_CONFIG_VALUE_1 -e GIT_CONFIG_KEY_2 -e GIT_CONFIG_VALUE_2 -e GIT_CONFIG_COUNT -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w "/mnt/renovate/gh/defenseunicorns/zarf" ghcr.io/containerbase/sidecar bash -l -c "install-tool golang 1.20.4 && go get -d -t ./... && go mod tidy && go mod tidy"
go: downloading github.com/AlecAivazis/survey/v2 v2.3.6
go: downloading github.com/alecthomas/jsonschema v0.0.0-20220216202328-9eeeec9d044b
go: downloading github.com/mholt/archiver/v3 v3.5.1
go: downloading github.com/pterm/pterm v0.12.59
go: downloading github.com/spf13/cobra v1.7.0
go: downloading github.com/spf13/viper v1.15.0
go: downloading oras.land/oras-go/v2 v2.1.0
go: downloading github.com/defenseunicorns/oras-go v1.2.3
go: downloading github.com/anchore/syft v0.80.0
go: downloading github.com/derailed/k9s v0.27.4
go: downloading github.com/google/go-containerregistry v0.15.1
go: downloading github.com/sigstore/cosign v1.5.2
go: downloading k8s.io/client-go v0.27.1
go: downloading k8s.io/component-base v0.27.1
go: downloading k8s.io/kubectl v0.27.1
go: downloading github.com/Masterminds/semver/v3 v3.2.1
go: downloading github.com/fluxcd/helm-controller/api v0.32.2
go: downloading github.com/fluxcd/source-controller/api v0.36.1
go: downloading helm.sh/helm/v3 v3.12.0
go: downloading k8s.io/api v0.27.1
go: downloading k8s.io/apimachinery v0.27.1
go: downloading sigs.k8s.io/yaml v1.3.0
go: downloading github.com/stretchr/testify v1.8.2
go: downloading github.com/go-chi/chi/v5 v5.0.8
go: downloading github.com/go-chi/chi v4.1.2+incompatible
go: downloading github.com/go-git/go-git/v5 v5.6.1
go: downloading github.com/goccy/go-yaml v1.11.0
go: downloading github.com/moby/moby v23.0.6+incompatible
go: downloading github.com/opencontainers/image-spec v1.1.0-rc3
go: downloading sigs.k8s.io/kustomize/api v0.13.4
go: downloading sigs.k8s.io/kustomize/kyaml v0.13.9
go: downloading github.com/anchore/stereoscope v0.0.0-20230412183729-8602f1afc574
go: downloading cuelang.org/go v0.5.0
go: downloading github.com/go-logr/logr v1.2.4
go: downloading k8s.io/klog/v2 v2.100.1
go: downloading github.com/sergi/go-diff v1.3.1
go: downloading github.com/otiai10/copy v1.11.0
go: downloading github.com/distribution/distribution v2.8.2+incompatible
go: downloading github.com/docker/cli v23.0.6+incompatible
go: downloading github.com/fatih/color v1.15.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading golang.org/x/crypto v0.9.0
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading golang.org/x/term v0.8.0
go: downloading github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0
go: downloading github.com/andybalholm/brotli v1.0.4
go: downloading github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5
go: downloading github.com/golang/snappy v0.0.4
go: downloading github.com/klauspost/compress v1.16.5
go: downloading github.com/klauspost/pgzip v1.2.5
go: downloading github.com/nwaples/rardecode v1.1.0
go: downloading github.com/pierrec/lz4/v4 v4.1.15
go: downloading github.com/ulikunitz/xz v0.5.10
go: downloading github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
go: downloading atomicgo.dev/cursor v0.1.1
go: downloading atomicgo.dev/keyboard v0.2.9
go: downloading github.com/gookit/color v1.5.3
go: downloading github.com/lithammer/fuzzysearch v1.1.5
go: downloading github.com/mattn/go-runewidth v0.0.14
go: downloading golang.org/x/text v0.9.0
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.2
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/fsnotify/fsnotify v1.6.0
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading github.com/spf13/afero v1.9.5
go: downloading github.com/spf13/cast v1.5.0
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/anchore/go-logger v0.0.0-20220728155337-03b66a5207d8
go: downloading github.com/sirupsen/logrus v1.9.0
go: downloading github.com/wagoodman/go-partybus v0.0.0-20210627031916-db1f5573bbc5
go: downloading github.com/mattn/go-colorable v0.1.13
go: downloading github.com/rs/zerolog v1.29.1
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading k8s.io/cli-runtime v0.27.1
go: downloading golang.org/x/sync v0.1.0
go: downloading github.com/cyberphone/json-canonicalization v0.0.0-20210823021906-dc406ceaf94b
go: downloading github.com/go-openapi/strfmt v0.21.3
go: downloading github.com/go-openapi/swag v0.22.3
go: downloading github.com/google/trillian v1.5.0
go: downloading github.com/in-toto/in-toto-golang v0.3.4-0.20220709202702-fa494aaa0add
go: downloading github.com/secure-systems-lab/go-securesystemslib v0.4.0
go: downloading github.com/sigstore/rekor v0.7.0
go: downloading github.com/sigstore/sigstore v1.2.1-0.20220512194100-3ed986cc9758
go: downloading github.com/theupdateframework/go-tuf v0.5.2-0.20220930112810-3890c1e7ace4
go: downloading knative.dev/pkg v0.0.0-20220121092305-3ba5d72e310a
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/fluxcd/pkg/apis/kustomize v1.0.0
go: downloading github.com/fluxcd/pkg/apis/meta v1.0.0
go: downloading k8s.io/apiextensions-apiserver v0.27.1
go: downloading sigs.k8s.io/controller-runtime v0.14.6
go: downloading github.com/fluxcd/pkg/apis/acl v0.1.0
go: downloading github.com/cyphar/filepath-securejoin v0.2.3
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading github.com/xeipuuv/gojsonschema v1.2.0
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading github.com/google/gofuzz v1.2.0
go: downloading sigs.k8s.io/structured-merge-diff/v4 v4.2.3
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/imdario/mergo v0.3.13
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5
go: downloading github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8
go: downloading github.com/go-git/go-billy/v5 v5.4.1
go: downloading github.com/emirpasic/gods v1.18.1
go: downloading golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
go: downloading github.com/Masterminds/sprig/v3 v3.2.3
go: downloading github.com/gosuri/uitable v0.0.4
go: downloading github.com/containerd/containerd v1.7.0
go: downloading github.com/Masterminds/squirrel v1.5.3
go: downloading github.com/jmoiron/sqlx v1.3.5
go: downloading github.com/lib/pq v1.10.7
go: downloading github.com/rubenv/sql-migrate v1.3.1
go: downloading github.com/docker/docker v23.0.5+incompatible
go: downloading github.com/docker/distribution v2.8.1+incompatible
go: downloading github.com/docker/go-connections v0.4.0
go: downloading golang.org/x/sys v0.8.0
go: downloading github.com/gabriel-vasile/mimetype v1.4.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e
go: downloading github.com/sylabs/squashfs v0.6.1
go: downloading github.com/sylabs/sif/v2 v2.8.1
go: downloading github.com/wagoodman/go-progress v0.0.0-20230301185719-21920a456ad5
go: downloading github.com/mitchellh/hashstructure/v2 v2.0.2
go: downloading github.com/acobaugh/osrelease v0.1.0
go: downloading github.com/google/go-cmp v0.5.9
go: downloading github.com/anchore/packageurl-go v0.1.1-0.20230104203445-02e0a6721501
go: downloading github.com/bmatcuk/doublestar/v4 v4.6.0
go: downloading github.com/jinzhu/copier v0.3.5
go: downloading golang.org/x/exp v0.0.0-20230202163644-54bba9f4231b
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/google/gnostic v0.5.7-v3refs
go: downloading golang.org/x/net v0.10.0
go: downloading github.com/mattn/go-isatty v0.0.17
go: downloading github.com/sigstore/fulcio v0.4.1
go: downloading github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220517224237-e6f29200ae04
go: downloading github.com/chrismellard/docker-credential-acr-env v0.0.0-20220119192733-fe33c00cee21
go: downloading github.com/go-openapi/runtime v0.24.2
go: downloading github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
go: downloading github.com/containerd/console v1.0.3
go: downloading github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e
go: downloading github.com/rivo/uniseg v0.4.4
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/subosito/gotenv v1.4.2
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/magiconair/properties v1.8.7
go: downloading github.com/pelletier/go-toml/v2 v2.0.6
go: downloading github.com/pelletier/go-toml v1.9.5
go: downloading github.com/adrg/xdg v0.4.0
go: downloading github.com/anchore/go-version v1.2.2-0.20200701162849-18adb9c92b9b
go: downloading github.com/fvbommel/sortorder v1.0.2
go: downloading k8s.io/metrics v0.27.1
go: downloading github.com/derailed/tcell/v2 v2.3.1-rc.3
go: downloading github.com/derailed/tview v0.8.1
go: downloading github.com/sahilm/fuzzy v0.1.0
go: downloading github.com/atotto/clipboard v0.1.4
go: downloading github.com/cenkalti/backoff/v4 v4.2.0
go: downloading github.com/evanphx/json-patch v5.6.0+incompatible
go: downloading github.com/google/uuid v1.3.0
go: downloading github.com/containerd/stargz-snapshotter/estargz v0.14.3
go: downloading github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
go: downloading github.com/go-openapi/errors v0.20.3
go: downloading github.com/oklog/ulid v1.3.1
go: downloading go.mongodb.org/mongo-driver v1.10.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading github.com/shibumi/go-pathspec v1.3.0
go: downloading cloud.google.com/go/storage v1.22.1
go: downloading cloud.google.com/go v0.110.0
go: downloading google.golang.org/api v0.114.0
go: downloading github.com/go-openapi/validate v0.22.0
go: downloading github.com/letsencrypt/boulder v0.0.0-20220929215747-76583552c2be
go: downloading golang.org/x/oauth2 v0.7.0
go: downloading github.com/jonboulle/clockwork v0.3.0
go: downloading k8s.io/component-helpers v0.27.1
go: downloading github.com/daviddengcn/go-colortext v1.0.0
go: downloading github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
go: downloading github.com/moby/term v0.0.0-20221205130635-1aeaba878587
go: downloading sigs.k8s.io/kustomize/kustomize/v5 v5.0.1
go: downloading github.com/lithammer/dedent v1.1.0
go: downloading github.com/chai2010/gettext-go v1.0.2
go: downloading github.com/MakeNowJust/heredoc v1.0.0
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/moby/spdystream v0.2.0
go: downloading github.com/acomagu/bufpipe v1.0.4
go: downloading github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
go: downloading github.com/go-git/gcfg v1.5.0
go: downloading github.com/pjbgf/sha1cd v0.3.0
go: downloading github.com/Masterminds/goutils v1.1.1
go: downloading github.com/huandu/xstrings v1.4.0
go: downloading github.com/shopspring/decimal v1.3.1
go: downloading github.com/BurntSushi/toml v1.2.1
go: downloading github.com/gobwas/glob v0.2.3
go: downloading k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a
go: downloading github.com/lann/builder v0.0.0-20180802200727-47ae307949d0
go: downloading github.com/go-gorp/gorp/v3 v3.0.5
go: downloading github.com/docker/go-units v0.5.0
go: downloading github.com/Microsoft/go-winio v0.6.1
go: downloading github.com/go-errors/errors v1.4.2
go: downloading google.golang.org/protobuf v1.30.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/becheran/wildmatch-go v1.0.0
go: downloading google.golang.org/grpc v1.54.0
go: downloading github.com/CycloneDX/cyclonedx-go v0.7.1
go: downloading github.com/spdx/tools-golang v0.5.0
go: downloading github.com/olekukonko/tablewriter v0.0.5
go: downloading github.com/facebookincubator/nvdtools v0.1.5
go: downloading github.com/vbatts/go-mtree v0.5.3
go: downloading github.com/dustin/go-humanize v1.0.1
go: downloading golang.org/x/mod v0.10.0
go: downloading github.com/vifraa/gopom v0.2.1
go: downloading github.com/deitch/magic v0.0.0-20230404182410-1ff89d7342da
go: downloading github.com/knqyf263/go-rpmdb v0.0.0-20230301153543-ba94b245509b
go: downloading github.com/sassoftware/go-rpmutils v0.2.0
go: downloading github.com/microsoft/go-rustaudit v0.0.0-20220730194248-4b17361d90a5
go: downloading github.com/cockroachdb/apd/v2 v2.0.2
go: downloading golang.org/x/time v0.3.0
go: downloading github.com/docker/docker-credential-helpers v0.7.0
go: downloading github.com/coreos/go-oidc/v3 v3.4.0
go: downloading github.com/google/certificate-transparency-go v1.1.3
go: downloading github.com/prometheus/client_golang v1.14.0
go: downloading google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd
go: downloading github.com/segmentio/ksuid v1.0.4
go: downloading github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
go: downloading gopkg.in/square/go-jose.v2 v2.6.0
go: downloading github.com/aws/aws-sdk-go-v2 v1.16.16
go: downloading github.com/aws/aws-sdk-go-v2/config v1.17.8
go: downloading github.com/aws/aws-sdk-go-v2/service/ecr v1.15.0
go: downloading github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.12.0
go: downloading github.com/aws/smithy-go v1.13.3
go: downloading github.com/Azure/go-autorest/autorest/azure/auth v0.5.11
go: downloading github.com/Azure/go-autorest/autorest v0.11.28
go: downloading github.com/Azure/go-autorest v14.2.0+incompatible
go: downloading github.com/go-piv/piv-go v1.10.0
go: downloading github.com/ThalesIgnite/crypto11 v1.2.5
go: downloading github.com/miekg/pkcs11 v1.1.1
go: downloading github.com/open-policy-agent/opa v0.45.0
go: downloading github.com/blang/semver v3.5.1+incompatible
go: downloading github.com/xanzy/go-gitlab v0.73.1
go: downloading github.com/wagoodman/jotframe v0.0.0-20211129225309-56b0d0a4aebb
go: downloading github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7
go: downloading github.com/peterbourgon/diskv v2.0.1+incompatible
go: downloading github.com/gdamore/encoding v1.0.0
go: downloading github.com/lucasb-eyer/go-colorful v1.2.0
go: downloading github.com/derailed/popeye v0.11.1
go: downloading github.com/rakyll/hey v0.1.4
go: downloading github.com/vbatts/tar-split v0.11.3
go: downloading github.com/josharian/intern v1.0.0
go: downloading cloud.google.com/go/compute/metadata v0.2.3
go: downloading cloud.google.com/go/compute v1.19.1
go: downloading cloud.google.com/go/iam v0.13.0
go: downloading github.com/googleapis/gax-go/v2 v2.7.1
go: downloading github.com/googleapis/gax-go v2.0.2+incompatible
go: downloading github.com/googleapis/go-type-adapters v1.0.0
go: downloading github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d
go: downloading github.com/opentracing/opentracing-go v1.2.0
go: downloading github.com/go-openapi/analysis v0.21.4
go: downloading github.com/go-openapi/jsonpointer v0.19.6
go: downloading github.com/go-openapi/loads v0.21.2
go: downloading github.com/go-openapi/spec v0.20.7
go: downloading go.uber.org/zap v1.24.0
go: downloading github.com/go-playground/validator/v10 v10.11.0
go: downloading github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399
go: downloading github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d
go: downloading github.com/fatih/camelcase v1.0.0
go: downloading github.com/go-openapi/jsonreference v0.20.1
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/cloudflare/circl v1.1.0
go: downloading github.com/kevinburke/ssh_config v1.2.0
go: downloading github.com/skeema/knownhosts v1.1.0
go: downloading github.com/xanzy/ssh-agent v0.3.3
go: downloading gopkg.in/warnings.v0 v0.1.2
go: downloading k8s.io/apiserver v0.27.1
go: downloading github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1
go: downloading github.com/moby/locker v1.0.1
go: downloading github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0
go: downloading golang.org/x/tools v0.8.0
go: downloading github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00
go: downloading github.com/xlab/treeprint v1.1.0
go: downloading github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
go: downloading github.com/therootcompany/xz v1.0.1
go: downloading github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092
go: downloading github.com/anchore/go-macholibre v0.0.0-20220308212642-53e6d0aaf6fb
go: downloading github.com/google/licensecheck v0.3.1
go: downloading github.com/DataDog/zstd v1.4.5
go: downloading github.com/mpvl/unique v0.0.0-20150818121801-cbe035fff7de
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.2.0
go: downloading github.com/prometheus/client_model v0.3.0
go: downloading github.com/prometheus/common v0.37.0
go: downloading github.com/prometheus/procfs v0.8.0
go: downloading github.com/hashicorp/golang-lru v0.5.4
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3
go: downloading github.com/grpc-ecosystem/grpc-gateway v1.16.0
go: downloading github.com/goadesign/goa v2.2.5+incompatible
go: downloading github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.12.21
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.17
go: downloading github.com/aws/aws-sdk-go-v2/internal/ini v1.3.24
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.11.23
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.6
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.16.19
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.23
go: downloading github.com/jmespath/go-jmespath v0.4.0
go: downloading github.com/Azure/go-autorest/autorest/adal v0.9.21
go: downloading github.com/Azure/go-autorest/autorest/azure/cli v0.4.6
go: downloading github.com/Azure/go-autorest/logger v0.2.1
go: downloading github.com/dimchansky/utfbom v1.1.1
go: downloading github.com/Azure/azure-sdk-for-go v66.0.0+incompatible
go: downloading google.golang.org/appengine v1.6.7
go: downloading github.com/fullstorydev/grpcurl v1.8.7
go: downloading github.com/golang/mock v1.6.0
go: downloading go.etcd.io/etcd/etcdctl/v3 v3.6.0-alpha.0
go: downloading go.etcd.io/etcd/v3 v3.6.0-alpha.0
go: downloading github.com/transparency-dev/merkle v0.0.1
go: downloading github.com/golang/glog v1.0.0
go: downloading github.com/ghodss/yaml v1.0.0
go: downloading github.com/thales-e-security/pool v0.0.2
go: downloading github.com/spiffe/go-spiffe/v2 v2.1.1
go: downloading github.com/google/go-github/v42 v42.0.0
go: downloading github.com/google/go-querystring v1.1.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading github.com/hashicorp/go-retryablehttp v0.7.1
go: downloading github.com/google/btree v1.1.2
go: downloading github.com/aws/aws-sdk-go v1.44.114
go: downloading go.opencensus.io v0.24.0
go: downloading go.uber.org/atomic v1.10.0
go: downloading go.uber.org/multierr v1.8.0
go: downloading github.com/jedisct1/go-minisign v0.0.0-20211028175153-1c139d1cc84b
go: downloading github.com/sassoftware/relic v0.0.0-20210427151427-dfb082b79b74
go: downloading github.com/tent/canonical-json-go v0.0.0-20130607151641-96e4ba3a7613
go: downloading github.com/go-playground/universal-translator v0.18.0
go: downloading github.com/leodido/go-urn v1.2.1
go: downloading github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1
go: downloading github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
go: downloading go.opentelemetry.io/otel v1.14.0
go: downloading go.opentelemetry.io/otel/trace v1.14.0
go: downloading github.com/morikuni/aec v1.0.0
go: downloading github.com/go-restruct/restruct v1.2.0-alpha
go: downloading github.com/emicklei/go-restful/v3 v3.10.1
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4
go: downloading github.com/PaesslerAG/jsonpath v0.1.1
go: downloading goa.design/goa v2.2.5+incompatible
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.17
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.17
go: downloading github.com/Azure/go-autorest/tracing v0.6.0
go: downloading github.com/Azure/go-autorest/autorest/date v0.3.0
go: downloading github.com/golang-jwt/jwt/v4 v4.4.2
go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible
go: downloading github.com/jhump/protoreflect v1.13.0
go: downloading go.etcd.io/etcd/client/v2 v2.306.0-alpha.0
go: downloading go.etcd.io/etcd/etcdutl/v3 v3.6.0-alpha.0
go: downloading go.etcd.io/etcd/tests/v3 v3.6.0-alpha.0
go: downloading github.com/zeebo/errs v1.2.2
go: downloading github.com/OneOfOne/xxhash v1.2.8
go: downloading github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
go: downloading github.com/tchap/go-patricia/v2 v2.3.1
go: downloading github.com/yashtewari/glob-intersection v0.1.0
go: downloading github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.2.3
go: downloading github.com/go-playground/locales v0.14.0
go: downloading github.com/gorilla/mux v1.8.0
go: downloading go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5
go: downloading github.com/PaesslerAG/gval v1.0.0
go: downloading github.com/envoyproxy/go-control-plane v0.10.3
go: downloading bitbucket.org/creachadair/shell v0.0.7
go: downloading github.com/urfave/cli v1.22.12
go: downloading go.etcd.io/etcd/api/v3 v3.6.0-alpha.0
go: downloading go.etcd.io/etcd/pkg/v3 v3.6.0-alpha.0
go: downloading go.etcd.io/etcd/client/pkg/v3 v3.6.0-alpha.0
go: downloading github.com/bgentry/speakeasy v0.1.0
go: downloading go.etcd.io/etcd/client/v3 v3.6.0-alpha.0
go: downloading gopkg.in/cheggaaa/pb.v1 v1.0.28
go: downloading github.com/coreos/go-semver v0.3.0
go: downloading go.etcd.io/bbolt v1.3.7
go: downloading go.etcd.io/etcd/raft/v3 v3.6.0-alpha.0
go: downloading go.etcd.io/etcd/server/v3 v3.6.0-alpha.0
go: downloading github.com/emicklei/proto v1.10.0
go: downloading github.com/protocolbuffers/txtpbfmt v0.0.0-20220428173112-74888fd59c2b
go: downloading github.com/agnivade/levenshtein v1.1.1
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading github.com/docker/go-metrics v0.0.1
go: downloading github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b
go: downloading github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe
go: downloading github.com/soheilhy/cmux v0.1.5
go: downloading github.com/envoyproxy/protoc-gen-validate v0.9.1
go: downloading github.com/coreos/go-systemd/v22 v22.5.0
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0
go: downloading github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
go: downloading github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0
go: downloading go.opentelemetry.io/otel/sdk v1.14.0
go: downloading gopkg.in/natefinch/lumberjack.v2 v2.0.0
go: downloading github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2
go: downloading github.com/census-instrumentation/opencensus-proto v0.4.1
go: downloading go.opentelemetry.io/otel/metric v0.37.0
go: downloading github.com/gorilla/websocket v1.4.2
go: downloading go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0
go: downloading go.opentelemetry.io/proto/otlp v0.19.0
go: downloading github.com/benbjohnson/clock v1.1.0
go: downloading cloud.google.com/go/storage v1.28.1
go: downloading github.com/google/trillian v1.5.2
github.com/defenseunicorns/zarf/src/cmd/tools imports
	github.com/sigstore/cosign/pkg/cosign imports
	github.com/google/trillian/merkle/logverifier: cannot find module providing package github.com/google/trillian/merkle/logverifier
github.com/defenseunicorns/zarf/src/cmd/tools imports
	github.com/sigstore/cosign/pkg/cosign imports
	github.com/google/trillian/merkle/rfc6962: cannot find module providing package github.com/google/trillian/merkle/rfc6962
go: downloading github.com/armon/go-metrics v0.4.0
go: downloading github.com/aws/aws-sdk-go-v2/service/kms v1.10.0
go: downloading github.com/go-rod/rod v0.106.6
go: downloading github.com/hashicorp/go-hclog v1.2.0
go: downloading github.com/hashicorp/go-plugin v1.4.3
go: downloading github.com/hashicorp/go-secure-stdlib/parseutil v0.1.2
go: downloading github.com/hashicorp/go-uuid v1.0.2
go: downloading github.com/hashicorp/go-version v1.4.0
go: downloading github.com/hashicorp/vault/api v1.5.0
go: downloading github.com/hashicorp/vault/sdk v0.4.1
go: downloading github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87
go: downloading github.com/ysmood/gson v0.7.1
go: downloading github.com/ysmood/leakless v0.7.0
go: warning: go.mongodb.org/[email protected]: retracted by module author: Contains a possible data corruption bug in RewrapManyDataKey when using libmongocrypt versions less than 1.5.2.
go: to switch to the latest unretracted version, run:
	go get go.mongodb.org/mongo-driver@latest

@netlify
Copy link

netlify bot commented Apr 25, 2023

Deploy Preview for zarf-docs canceled.

Name Link
🔨 Latest commit e55fc5f
🔍 Latest deploy log https://app.netlify.com/sites/zarf-docs/deploys/64629c03a655a20008d88387

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 17 times, most recently from 20ba913 to 39354cb Compare May 2, 2023 14:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from e1d4e24 to d5c767b Compare May 4, 2023 15:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from f5354d3 to fb12608 Compare May 11, 2023 00:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fb12608 to 044c5c0 Compare May 11, 2023 12:21
@renovate
Copy link
Contributor Author

renovate bot commented May 11, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@Racer159 Racer159 requested a review from a team as a code owner May 11, 2023 22:09
@Racer159 Racer159 merged commit 8d905f7 into main May 15, 2023
@Racer159 Racer159 deleted the renovate/all-minor-patch branch May 15, 2023 22:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants