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

fix(deps): update all non-major dependencies #1430

Merged
merged 7 commits into from
Mar 22, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 14, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@​defense-unicorns/unicorn-ui 0.0.36 -> 0.0.37 age adoption passing confidence dependencies patch
@floating-ui/dom (source) 1.2.4 -> 1.2.5 age adoption passing confidence dependencies patch
@sveltejs/kit (source) 1.11.0 -> 1.12.0 age adoption passing confidence devDependencies minor
actions/checkout v3.3.0 -> v3.4.0 age adoption passing confidence action minor
github.com/defenseunicorns/syft v0.75.0-DU -> v0.75.0 age adoption passing confidence replace patch
github.com/docker/cli v20.10.22+incompatible -> v20.10.23+incompatible age adoption passing confidence require patch
github.com/go-git/go-git/v5 v5.6.0 -> v5.6.1 age adoption passing confidence require patch
github.com/google/go-containerregistry v0.13.0 -> v0.14.0 age adoption passing confidence require minor
github.com/pterm/pterm v0.12.55 -> v0.12.56 age adoption passing confidence require patch
k8s.io/api v0.26.2 -> v0.26.3 age adoption passing confidence require patch
k8s.io/apimachinery v0.26.2 -> v0.26.3 age adoption passing confidence require patch
k8s.io/client-go v0.26.2 -> v0.26.3 age adoption passing confidence require patch
k8s.io/component-base v0.26.2 -> v0.26.3 age adoption passing confidence require patch
k8s.io/kubectl v0.26.2 -> v0.26.3 age adoption passing confidence require patch
oras.land/oras-go/v2 v2.0.0 -> v2.0.2 age adoption passing confidence require patch
prettier (source) 2.8.4 -> 2.8.5 age adoption passing confidence devDependencies patch
sass 1.59.2 -> 1.59.3 age adoption passing confidence devDependencies patch
sigs.k8s.io/kustomize/api v0.12.1 -> v0.13.2 age adoption passing confidence require minor
svelte (source) 3.56.0 -> 3.57.0 age adoption passing confidence devDependencies minor
svelte-preprocess 5.0.1 -> 5.0.3 age adoption passing confidence devDependencies patch
vite (source) 4.1.4 -> 4.2.1 age adoption passing confidence devDependencies minor

Release Notes

floating-ui/floating-ui

v1.2.5

Compare Source

Bug Fixes

  • fix: don't skip initial ResizeObserver callback update in autoUpdate (#​2232)

    This runs two updates on mount instead of one when elementResize is enabled. When dealing with frameworks that use inside-out (down-up) initialization of effects/rendering, like React, children are positioned before their parent positioned which meant they were positioned relative to the (0, 0) coordinates, which is incorrect. This problem only presents itself when the child and parent both try to position themselves at the same time on mount — for example, opening a menu and its submenu simultaneously.

    By not skipping this update, this issue isn't present since children reposition themselves after their parents have been positioned.

sveltejs/kit

v1.12.0

Compare Source

Minor Changes
  • feat: expose submitter in use:enhance SubmitFunction (#​9425)

  • feat: add data-sveltekit-keepfocus and data-sveltekit-replacestate options to links (requires Svelte version 3.56 for type-checking with svelte-check) (#​9019)

Patch Changes
  • fix: don't start debugger on 404s (#​9424)

  • fix: handle srcset attributes with newline after comma (#​9388)

  • fix: allow tsconfig to extend multiple other tsconfigs (#​9413)

  • chore: update Undici to 5.21.0 (#​9417)

actions/checkout

v3.4.0

Compare Source

defenseunicorns/syft

v0.75.0

Compare Source

docker/cli

v20.10.23+incompatible

Compare Source

go-git/go-git

v5.6.1

Compare Source

What's Changed

Full Changelog: go-git/go-git@v5.6.0...v5.6.1

google/go-containerregistry

v0.14.0

Compare Source

Changelog

Container Images

https://gcr.io/go-containerregistry/crane:v0.14.0
https://gcr.io/go-containerregistry/gcrane:v0.14.0

For example:

docker pull gcr.io/go-containerregistry/crane:v0.14.0
docker pull gcr.io/go-containerregistry/gcrane:v0.14.0
pterm/pterm

v0.12.56

Compare Source

What's Changed

Fixes 🔧

Full Changelog: pterm/pterm@v0.12.55...v0.12.56

kubernetes/apimachinery

v0.26.3

Compare Source

kubernetes/client-go

v0.26.3

Compare Source

kubernetes/component-base

v0.26.3

Compare Source

kubernetes/kubectl

v0.26.3

Compare Source

oras-project/oras-go

v2.0.2

Compare Source

Bug Fixes

  • Fix #​461: Untagged manifests might be accidentally removed from the index.json file in OCI layouts

Other Changes

  • Improve repository governance

Detailed Commits

Full Changelog: oras-project/oras-go@v2.0.1...v2.0.2

v2.0.1

Compare Source

Bug Fixes

  • fix #​449: index.json is not generated for OCI Stores that contain no manifests
  • fix #​431: Some unit tests fail on Mac

Other Changes

  • Update the Go support window to [1.19, 1.20] (#​442)
  • Improve documentation and repository governance

Detailed Commits

New Contributors

Full Changelog: oras-project/oras-go@v2.0.0...v2.0.1

prettier/prettier

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @​myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting,
it will be interpreted as a printWidth of Infinity rather than being ignored
(which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
sass/dart-sass

v1.59.3

Compare Source

  • Fix a performance regression introduced in 1.59.0.

  • The NPM release of 1.59.0 dropped support for Node 12 without actually
    indicating so in its pubspec. This release temporarily adds back support so
    that the latest Sass version that declares it supports Node 12 actually does
    so. However, Node 12 is now end-of-life, so we will drop support for it
    properly in an upcoming release.

sveltejs/svelte

v3.57.0

Compare Source

  • Add <svelte:document> (#​3310)
  • Add a11y no-noninteractive-element-to-interactive-role (#​8167)
  • Stop intro transition from triggering incorrectly (#​6152, #​6812)
  • Support computed and literal properties when destructuring objects in the template (#​6609)
  • Give style: directive precedence over style= attribute (#​7475)
  • Select <option> with selected attribute when initial state is undefined (#​8361)
  • Prevent derived store callbacks after store is unsubscribed from (#​8364)
  • Account for bind:group members being spread across multiple control flow blocks (#​8372)
  • Revert buggy reactive statement optimization (#​8374)
  • Support CSS units in the fly and blur transitions (#​7623)
sveltejs/svelte-preprocess

v5.0.3

Compare Source

Bug Fixes

v5.0.2

Compare Source

Bug Fixes
vitejs/vite

v4.2.1

Compare Source

v4.2.0

Compare Source

Vite 4.2 is out!

Support env variables replacement in HTML files

Vite now supports replacing env variables in HTML files. Any properties in import.meta.env can be used in HTML files with a special %ENV_NAME% syntax:

<h1>Vite is running in %MODE%</h1>
<p>Using data from %VITE_API_URL%</p>
Sourcemaps improvements

The Chrome Dev Tools team has been working to improve the DX of Vite and Vite-powered frameworks in the dev tools. Vite 4.2 brings an improved experience and tools for framework authors to hide 3rd party code and build artifacts from the user from console log traces using server.sourcemapIgnoreList and build.rollupOptions.output.sourcemapIgnoreList.

ESM subpath imports

Vite 4.2 now supports subpath imports, thanks to @​lukeed05's resolve.exports library.

TypeScript 5 support

Vite 4.2 also supports TypeScript 5's tsconfig extends array format, thanks to tsconfck.

esbuild 0.17

esbuild v0.17.0 improved the design of its incremental, watch, and serve APIs. Check out #​11908 for the rationale of why we didn't consider the backward-incompatible changes breaking for our use cases. The updated esbuild design now allows Vite to properly cancel in-fly builds and improve server restarts.

Use Rollup types from the vite package

Expose Rollup types as a namespace. This is helpful to avoid type conflicts because of different versions of Rollup types in environments like vite-ecosystem-ci (#​12316).

import type { Rollup } from 'vite'
Português Docs Translation

The Vite documentation is now translated to Português at pt.vitejs.dev thanks to Nazaré Da Piedade .

Features
Bug Fixes
Previous Changelogs
4.2.0-beta.2 (2023-03-13)

See 4.2.0-beta.2 changelog

4.2.0-beta.1 (2023-03-07)

See 4.2.0-beta.1 changelog

4.2.0-beta.0 (2023-02-27)

See 4.2.0-beta.0 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.

@renovate
Copy link
Contributor Author

renovate bot commented Mar 14, 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" docker.io/containerbase/sidecar bash -l -c "install-tool golang 1.20.2 && 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/defenseunicorns/syft v0.75.0
go: downloading github.com/mholt/archiver/v3 v3.5.1
go: downloading github.com/derailed/k9s v0.27.3
go: downloading github.com/pterm/pterm v0.12.56
go: downloading github.com/google/go-containerregistry v0.14.0
go: downloading github.com/spf13/cobra v1.6.1
go: downloading github.com/spf13/viper v1.15.0
go: downloading k8s.io/client-go v0.26.3
go: downloading oras.land/oras-go/v2 v2.0.2
go: downloading github.com/defenseunicorns/oras-go v1.2.3
go: downloading k8s.io/component-base v0.26.3
go: downloading k8s.io/kubectl v0.26.3
go: downloading github.com/fluxcd/helm-controller/api v0.31.1
go: downloading github.com/fluxcd/source-controller/api v0.36.0
go: downloading k8s.io/api v0.26.3
go: downloading k8s.io/apimachinery v0.26.3
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.10.0
go: downloading helm.sh/helm/v3 v3.11.2
go: downloading github.com/moby/moby v23.0.1+incompatible
go: downloading github.com/opencontainers/image-spec v1.1.0-rc2
go: downloading sigs.k8s.io/kustomize/api v0.13.2
go: downloading sigs.k8s.io/kustomize/kyaml v0.13.9
go: downloading github.com/anchore/stereoscope v0.0.0-20230301191755-abfb374a1122
go: downloading github.com/go-logr/logr v1.2.3
go: downloading k8s.io/klog/v2 v2.90.1
go: downloading github.com/otiai10/copy v1.9.0
go: downloading github.com/distribution/distribution v2.8.1+incompatible
go: downloading github.com/docker/cli v23.0.1+incompatible
go: downloading github.com/fatih/color v1.15.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/sigstore/cosign v1.5.2
go: downloading golang.org/x/crypto v0.7.0
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading golang.org/x/term v0.6.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.0
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 github.com/mattn/go-colorable v0.1.13
go: downloading github.com/rs/zerolog v1.29.0
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading k8s.io/cli-runtime v0.26.3
go: downloading atomicgo.dev/cursor v0.1.1
go: downloading atomicgo.dev/keyboard v0.2.9
go: downloading github.com/gookit/color v1.5.2
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.8.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/containerd/stargz-snapshotter/estargz v0.14.3
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/mitchellh/go-homedir v1.1.0
go: downloading github.com/fluxcd/pkg/apis/kustomize v0.8.1
go: downloading github.com/fluxcd/pkg/apis/meta v0.19.1
go: downloading k8s.io/apiextensions-apiserver v0.26.2
go: downloading sigs.k8s.io/controller-runtime v0.14.5
go: downloading github.com/fluxcd/pkg/apis/acl v0.1.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 gopkg.in/inf.v0 v0.9.1
go: downloading k8s.io/utils v0.0.0-20221128185143-99ec85e7a448
go: downloading github.com/go-git/go-billy/v5 v5.4.1
go: downloading github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8
go: downloading github.com/imdario/mergo v0.3.13
go: downloading github.com/sergi/go-diff v1.3.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/semver/v3 v3.2.0
go: downloading github.com/Masterminds/sprig/v3 v3.2.3
go: downloading github.com/gosuri/uitable v0.0.4
go: downloading github.com/docker/docker v23.0.1+incompatible
go: downloading golang.org/x/sync v0.1.0
go: downloading github.com/containerd/containerd v1.6.18
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 golang.org/x/sys v0.6.0
go: downloading github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e
go: downloading github.com/sylabs/sif/v2 v2.8.1
go: downloading github.com/sylabs/squashfs v0.6.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 github.com/hashicorp/go-multierror v1.1.1
go: downloading golang.org/x/exp v0.0.0-20230202163644-54bba9f4231b
go: downloading golang.org/x/net v0.8.0
go: downloading github.com/docker/distribution v2.8.1+incompatible
go: downloading github.com/docker/go-connections v0.4.0
go: downloading github.com/mattn/go-isatty v0.0.17
go: downloading github.com/sigstore/fulcio v0.4.1
go: downloading github.com/sigstore/sigstore v1.2.1-0.20220512194100-3ed986cc9758
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/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220517224237-e6f29200ae04
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/chrismellard/docker-credential-acr-env v0.0.0-20220119192733-fe33c00cee21
go: downloading github.com/sigstore/rekor v0.7.0
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/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
go: downloading github.com/fvbommel/sortorder v1.0.2
go: downloading k8s.io/metrics v0.26.3
go: downloading github.com/adrg/xdg v0.4.0
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/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/anchore/go-version v1.2.2-0.20200701162849-18adb9c92b9b
go: downloading github.com/vbatts/tar-split v0.11.2
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 golang.org/x/oauth2 v0.6.0
go: downloading github.com/pelletier/go-toml v1.9.5
go: downloading k8s.io/kube-openapi v0.0.0-20230109183929-3758b55a6596
go: downloading github.com/jonboulle/clockwork v0.3.0
go: downloading k8s.io/component-helpers v0.26.3
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/v4 v4.5.7
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.0
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/go-git/gcfg v1.5.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/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/mitchellh/copystructure v1.2.0
go: downloading github.com/shopspring/decimal v1.3.1
go: downloading github.com/cyphar/filepath-securejoin v0.2.3
go: downloading github.com/xeipuuv/gojsonschema v1.2.0
go: downloading github.com/BurntSushi/toml v1.2.1
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/google/gnostic v0.5.7-v3refs
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/docker/go-units v0.5.0
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/go-errors/errors v1.4.2
go: downloading google.golang.org/protobuf v1.29.0
go: downloading github.com/gabriel-vasile/mimetype v1.4.0
go: downloading github.com/becheran/wildmatch-go v1.0.0
go: downloading google.golang.org/grpc v1.52.0
go: downloading github.com/CycloneDX/cyclonedx-go v0.7.1-0.20221222100750-41a1ac565cce
go: downloading github.com/spdx/tools-golang v0.5.0-rc1
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.2
go: downloading github.com/dustin/go-humanize v1.0.1
go: downloading golang.org/x/mod v0.9.0
go: downloading github.com/vifraa/gopom v0.2.1
go: downloading github.com/knqyf263/go-rpmdb v0.0.0-20221030135625-4082a22221ce
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/hashicorp/errwrap v1.1.0
go: downloading golang.org/x/time v0.3.0
go: downloading github.com/Microsoft/go-winio v0.6.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/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/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/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-20230124163310-31e0e69b6fc2
go: downloading cloud.google.com/go/storage v1.22.1
go: downloading cloud.google.com/go v0.107.0
go: downloading google.golang.org/api v0.108.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/shibumi/go-pathspec v1.3.0
go: downloading github.com/go-openapi/runtime v0.24.2
go: downloading github.com/go-openapi/validate v0.22.0
go: downloading github.com/letsencrypt/boulder v0.0.0-20220929215747-76583552c2be
go: downloading github.com/xanzy/go-gitlab v0.73.1
go: downloading github.com/ThalesIgnite/crypto11 v1.2.5
go: downloading github.com/miekg/pkcs11 v1.1.1
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.10.1
go: downloading github.com/rakyll/hey v0.1.4
go: downloading github.com/wagoodman/jotframe v0.0.0-20211129225309-56b0d0a4aebb
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/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
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 github.com/cloudflare/circl v1.1.0
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading k8s.io/apiserver v0.26.2
go: downloading github.com/moby/locker v1.0.1
go: downloading github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0
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/DataDog/zstd v1.4.5
go: downloading golang.org/x/tools v0.7.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.1.2
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/grpc-ecosystem/go-grpc-middleware v1.3.0
go: downloading github.com/goadesign/goa v2.2.5+incompatible
go: downloading go.uber.org/zap v1.24.0
go: downloading cloud.google.com/go/compute/metadata v0.2.3
go: downloading cloud.google.com/go/compute v1.18.0
go: downloading cloud.google.com/go/iam v0.8.0
go: downloading github.com/googleapis/gax-go/v2 v2.7.0
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/aws/aws-sdk-go-v2/credentials v1.12.21
go: downloading github.com/aws/aws-sdk-go-v2/internal/ini v1.3.24
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.17
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/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 github.com/go-playground/validator/v10 v10.11.0
go: downloading github.com/blang/semver v3.5.1+incompatible
go: downloading github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399
go: downloading github.com/google/go-github/v42 v42.0.0
go: downloading github.com/thales-e-security/pool v0.0.2
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 github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1
go: downloading github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/morikuni/aec v1.0.0
go: downloading github.com/go-restruct/restruct v1.2.0-alpha
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/golang/glog v1.0.0
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4
go: downloading github.com/PaesslerAG/jsonpath v0.1.1
go: downloading go.uber.org/atomic v1.10.0
go: downloading go.uber.org/multierr v1.8.0
go: downloading goa.design/goa v2.2.5+incompatible
go: downloading go.opencensus.io v0.24.0
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.17
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.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/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 modernc.org/sqlite v1.17.3
go: downloading github.com/emicklei/go-restful/v3 v3.9.0
go: downloading github.com/gorilla/mux v1.8.0
go: downloading go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5
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/PaesslerAG/gval v1.0.0
go: downloading github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.2.1
go: downloading github.com/go-playground/locales v0.14.0
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/docker/go-metrics v0.0.1
go: downloading github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1
go: downloading github.com/transparency-dev/merkle v0.0.1
go: downloading bitbucket.org/creachadair/shell v0.0.7
go: downloading github.com/urfave/cli v1.22.7
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.6
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/cncf/xds/go v0.0.0-20211130200136-a8f946100490
go: downloading github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4
go: downloading github.com/soheilhy/cmux v0.1.5
go: downloading github.com/envoyproxy/protoc-gen-validate v0.6.2
go: downloading github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.35.0
go: downloading github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
go: downloading github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.10.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.10.0
go: downloading go.opentelemetry.io/otel v1.10.0
go: downloading go.opentelemetry.io/otel/sdk v1.10.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.3.0
go: downloading go.opentelemetry.io/otel/trace v1.10.0
go: downloading github.com/gorilla/websocket v1.4.2
go: downloading go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.10.0
go: downloading go.opentelemetry.io/proto/otlp v0.19.0
go: downloading github.com/benbjohnson/clock v1.1.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading modernc.org/libc v1.16.7
go: downloading modernc.org/ccgo/v3 v3.16.6
go: downloading modernc.org/cc/v3 v3.36.0
go: downloading modernc.org/mathutil v1.4.1
go: downloading modernc.org/opt v0.1.1
go: downloading modernc.org/memory v1.1.1
go: downloading github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0
go: downloading modernc.org/strutil v1.1.1
go: downloading lukechampine.com/uint128 v1.1.1
go: downloading modernc.org/token v1.0.0
go: downloading cloud.google.com/go/storage v1.27.0
go: downloading github.com/google/trillian v1.5.1
github.com/defenseunicorns/zarf/src/pkg/utils 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/pkg/utils 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: downloading gotest.tools/v3 v3.0.3
go: warning: go.mongodb.org/mongo-driver@v1.10.0: 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 Mar 14, 2023

Deploy Preview for zarf-docs canceled.

Name Link
🔨 Latest commit 6b67b9d
🔍 Latest deploy log https://app.netlify.com/sites/zarf-docs/deploys/641b49223af66c000803c4c4

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from acc17bc to 39fc440 Compare March 14, 2023 20:31
@renovate renovate bot changed the title fix(deps): update module sigs.k8s.io/kustomize/api to v0.13.2 fix(deps): update all non-major dependencies Mar 14, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 65c4b74 to c05bfe1 Compare March 15, 2023 01:03
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Mar 15, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f5effe4 to 05c6447 Compare March 16, 2023 00:34
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 16, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 736ce67 to 43bf616 Compare March 20, 2023 08:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 43bf616 to 1b7b418 Compare March 20, 2023 14:21
@renovate
Copy link
Contributor Author

renovate bot commented Mar 20, 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.

Copy link
Contributor

@Racer159 Racer159 left a comment

Choose a reason for hiding this comment

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

lgtm

@Racer159 Racer159 merged commit 31ba5aa into main Mar 22, 2023
@Racer159 Racer159 deleted the renovate/all-minor-patch branch March 22, 2023 19:02
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.

1 participant