-
Notifications
You must be signed in to change notification settings - Fork 11
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: adds --list-images arg to inspect #599
Conversation
cabdaaa
to
cee3f39
Compare
Aight fellas, finally got a chance to look through this PR. Based on our conversation last week, I think we need to rework the approach to this problem. Instead of grabbing a ref from the Before this can be done cleanly, I think these 2 tickets to refactor the underlying OCI metadata will need to be completed. We'll be starting work on these in the next day or so. |
cee3f39
to
0605b37
Compare
277681b
to
6540cc6
Compare
595b32c
to
4af54fe
Compare
Paired with @eFAILution and refactored this PR to introduce the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good. paired on a portion and tested different use cases locally.
@@ -107,6 +107,13 @@ Inspect the `uds-bundle.yaml` of a bundle | |||
1. From an OCI registry: `uds inspect oci:https://ghcr.io/defenseunicorns/dev/<name>:<tag>` | |||
1. From your local filesystem: `uds inspect uds-bundle-<name>.tar.zst` | |||
|
|||
#### Viewing Images in a Bundle | |||
It is possible derive images from a `uds-bundle.yaml`. This can be useful for situations where you need to know what images will be bundled before you actually create the bundle. This is accomplished with the `--list-images`. For example: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is possible derive images from a `uds-bundle.yaml`. This can be useful for situations where you need to know what images will be bundled before you actually create the bundle. This is accomplished with the `--list-images`. For example: | |
It is possible to derive images from a `uds-bundle.yaml`. This can be useful for situations where you need to know what images will be bundled before you actually create the bundle. This is accomplished with `--list-images`. For example: |
|
||
`uds inspect ./uds-bundle.yaml --list-images` | ||
|
||
This command will return a list of images derived from the bundle's packages and taking into account optional and required package components. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This command will return a list of images derived from the bundle's packages and taking into account optional and required package components. | |
This command will return a list of images derived from the bundle's packages, taking into account optional and required package components. |
// handle --list-images flag | ||
if b.cfg.InspectOpts.ListImages { | ||
err := utils.CheckYAMLSourcePath(b.cfg.InspectOpts.Source) | ||
if err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit, but is there a particular reason to have the err check separate on this one but "inlined" (if that's the right word) for the next call. just wondering if we can make them all look the same for consistency.
Also, do you think there's any value in extracting the list image functions into a separate function listImages()
that gets called in Inspect()
. Feels like it's getting a little long.
return fmt.Errorf("source must have .yaml or yml file extension") | ||
} | ||
// Check if the file exists | ||
if _, err := os.Stat(source); os.IsNotExist(err) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this looks good to me, but also wondering if we want to leverage the pkg/helpers
more. there's a InvalidPath
method i used for the FileValues handling.
@@ -32,6 +32,7 @@ type UDSBundle struct { | |||
type Package struct { | |||
Name string `json:"name" jsonschema:"name=Name of the Zarf package"` | |||
Description string `json:"description,omitempty" jsonschema:"description=Description of the Zarf package"` | |||
Images []string `json:"images,omitempty" jsonschema:"description=List of images included in the Zarf package"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this getting used somewhere? having trouble understanding how it's being used / set.
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli) | patch | `0.11.0` -> `0.11.1` | | [defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli) | patch | `v0.11.0` -> `v0.11.1` | --- ### Release Notes <details> <summary>defenseunicorns/uds-cli (defenseunicorns/uds-cli)</summary> ### [`v0.11.1`](https://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.11.1) [Compare Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.11.0...v0.11.1) ##### What's Changed - chore: run CI tests in parallel, remove alpha status by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/645](https://togithub.com/defenseunicorns/uds-cli/pull/645) - fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/635](https://togithub.com/defenseunicorns/uds-cli/pull/635) - chore: update codeowners by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/647](https://togithub.com/defenseunicorns/uds-cli/pull/647) - docs: add note about UDS_ARCH by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/652](https://togithub.com/defenseunicorns/uds-cli/pull/652) - feat: add file type variables to bundles by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/631](https://togithub.com/defenseunicorns/uds-cli/pull/631) - fix: arch check in PreDeployValidation by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/657](https://togithub.com/defenseunicorns/uds-cli/pull/657) - fix(deps): update module github.com/spf13/viper to v1.19.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/651](https://togithub.com/defenseunicorns/uds-cli/pull/651) - chore(deps): update homebrew/actions digest to [`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/650](https://togithub.com/defenseunicorns/uds-cli/pull/650) - fix(deps): update module golang.org/x/mod to v0.18.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/659](https://togithub.com/defenseunicorns/uds-cli/pull/659) - feat: uds security hub integration by [@​naveensrinivasan](https://togithub.com/naveensrinivasan) in [https://github.com/defenseunicorns/uds-cli/pull/662](https://togithub.com/defenseunicorns/uds-cli/pull/662) - feat: adds --list-images arg to inspect by [@​eFAILution](https://togithub.com/eFAILution) in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - chore: small refactors and docs updates by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/671](https://togithub.com/defenseunicorns/uds-cli/pull/671) - feat: dev deploy --ref and --flavor flags by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/638](https://togithub.com/defenseunicorns/uds-cli/pull/638) - fix(deps): update module github.com/defenseunicorns/uds-security-hub to v0.0.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/673](https://togithub.com/defenseunicorns/uds-cli/pull/673) - chore: fix typos by [@​beholdenkey](https://togithub.com/beholdenkey) in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - chore: cleans up lang file and docs, use PRs for brew releases by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/675](https://togithub.com/defenseunicorns/uds-cli/pull/675) - chore(deps): update goreleaser/goreleaser-action action to v6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/661](https://togithub.com/defenseunicorns/uds-cli/pull/661) - feat: integrated docs between uds and uds-cli by [@​UnicornChance](https://togithub.com/UnicornChance) in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) - chore: shorten readme before docs site roll out by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/679](https://togithub.com/defenseunicorns/uds-cli/pull/679) - fix: install trivy for security hub and parallelize release by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/680](https://togithub.com/defenseunicorns/uds-cli/pull/680) - fix: release workflow typos by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/681](https://togithub.com/defenseunicorns/uds-cli/pull/681) ##### New Contributors - [@​eFAILution](https://togithub.com/eFAILution) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - [@​beholdenkey](https://togithub.com/beholdenkey) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - [@​UnicornChance](https://togithub.com/UnicornChance) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) **Full Changelog**: defenseunicorns/uds-cli@v0.11.0...v0.11.1 </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/defenseunicorns/uds-core). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Chance <[email protected]>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | patch | `v4.1.4` -> `v4.1.6` | | [defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli) | | minor | `v0.10.4` -> `v0.11.1` | | [defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common) | | minor | `v0.4.6` -> `v0.5.0` | | [defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common) | action | minor | `v0.4.6` -> `v0.5.0` | | [defenseunicorns/zarf](https://togithub.com/defenseunicorns/zarf) | | minor | `v0.33.1` -> `v0.34.0` | | [github/codeql-action](https://togithub.com/github/codeql-action) | action | patch | `v3.25.3` -> `v3.25.9` | | [google-github-actions/release-please-action](https://togithub.com/google-github-actions/release-please-action) | action | patch | `v4.1.0` -> `v4.1.1` | | [ossf/scorecard-action](https://togithub.com/ossf/scorecard-action) | action | patch | `v2.3.1` -> `v2.3.3` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v4.1.6`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416) [Compare Source](https://togithub.com/actions/checkout/compare/v4.1.5...v4.1.6) - Check platform to set archive extension appropriately by [@​cory-miller](https://togithub.com/cory-miller) in [https://github.com/actions/checkout/pull/1732](https://togithub.com/actions/checkout/pull/1732) ### [`v4.1.5`](https://togithub.com/actions/checkout/releases/tag/v4.1.5) [Compare Source](https://togithub.com/actions/checkout/compare/v4.1.4...v4.1.5) #### What's Changed - Update NPM dependencies by [@​cory-miller](https://togithub.com/cory-miller) in [https://github.com/actions/checkout/pull/1703](https://togithub.com/actions/checkout/pull/1703) - Bump github/codeql-action from 2 to 3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/actions/checkout/pull/1694](https://togithub.com/actions/checkout/pull/1694) - Bump actions/setup-node from 1 to 4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/actions/checkout/pull/1696](https://togithub.com/actions/checkout/pull/1696) - Bump actions/upload-artifact from 2 to 4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/actions/checkout/pull/1695](https://togithub.com/actions/checkout/pull/1695) - README: Suggest `user.email` to be `41898282+github-actions[bot]@​users.noreply.github.com` by [@​cory-miller](https://togithub.com/cory-miller) in [https://github.com/actions/checkout/pull/1707](https://togithub.com/actions/checkout/pull/1707) **Full Changelog**: actions/checkout@v4.1.4...v4.1.5 </details> <details> <summary>defenseunicorns/uds-cli (defenseunicorns/uds-cli)</summary> ### [`v0.11.1`](https://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.11.1) [Compare Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.11.0...v0.11.1) ##### What's Changed - chore: run CI tests in parallel, remove alpha status by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/645](https://togithub.com/defenseunicorns/uds-cli/pull/645) - fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/635](https://togithub.com/defenseunicorns/uds-cli/pull/635) - chore: update codeowners by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/647](https://togithub.com/defenseunicorns/uds-cli/pull/647) - docs: add note about UDS_ARCH by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/652](https://togithub.com/defenseunicorns/uds-cli/pull/652) - feat: add file type variables to bundles by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/631](https://togithub.com/defenseunicorns/uds-cli/pull/631) - fix: arch check in PreDeployValidation by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/657](https://togithub.com/defenseunicorns/uds-cli/pull/657) - fix(deps): update module github.com/spf13/viper to v1.19.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/651](https://togithub.com/defenseunicorns/uds-cli/pull/651) - chore(deps): update homebrew/actions digest to [`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/650](https://togithub.com/defenseunicorns/uds-cli/pull/650) - fix(deps): update module golang.org/x/mod to v0.18.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/659](https://togithub.com/defenseunicorns/uds-cli/pull/659) - feat: uds security hub integration by [@​naveensrinivasan](https://togithub.com/naveensrinivasan) in [https://github.com/defenseunicorns/uds-cli/pull/662](https://togithub.com/defenseunicorns/uds-cli/pull/662) - feat: adds --list-images arg to inspect by [@​eFAILution](https://togithub.com/eFAILution) in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - chore: small refactors and docs updates by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/671](https://togithub.com/defenseunicorns/uds-cli/pull/671) - feat: dev deploy --ref and --flavor flags by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/638](https://togithub.com/defenseunicorns/uds-cli/pull/638) - fix(deps): update module github.com/defenseunicorns/uds-security-hub to v0.0.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/673](https://togithub.com/defenseunicorns/uds-cli/pull/673) - chore: fix typos by [@​beholdenkey](https://togithub.com/beholdenkey) in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - chore: cleans up lang file and docs, use PRs for brew releases by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/675](https://togithub.com/defenseunicorns/uds-cli/pull/675) - chore(deps): update goreleaser/goreleaser-action action to v6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/661](https://togithub.com/defenseunicorns/uds-cli/pull/661) - feat: integrated docs between uds and uds-cli by [@​UnicornChance](https://togithub.com/UnicornChance) in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) - chore: shorten readme before docs site roll out by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/679](https://togithub.com/defenseunicorns/uds-cli/pull/679) - fix: install trivy for security hub and parallelize release by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/680](https://togithub.com/defenseunicorns/uds-cli/pull/680) - fix: release workflow typos by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/681](https://togithub.com/defenseunicorns/uds-cli/pull/681) ##### New Contributors - [@​eFAILution](https://togithub.com/eFAILution) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - [@​beholdenkey](https://togithub.com/beholdenkey) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - [@​UnicornChance](https://togithub.com/UnicornChance) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) **Full Changelog**: defenseunicorns/uds-cli@v0.11.0...v0.11.1 ### [`v0.11.0`](https://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.11.0) [Compare Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.10.4...v0.11.0) ##### What's Changed - chore(deps): update actions/upload-artifact action to v4.3.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/574](https://togithub.com/defenseunicorns/uds-cli/pull/574) - fix(deps): update golang.org/x/exp digest to [`fe59bbe`](https://togithub.com/defenseunicorns/uds-cli/commit/fe59bbe) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/571](https://togithub.com/defenseunicorns/uds-cli/pull/571) - chore(deps): update github/codeql-action action to v3.25.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/570](https://togithub.com/defenseunicorns/uds-cli/pull/570) - fix(deps): update module github.com/defenseunicorns/pkg/oci to v0.0.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/576](https://togithub.com/defenseunicorns/uds-cli/pull/576) - fix: permit absolute paths for bundle create by [@​ZachGallagher](https://togithub.com/ZachGallagher) in [https://github.com/defenseunicorns/uds-cli/pull/554](https://togithub.com/defenseunicorns/uds-cli/pull/554) - fix: ensure we handle paths correctly in dev deploy by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/582](https://togithub.com/defenseunicorns/uds-cli/pull/582) - chore(deps): update actions/download-artifact action to v4.1.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/573](https://togithub.com/defenseunicorns/uds-cli/pull/573) - fix(deps): update module github.com/defenseunicorns/pkg/helpers to v1.1.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/575](https://togithub.com/defenseunicorns/uds-cli/pull/575) - chore(deps): update actions/checkout action to v4.1.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/578](https://togithub.com/defenseunicorns/uds-cli/pull/578) - chore(deps): update actions/upload-artifact action to v4.3.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/579](https://togithub.com/defenseunicorns/uds-cli/pull/579) - chore(deps): update github/codeql-action action to v3.25.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/580](https://togithub.com/defenseunicorns/uds-cli/pull/580) - chore(deps): update anchore/sbom-action action to v0.15.11 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/587](https://togithub.com/defenseunicorns/uds-cli/pull/587) - chore: ensure vendored tools versions print out by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/586](https://togithub.com/defenseunicorns/uds-cli/pull/586) - chore(deps): update actions/checkout action to v4.1.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/597](https://togithub.com/defenseunicorns/uds-cli/pull/597) - chore(deps): update github/codeql-action action to v3.25.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/595](https://togithub.com/defenseunicorns/uds-cli/pull/595) - fix(deps): update module golang.org/x/exp to v0.0.0-20240506185415-9bf2ced13842 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/593](https://togithub.com/defenseunicorns/uds-cli/pull/593) - chore(deps): update actions/setup-go action to v5.0.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/590](https://togithub.com/defenseunicorns/uds-cli/pull/590) - chore: update contributing doc by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/598](https://togithub.com/defenseunicorns/uds-cli/pull/598) - chore: swap Makefile for Maru by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/602](https://togithub.com/defenseunicorns/uds-cli/pull/602) - chore(deps): update github/codeql-action action to v3.25.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/606](https://togithub.com/defenseunicorns/uds-cli/pull/606) - fix(deps): update module github.com/defenseunicorns/pkg/helpers to v1.1.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/605](https://togithub.com/defenseunicorns/uds-cli/pull/605) - chore(deps): update ossf/scorecard-action action to v2.3.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/601](https://togithub.com/defenseunicorns/uds-cli/pull/601) - chore(deps): update goreleaser/goreleaser-action action to v5.1.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/604](https://togithub.com/defenseunicorns/uds-cli/pull/604) - chore: bump Go version to 1.21.10 by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/609](https://togithub.com/defenseunicorns/uds-cli/pull/609) - feat: remove q for canceling deploy by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/603](https://togithub.com/defenseunicorns/uds-cli/pull/603) - chore: remove dead end code by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/611](https://togithub.com/defenseunicorns/uds-cli/pull/611) - chore: test getArch by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/621](https://togithub.com/defenseunicorns/uds-cli/pull/621) - chore(deps): update actions/checkout action to v4.1.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/619](https://togithub.com/defenseunicorns/uds-cli/pull/619) - chore(deps): update homebrew/actions digest to [`677db44`](https://togithub.com/defenseunicorns/uds-cli/commit/677db44) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/620](https://togithub.com/defenseunicorns/uds-cli/pull/620) - chore(deps): update github/codeql-action action to v3.25.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/625](https://togithub.com/defenseunicorns/uds-cli/pull/625) - chore(deps): update anchore/sbom-action action to v0.16.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/623](https://togithub.com/defenseunicorns/uds-cli/pull/623) - feat: allow helm overrides from valuesfile by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/594](https://togithub.com/defenseunicorns/uds-cli/pull/594) - chore: removes bubbletea tui by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/626](https://togithub.com/defenseunicorns/uds-cli/pull/626) - chore: update linting configuration by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/627](https://togithub.com/defenseunicorns/uds-cli/pull/627) - docs: dev deploy ADR by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/560](https://togithub.com/defenseunicorns/uds-cli/pull/560) - fix(deps): update module helm.sh/helm/v3 to v3.15.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/612](https://togithub.com/defenseunicorns/uds-cli/pull/612) - feat: strict bundle yaml validation by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/596](https://togithub.com/defenseunicorns/uds-cli/pull/596) - feat: dev deploy remote bundles by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/629](https://togithub.com/defenseunicorns/uds-cli/pull/629) - chore: update to de-zarfed Maru by [@​Racer159](https://togithub.com/Racer159) in [https://github.com/defenseunicorns/uds-cli/pull/636](https://togithub.com/defenseunicorns/uds-cli/pull/636) - fix(deps): update module helm.sh/helm/v3 to v3.15.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/634](https://togithub.com/defenseunicorns/uds-cli/pull/634) - chore(deps): update docker/login-action action to v3.2.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/640](https://togithub.com/defenseunicorns/uds-cli/pull/640) - chore(deps): update homebrew/actions digest to [`a618804`](https://togithub.com/defenseunicorns/uds-cli/commit/a618804) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/632](https://togithub.com/defenseunicorns/uds-cli/pull/632) - fix(deps): update golang.org/x/exp digest to [`4c93da0`](https://togithub.com/defenseunicorns/uds-cli/commit/4c93da0) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/639](https://togithub.com/defenseunicorns/uds-cli/pull/639) - chore(deps): update podinfo to v6.6.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/633](https://togithub.com/defenseunicorns/uds-cli/pull/633) - chore(deps): update zarf to v0.33.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/585](https://togithub.com/defenseunicorns/uds-cli/pull/585) - feat: remove unnecessary bundle layers and refactor verification by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/622](https://togithub.com/defenseunicorns/uds-cli/pull/622) - feat: uds config validation by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/618](https://togithub.com/defenseunicorns/uds-cli/pull/618) - fix: ensures partial pkgs are correct and adds smoke test to workflows by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/643](https://togithub.com/defenseunicorns/uds-cli/pull/643) - fix: typo in Zarf pkg name and refactor smoke test workflow by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/644](https://togithub.com/defenseunicorns/uds-cli/pull/644) **Full Changelog**: defenseunicorns/uds-cli@v0.10.4...v0.11.0 </details> <details> <summary>defenseunicorns/uds-common (defenseunicorns/uds-common)</summary> ### [`v0.5.0`](https://togithub.com/defenseunicorns/uds-common/releases/tag/v0.5.0) [Compare Source](https://togithub.com/defenseunicorns/uds-common/compare/v0.4.6...v0.5.0) ##### ⚠ BREAKING CHANGES - update publish to take architecture as an input ([#​143](https://togithub.com/defenseunicorns/uds-common/issues/143)) ##### Miscellaneous - update publish to take architecture as an input ([#​143](https://togithub.com/defenseunicorns/uds-common/issues/143)) ([62620f5](https://togithub.com/defenseunicorns/uds-common/commit/62620f59c14c773e5f6f07aaafc70ae34cff36bd)) </details> <details> <summary>defenseunicorns/zarf (defenseunicorns/zarf)</summary> ### [`v0.34.0`](https://togithub.com/defenseunicorns/zarf/releases/tag/v0.34.0) [Compare Source](https://togithub.com/defenseunicorns/zarf/compare/v0.33.2...v0.34.0) #### What's Changed - refactor: move validate to expose it as receivers by [@​Noxsios](https://togithub.com/Noxsios) in [https://github.com/defenseunicorns/zarf/pull/2419](https://togithub.com/defenseunicorns/zarf/pull/2419) - docs: add additional detail to security policy by [@​salaxander](https://togithub.com/salaxander) in [https://github.com/defenseunicorns/zarf/pull/2488](https://togithub.com/defenseunicorns/zarf/pull/2488) - chore: cleanup stale grype ignores and patch golang.org/x/net CVE by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2492](https://togithub.com/defenseunicorns/zarf/pull/2492) - docs: injector and init package reference material by [@​Noxsios](https://togithub.com/Noxsios) in [https://github.com/defenseunicorns/zarf/pull/2468](https://togithub.com/defenseunicorns/zarf/pull/2468) - chore: patch CVE-2024-3817 by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2498](https://togithub.com/defenseunicorns/zarf/pull/2498) - refactor: cleaner image pulls by [@​Noxsios](https://togithub.com/Noxsios) in [https://github.com/defenseunicorns/zarf/pull/2460](https://togithub.com/defenseunicorns/zarf/pull/2460) - chore: adding [@​dgershman](https://togithub.com/dgershman) by [@​dgershman](https://togithub.com/dgershman) in [https://github.com/defenseunicorns/zarf/pull/2506](https://togithub.com/defenseunicorns/zarf/pull/2506) - refactor: context usage in k8s code by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2405](https://togithub.com/defenseunicorns/zarf/pull/2405) - ci: run revive using golang-lint-ci by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2499](https://togithub.com/defenseunicorns/zarf/pull/2499) - feat: update injector away from rouille to axum by [@​schristoff](https://togithub.com/schristoff) in [https://github.com/defenseunicorns/zarf/pull/2457](https://togithub.com/defenseunicorns/zarf/pull/2457) - refactor: enable testifylint linter by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2504](https://togithub.com/defenseunicorns/zarf/pull/2504) - chore: remove rouille CVE from grype ignore by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2515](https://togithub.com/defenseunicorns/zarf/pull/2515) - fix(agent): missing path for pod without labels by [@​brandtkeller](https://togithub.com/brandtkeller) in [https://github.com/defenseunicorns/zarf/pull/2518](https://togithub.com/defenseunicorns/zarf/pull/2518) - fix: adopt namespace metadata by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2494](https://togithub.com/defenseunicorns/zarf/pull/2494) - refactor: enable ineffassign linter by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2500](https://togithub.com/defenseunicorns/zarf/pull/2500) - test: cluster getDeployedPackages by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2523](https://togithub.com/defenseunicorns/zarf/pull/2523) - test: add unit tests for merge zarf state by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2522](https://togithub.com/defenseunicorns/zarf/pull/2522) - test: pod agent unit tests by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2526](https://togithub.com/defenseunicorns/zarf/pull/2526) - docs: add google analytics for docs pages by [@​salaxander](https://togithub.com/salaxander) in [https://github.com/defenseunicorns/zarf/pull/2530](https://togithub.com/defenseunicorns/zarf/pull/2530) - test: add unit tests for detect distro by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2521](https://togithub.com/defenseunicorns/zarf/pull/2521) - test: add tests for injector by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2534](https://togithub.com/defenseunicorns/zarf/pull/2534) - chore: add codecov by [@​schristoff-du](https://togithub.com/schristoff-du) in [https://github.com/defenseunicorns/zarf/pull/2529](https://togithub.com/defenseunicorns/zarf/pull/2529) - chore: add unit tests for creator.LoadPackageDefinition by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2531](https://togithub.com/defenseunicorns/zarf/pull/2531) - test: refactor network test by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2533](https://togithub.com/defenseunicorns/zarf/pull/2533) - test: agent flux unit test by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2528](https://togithub.com/defenseunicorns/zarf/pull/2528) - chore: fix codecov by [@​schristoff](https://togithub.com/schristoff) in [https://github.com/defenseunicorns/zarf/pull/2538](https://togithub.com/defenseunicorns/zarf/pull/2538) - test: creator.ComposeComponents by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2537](https://togithub.com/defenseunicorns/zarf/pull/2537) - refactor: remove use of k8s serivce account by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2544](https://togithub.com/defenseunicorns/zarf/pull/2544) - refactor: remove use of k8s service by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2543](https://togithub.com/defenseunicorns/zarf/pull/2543) - refactor: remove use of k8s configmap by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2541](https://togithub.com/defenseunicorns/zarf/pull/2541) - refactor: remove use of k8s hpa by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2542](https://togithub.com/defenseunicorns/zarf/pull/2542) - test: add secrets tests by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2540](https://togithub.com/defenseunicorns/zarf/pull/2540) - refactor: allow callers to directly set logfile location by [@​Noxsios](https://togithub.com/Noxsios) in [https://github.com/defenseunicorns/zarf/pull/2545](https://togithub.com/defenseunicorns/zarf/pull/2545) - test: add test for packager source by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2525](https://togithub.com/defenseunicorns/zarf/pull/2525) - chore: add unit tests to variables pkg by [@​Racer159](https://togithub.com/Racer159) in [https://github.com/defenseunicorns/zarf/pull/2519](https://togithub.com/defenseunicorns/zarf/pull/2519) - test: clean up tests for composer by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2532](https://togithub.com/defenseunicorns/zarf/pull/2532) - test: argo agent unit tests by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2536](https://togithub.com/defenseunicorns/zarf/pull/2536) - fix(release): do not delete testdata in release workflow by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2547](https://togithub.com/defenseunicorns/zarf/pull/2547) **Full Changelog**: zarf-dev/zarf@v0.33.2...v0.34.0 ### [`v0.33.2`](https://togithub.com/defenseunicorns/zarf/releases/tag/v0.33.2) [Compare Source](https://togithub.com/defenseunicorns/zarf/compare/v0.33.1...v0.33.2) ##### What's Changed - fix: schema integration by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2463](https://togithub.com/defenseunicorns/zarf/pull/2463) - docs: add contributor covenant code of conduct by [@​salaxander](https://togithub.com/salaxander) in [https://github.com/defenseunicorns/zarf/pull/2462](https://togithub.com/defenseunicorns/zarf/pull/2462) - docs: fix casing on code of conduct badge by [@​salaxander](https://togithub.com/salaxander) in [https://github.com/defenseunicorns/zarf/pull/2466](https://togithub.com/defenseunicorns/zarf/pull/2466) - fix(deps): update github.com/anchore/clio digest to [`3c4abf8`](https://togithub.com/defenseunicorns/zarf/commit/3c4abf8) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/zarf/pull/2424](https://togithub.com/defenseunicorns/zarf/pull/2424) - fix: update docker media type in registry by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2476](https://togithub.com/defenseunicorns/zarf/pull/2476) - fix: adds GetVariableConfig function for packager by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/zarf/pull/2475](https://togithub.com/defenseunicorns/zarf/pull/2475) - test: add tests for remove copies from components to enable refactoring by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2473](https://togithub.com/defenseunicorns/zarf/pull/2473) - fix!: do not uninstall helm chart after failed install or upgrade by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2456](https://togithub.com/defenseunicorns/zarf/pull/2456) - feat: inspect --list-images by [@​Noxsios](https://togithub.com/Noxsios) in [https://github.com/defenseunicorns/zarf/pull/2478](https://togithub.com/defenseunicorns/zarf/pull/2478) - refactor: remove copies from components to a filter by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2474](https://togithub.com/defenseunicorns/zarf/pull/2474) - chore: add support.md by [@​schristoff](https://togithub.com/schristoff) in [https://github.com/defenseunicorns/zarf/pull/2480](https://togithub.com/defenseunicorns/zarf/pull/2480) - chore: add a check for go mod tidy by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2481](https://togithub.com/defenseunicorns/zarf/pull/2481) - fix: use correct sha256 checksum for arm64 injector binary by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2483](https://togithub.com/defenseunicorns/zarf/pull/2483) - fix: simplify go mod tidy check by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2482](https://togithub.com/defenseunicorns/zarf/pull/2482) ##### New Contributors - [@​salaxander](https://togithub.com/salaxander) made their first contribution in [https://github.com/defenseunicorns/zarf/pull/2462](https://togithub.com/defenseunicorns/zarf/pull/2462) - [@​phillebaba](https://togithub.com/phillebaba) made their first contribution in [https://github.com/defenseunicorns/zarf/pull/2473](https://togithub.com/defenseunicorns/zarf/pull/2473) - [@​schristoff](https://togithub.com/schristoff) made their first contribution in [https://github.com/defenseunicorns/zarf/pull/2480](https://togithub.com/defenseunicorns/zarf/pull/2480) **Full Changelog**: zarf-dev/zarf@v0.33.1...v0.33.2 </details> <details> <summary>github/codeql-action (github/codeql-action)</summary> ### [`v3.25.9`](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9) ### [`v3.25.8`](https://togithub.com/github/codeql-action/compare/v3.25.7...v3.25.8) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.7...v3.25.8) ### [`v3.25.7`](https://togithub.com/github/codeql-action/compare/v3.25.6...v3.25.7) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.6...v3.25.7) ### [`v3.25.6`](https://togithub.com/github/codeql-action/compare/v3.25.5...v3.25.6) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.5...v3.25.6) ### [`v3.25.5`](https://togithub.com/github/codeql-action/compare/v3.25.4...v3.25.5) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.4...v3.25.5) ### [`v3.25.4`](https://togithub.com/github/codeql-action/compare/v3.25.3...v3.25.4) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.3...v3.25.4) </details> <details> <summary>google-github-actions/release-please-action (google-github-actions/release-please-action)</summary> ### [`v4.1.1`](https://togithub.com/google-github-actions/release-please-action/releases/tag/v4.1.1) [Compare Source](https://togithub.com/google-github-actions/release-please-action/compare/v4.1.0...v4.1.1) ##### Bug Fixes - add deprecation warning to workflow run ([#​1](https://togithub.com/google-github-actions/release-please-action/issues/1)) ([edb78cf](https://togithub.com/google-github-actions/release-please-action/commit/edb78cf884d22d5d991d94144d031fce49cadbea)) </details> <details> <summary>ossf/scorecard-action (ossf/scorecard-action)</summary> ### [`v2.3.3`](https://togithub.com/ossf/scorecard-action/releases/tag/v2.3.3) [Compare Source](https://togithub.com/ossf/scorecard-action/compare/v2.3.2...v2.3.3) > \[!NOTE]\ > There is no v2.3.2 release as a step was skipped in the release process. This was fixed and re-released under the v2.3.3 tag #### What's Changed - 🌱 Bump github.com/ossf/scorecard/v4 (v4.13.1) to github.com/ossf/scorecard/v5 (v5.0.0-rc1) by [@​spencerschrock](https://togithub.com/spencerschrock) in [https://github.com/ossf/scorecard-action/pull/1366](https://togithub.com/ossf/scorecard-action/pull/1366) - 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc1 to v5.0.0-rc2 by [@​spencerschrock](https://togithub.com/spencerschrock) in [https://github.com/ossf/scorecard-action/pull/1374](https://togithub.com/ossf/scorecard-action/pull/1374) - 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc2 to v5.0.0-rc2.0.20240509182734-7ce860946928 by [@​spencerschrock](https://togithub.com/spencerschrock) in [https://github.com/ossf/scorecard-action/pull/1377](https://togithub.com/ossf/scorecard-action/pull/1377) For a full changelist of what these include, see the [v5.0.0-rc1](https://togithub.com/ossf/scorecard/releases/tag/v5.0.0-rc1) and [v5.0.0-rc2](https://togithub.com/ossf/scorecard/releases/tag/v5.0.0-rc2) release notes. ##### Documentation - 📖 Move token discussion out of main README. by [@​spencerschrock](https://togithub.com/spencerschrock) in [https://github.com/ossf/scorecard-action/pull/1279](https://togithub.com/ossf/scorecard-action/pull/1279) - 📖 link to `ossf/scorecard` workflow instead of maintaining an example by [@​spencerschrock](https://togithub.com/spencerschrock) in [https://github.com/ossf/scorecard-action/pull/1352](https://togithub.com/ossf/scorecard-action/pull/1352) - 📖 update api links to new scorecard.dev site by [@​spencerschrock](https://togithub.com/spencerschrock) in [https://github.com/ossf/scorecard-action/pull/1376](https://togithub.com/ossf/scorecard-action/pull/1376) **Full Changelog**: ossf/scorecard-action@v2.3.1...v2.3.3 ### [`v2.3.2`](https://togithub.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2) [Compare Source](https://togithub.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2) </details> --- ### 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](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/defenseunicorns/uds-package-valkey). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJzdXBwb3J0LWRlcHMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Release-As: v7.2.5-uds.0
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli) | | patch | `v0.11.0` -> `v0.11.1` | | [defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common) | | minor | `v0.4.5` -> `v0.5.0` | | [defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common) | action | minor | `v0.4.5` -> `v0.5.0` | | [github/codeql-action](https://togithub.com/github/codeql-action) | action | patch | `v3.25.8` -> `v3.25.9` | --- ### Release Notes <details> <summary>defenseunicorns/uds-cli (defenseunicorns/uds-cli)</summary> ### [`v0.11.1`](https://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.11.1) [Compare Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.11.0...v0.11.1) ##### What's Changed - chore: run CI tests in parallel, remove alpha status by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/645](https://togithub.com/defenseunicorns/uds-cli/pull/645) - fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/635](https://togithub.com/defenseunicorns/uds-cli/pull/635) - chore: update codeowners by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/647](https://togithub.com/defenseunicorns/uds-cli/pull/647) - docs: add note about UDS_ARCH by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/652](https://togithub.com/defenseunicorns/uds-cli/pull/652) - feat: add file type variables to bundles by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/631](https://togithub.com/defenseunicorns/uds-cli/pull/631) - fix: arch check in PreDeployValidation by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/657](https://togithub.com/defenseunicorns/uds-cli/pull/657) - fix(deps): update module github.com/spf13/viper to v1.19.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/651](https://togithub.com/defenseunicorns/uds-cli/pull/651) - chore(deps): update homebrew/actions digest to [`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/650](https://togithub.com/defenseunicorns/uds-cli/pull/650) - fix(deps): update module golang.org/x/mod to v0.18.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/659](https://togithub.com/defenseunicorns/uds-cli/pull/659) - feat: uds security hub integration by [@​naveensrinivasan](https://togithub.com/naveensrinivasan) in [https://github.com/defenseunicorns/uds-cli/pull/662](https://togithub.com/defenseunicorns/uds-cli/pull/662) - feat: adds --list-images arg to inspect by [@​eFAILution](https://togithub.com/eFAILution) in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - chore: small refactors and docs updates by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/671](https://togithub.com/defenseunicorns/uds-cli/pull/671) - feat: dev deploy --ref and --flavor flags by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/638](https://togithub.com/defenseunicorns/uds-cli/pull/638) - fix(deps): update module github.com/defenseunicorns/uds-security-hub to v0.0.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/673](https://togithub.com/defenseunicorns/uds-cli/pull/673) - chore: fix typos by [@​beholdenkey](https://togithub.com/beholdenkey) in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - chore: cleans up lang file and docs, use PRs for brew releases by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/675](https://togithub.com/defenseunicorns/uds-cli/pull/675) - chore(deps): update goreleaser/goreleaser-action action to v6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/661](https://togithub.com/defenseunicorns/uds-cli/pull/661) - feat: integrated docs between uds and uds-cli by [@​UnicornChance](https://togithub.com/UnicornChance) in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) - chore: shorten readme before docs site roll out by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/679](https://togithub.com/defenseunicorns/uds-cli/pull/679) - fix: install trivy for security hub and parallelize release by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/680](https://togithub.com/defenseunicorns/uds-cli/pull/680) - fix: release workflow typos by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/681](https://togithub.com/defenseunicorns/uds-cli/pull/681) ##### New Contributors - [@​eFAILution](https://togithub.com/eFAILution) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - [@​beholdenkey](https://togithub.com/beholdenkey) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - [@​UnicornChance](https://togithub.com/UnicornChance) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) **Full Changelog**: defenseunicorns/uds-cli@v0.11.0...v0.11.1 </details> <details> <summary>defenseunicorns/uds-common (defenseunicorns/uds-common)</summary> ### [`v0.5.0`](https://togithub.com/defenseunicorns/uds-common/releases/tag/v0.5.0) [Compare Source](https://togithub.com/defenseunicorns/uds-common/compare/v0.4.6...v0.5.0) ##### ⚠ BREAKING CHANGES - update publish to take architecture as an input ([#​143](https://togithub.com/defenseunicorns/uds-common/issues/143)) ##### Miscellaneous - update publish to take architecture as an input ([#​143](https://togithub.com/defenseunicorns/uds-common/issues/143)) ([62620f5](https://togithub.com/defenseunicorns/uds-common/commit/62620f59c14c773e5f6f07aaafc70ae34cff36bd)) ### [`v0.4.6`](https://togithub.com/defenseunicorns/uds-common/releases/tag/v0.4.6) [Compare Source](https://togithub.com/defenseunicorns/uds-common/compare/v0.4.5...v0.4.6) ##### Bug Fixes - renovate incorrectly matching oci helm charts for helm datasources ([#​141](https://togithub.com/defenseunicorns/uds-common/issues/141)) ([2761f2a](https://togithub.com/defenseunicorns/uds-common/commit/2761f2a5f69bae3967bb8a9ff6d392007f90a21b)) ##### Miscellaneous - allow debug logs to continue through failure ([#​146](https://togithub.com/defenseunicorns/uds-common/issues/146)) ([bec4fc3](https://togithub.com/defenseunicorns/uds-common/commit/bec4fc330d720673f645bda7e56006218ec96aad)) - **deps:** update uds common support dependencies to v0.22.1 ([#​144](https://togithub.com/defenseunicorns/uds-common/issues/144)) ([d618bd2](https://togithub.com/defenseunicorns/uds-common/commit/d618bd2be3f75d62346594cb8d6d8c339b074f93)) </details> <details> <summary>github/codeql-action (github/codeql-action)</summary> ### [`v3.25.9`](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9) </details> --- ### 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](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/defenseunicorns/uds-package-postgres-operator). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJzdXBwb3J0LWRlcHMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Release-As: v1.11.0-uds.2
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | patch | `v4.1.6` -> `v4.1.7` | | [defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli) | | patch | `v0.11.0` -> `v0.11.2` | | [defenseunicorns/zarf](https://togithub.com/defenseunicorns/zarf) | | minor | `v0.34.0` -> `v0.35.0` | | [github/codeql-action](https://togithub.com/github/codeql-action) | action | patch | `v3.25.6` -> `v3.25.10` | | [golangci/golangci-lint](https://togithub.com/golangci/golangci-lint) | repository | patch | `v1.59.0` -> `v1.59.1` | | [python-jsonschema/check-jsonschema](https://togithub.com/python-jsonschema/check-jsonschema) | repository | patch | `0.28.4` -> `0.28.6` | | [renovatebot/pre-commit-hooks](https://togithub.com/renovatebot/pre-commit-hooks) | repository | minor | `37.381.11` -> `37.420.1` | Note: The `pre-commit` manager in Renovate is not supported by the `pre-commit` maintainers or community. Please do not report any problems there, instead [create a Discussion in the Renovate repository](https://togithub.com/renovatebot/renovate/discussions/new) if you have any questions. --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v4.1.7`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417) [Compare Source](https://togithub.com/actions/checkout/compare/v4.1.6...v4.1.7) - Bump the minor-npm-dependencies group across 1 directory with 4 updates by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/actions/checkout/pull/1739](https://togithub.com/actions/checkout/pull/1739) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/actions/checkout/pull/1697](https://togithub.com/actions/checkout/pull/1697) - Check out other refs/\* by commit by [@​orhantoy](https://togithub.com/orhantoy) in [https://github.com/actions/checkout/pull/1774](https://togithub.com/actions/checkout/pull/1774) - Pin actions/checkout's own workflows to a known, good, stable version. by [@​jww3](https://togithub.com/jww3) in [https://github.com/actions/checkout/pull/1776](https://togithub.com/actions/checkout/pull/1776) </details> <details> <summary>defenseunicorns/uds-cli (defenseunicorns/uds-cli)</summary> ### [`v0.11.2`](https://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.11.2) [Compare Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.11.1...v0.11.2) ##### What's Changed - chore: fix valuesFiles examples by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/686](https://togithub.com/defenseunicorns/uds-cli/pull/686) - chore: uds engine installation adr by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/682](https://togithub.com/defenseunicorns/uds-cli/pull/682) - fix: take docker namespace into account during deploy by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/698](https://togithub.com/defenseunicorns/uds-cli/pull/698) **Full Changelog**: defenseunicorns/uds-cli@v0.11.1...v0.11.2 ### [`v0.11.1`](https://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.11.1) [Compare Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.11.0...v0.11.1) ##### What's Changed - chore: run CI tests in parallel, remove alpha status by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/645](https://togithub.com/defenseunicorns/uds-cli/pull/645) - fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/635](https://togithub.com/defenseunicorns/uds-cli/pull/635) - chore: update codeowners by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/647](https://togithub.com/defenseunicorns/uds-cli/pull/647) - docs: add note about UDS_ARCH by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/652](https://togithub.com/defenseunicorns/uds-cli/pull/652) - feat: add file type variables to bundles by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/631](https://togithub.com/defenseunicorns/uds-cli/pull/631) - fix: arch check in PreDeployValidation by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/657](https://togithub.com/defenseunicorns/uds-cli/pull/657) - fix(deps): update module github.com/spf13/viper to v1.19.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/651](https://togithub.com/defenseunicorns/uds-cli/pull/651) - chore(deps): update homebrew/actions digest to [`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/650](https://togithub.com/defenseunicorns/uds-cli/pull/650) - fix(deps): update module golang.org/x/mod to v0.18.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/659](https://togithub.com/defenseunicorns/uds-cli/pull/659) - feat: uds security hub integration by [@​naveensrinivasan](https://togithub.com/naveensrinivasan) in [https://github.com/defenseunicorns/uds-cli/pull/662](https://togithub.com/defenseunicorns/uds-cli/pull/662) - feat: adds --list-images arg to inspect by [@​eFAILution](https://togithub.com/eFAILution) in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - chore: small refactors and docs updates by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/671](https://togithub.com/defenseunicorns/uds-cli/pull/671) - feat: dev deploy --ref and --flavor flags by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/638](https://togithub.com/defenseunicorns/uds-cli/pull/638) - fix(deps): update module github.com/defenseunicorns/uds-security-hub to v0.0.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/673](https://togithub.com/defenseunicorns/uds-cli/pull/673) - chore: fix typos by [@​beholdenkey](https://togithub.com/beholdenkey) in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - chore: cleans up lang file and docs, use PRs for brew releases by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/675](https://togithub.com/defenseunicorns/uds-cli/pull/675) - chore(deps): update goreleaser/goreleaser-action action to v6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/661](https://togithub.com/defenseunicorns/uds-cli/pull/661) - feat: integrated docs between uds and uds-cli by [@​UnicornChance](https://togithub.com/UnicornChance) in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) - chore: shorten readme before docs site roll out by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/679](https://togithub.com/defenseunicorns/uds-cli/pull/679) - fix: install trivy for security hub and parallelize release by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/680](https://togithub.com/defenseunicorns/uds-cli/pull/680) - fix: release workflow typos by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/681](https://togithub.com/defenseunicorns/uds-cli/pull/681) ##### New Contributors - [@​eFAILution](https://togithub.com/eFAILution) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - [@​beholdenkey](https://togithub.com/beholdenkey) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - [@​UnicornChance](https://togithub.com/UnicornChance) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) **Full Changelog**: defenseunicorns/uds-cli@v0.11.0...v0.11.1 </details> <details> <summary>defenseunicorns/zarf (defenseunicorns/zarf)</summary> ### [`v0.35.0`](https://togithub.com/defenseunicorns/zarf/releases/tag/v0.35.0) [Compare Source](https://togithub.com/defenseunicorns/zarf/compare/v0.34.0...v0.35.0) ##### What's Changed - refactor: remove use of k8s info and nodes by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2551](https://togithub.com/defenseunicorns/zarf/pull/2551) - test: shutdown http test servers by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2559](https://togithub.com/defenseunicorns/zarf/pull/2559) - feat: adding labels to all resources mutated by the agent by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2557](https://togithub.com/defenseunicorns/zarf/pull/2557) - test: zarf init state by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2556](https://togithub.com/defenseunicorns/zarf/pull/2556) - refactor: remove use of k8s deprecations by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2560](https://togithub.com/defenseunicorns/zarf/pull/2560) - test: remove validate pkg arch e2e test by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2563](https://togithub.com/defenseunicorns/zarf/pull/2563) - test: remove TestMismatchedVersions e2e test by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2564](https://togithub.com/defenseunicorns/zarf/pull/2564) - test: delete agent e2e label test by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2568](https://togithub.com/defenseunicorns/zarf/pull/2568) - fix: add custom error printing for Zarf commands by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2575](https://togithub.com/defenseunicorns/zarf/pull/2575) - refactor: remove use of k8s dynamic by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2561](https://togithub.com/defenseunicorns/zarf/pull/2561) - refactor: remove use of k8s namespace by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2550](https://togithub.com/defenseunicorns/zarf/pull/2550) - fix: cancel Cobra parent context on interrupt by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2567](https://togithub.com/defenseunicorns/zarf/pull/2567) - refactor: use root ctx in agent by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2578](https://togithub.com/defenseunicorns/zarf/pull/2578) - chore: deprecate DeprecatedKeys by [@​schristoff-du](https://togithub.com/schristoff-du) in [https://github.com/defenseunicorns/zarf/pull/2581](https://togithub.com/defenseunicorns/zarf/pull/2581) - test: validate package by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2569](https://togithub.com/defenseunicorns/zarf/pull/2569) - chore: fix typos by [@​beholdenkey](https://togithub.com/beholdenkey) in [https://github.com/defenseunicorns/zarf/pull/2590](https://togithub.com/defenseunicorns/zarf/pull/2590) - fix: docker containerd blob error by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2593](https://togithub.com/defenseunicorns/zarf/pull/2593) - fix(deps): update module github.com/defenseunicorns/pkg/oci to v1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/zarf/pull/2511](https://togithub.com/defenseunicorns/zarf/pull/2511) - fix: change so that second SIGINT signal immediately exits program by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2598](https://togithub.com/defenseunicorns/zarf/pull/2598) - refactor: add context in packager by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2597](https://togithub.com/defenseunicorns/zarf/pull/2597) - chore: update go version to 1.22.4 by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2595](https://togithub.com/defenseunicorns/zarf/pull/2595) - fix: handle errors in version command by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2589](https://togithub.com/defenseunicorns/zarf/pull/2589) - fix: cosign image pulls by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2599](https://togithub.com/defenseunicorns/zarf/pull/2599) - refactor: move k8s tunnel to cluster package by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2566](https://togithub.com/defenseunicorns/zarf/pull/2566) - test: cleanup e2e tests by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2601](https://togithub.com/defenseunicorns/zarf/pull/2601) - refactor: enable errcheck linter by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2501](https://togithub.com/defenseunicorns/zarf/pull/2501) - fix: crane option argument parameters by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2609](https://togithub.com/defenseunicorns/zarf/pull/2609) - feat: remove .metadata.image from schema by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2606](https://togithub.com/defenseunicorns/zarf/pull/2606) - refactor: remove use of k8s pods by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2553](https://togithub.com/defenseunicorns/zarf/pull/2553) - fix: pass image reference to syft sbom source object by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2612](https://togithub.com/defenseunicorns/zarf/pull/2612) - fix: only build a single binary in the init-package make target by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2614](https://togithub.com/defenseunicorns/zarf/pull/2614) - fix: avoid injector pod name collisions by [@​lucasrod16](https://togithub.com/lucasrod16) in [https://github.com/defenseunicorns/zarf/pull/2620](https://togithub.com/defenseunicorns/zarf/pull/2620) - fix: no longer remove the agent ignore label from namespaces by [@​Racer159](https://togithub.com/Racer159) in [https://github.com/defenseunicorns/zarf/pull/2623](https://togithub.com/defenseunicorns/zarf/pull/2623) - refactor: remove use of k8s secret by [@​phillebaba](https://togithub.com/phillebaba) in [https://github.com/defenseunicorns/zarf/pull/2565](https://togithub.com/defenseunicorns/zarf/pull/2565) - fix: using a new s3 backend for test data by [@​AustinAbro321](https://togithub.com/AustinAbro321) in [https://github.com/defenseunicorns/zarf/pull/2630](https://togithub.com/defenseunicorns/zarf/pull/2630) - chore(deps): update goreleaser/goreleaser-action action to v6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/zarf/pull/2596](https://togithub.com/defenseunicorns/zarf/pull/2596) **Full Changelog**: zarf-dev/zarf@v0.34.0...v0.35.0 </details> <details> <summary>github/codeql-action (github/codeql-action)</summary> ### [`v3.25.10`](https://togithub.com/github/codeql-action/compare/v3.25.9...v3.25.10) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.9...v3.25.10) ### [`v3.25.9`](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9) ### [`v3.25.8`](https://togithub.com/github/codeql-action/compare/v3.25.7...v3.25.8) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.7...v3.25.8) ### [`v3.25.7`](https://togithub.com/github/codeql-action/compare/v3.25.6...v3.25.7) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.6...v3.25.7) </details> <details> <summary>golangci/golangci-lint (golangci/golangci-lint)</summary> ### [`v1.59.1`](https://togithub.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v1591) [Compare Source](https://togithub.com/golangci/golangci-lint/compare/v1.59.0...v1.59.1) 1. Updated linters - `go-errorlint`: from 1.5.1 to 1.5.2 - `gomnd`: deprecated configuration compatibility - `intrange`: add `style` preset - `misspell`: from 0.5.1 to 0.6.0 - `sloglint`: from 0.7.0 to 0.7.1 - `testifylint`: from 1.3.0 to 1.3.1 - `unparam`: bump to HEAD - `usestdlibvars`: from 1.25.0 to 1.26.0 2. Fixes - SARIF: init empty result slice - SARIF: issue column >= 1 3. Documentation - update `revive` configuration </details> <details> <summary>python-jsonschema/check-jsonschema (python-jsonschema/check-jsonschema)</summary> ### [`v0.28.6`](https://togithub.com/python-jsonschema/check-jsonschema/blob/HEAD/CHANGELOG.rst#0286) [Compare Source](https://togithub.com/python-jsonschema/check-jsonschema/compare/0.28.5...0.28.6) - Update vendored schemas: bitbucket-pipelines, circle-ci, readthedocs, renovate (2024-06-23) - Add CircleCI schema and pre-commit hook. Thanks :user:`jrdnbradford`! (:pr:`444`) ### [`v0.28.5`](https://togithub.com/python-jsonschema/check-jsonschema/blob/HEAD/CHANGELOG.rst#0285) [Compare Source](https://togithub.com/python-jsonschema/check-jsonschema/compare/0.28.4...0.28.5) - Update vendored schemas: bitbucket-pipelines, dependabot, github-actions, github-workflows, gitlab-ci, readthedocs, renovate (2024-06-10) - Update bitbucket schema to use the option from the intellij-bitbucket-references-plugin . For more details on this decision, see :issue:`440` . Thanks [@​blade2005](https://togithub.com/blade2005) for the PR! (:pr:`442`) </details> <details> <summary>renovatebot/pre-commit-hooks (renovatebot/pre-commit-hooks)</summary> ### [`v37.420.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.420.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.420.0...37.420.1) See https://github.com/renovatebot/renovate/releases/tag/37.420.1 for more changes ### [`v37.420.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.420.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.419.1...37.420.0) See https://github.com/renovatebot/renovate/releases/tag/37.420.0 for more changes ### [`v37.419.1`](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.418.2...37.419.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.418.2...37.419.1) ### [`v37.418.2`](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.418.1...37.418.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.418.1...37.418.2) ### [`v37.418.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.418.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.417.1...37.418.1) See https://github.com/renovatebot/renovate/releases/tag/37.418.1 for more changes ### [`v37.417.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.417.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.417.0...37.417.1) See https://github.com/renovatebot/renovate/releases/tag/37.417.1 for more changes ### [`v37.417.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.417.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.416.0...37.417.0) See https://github.com/renovatebot/renovate/releases/tag/37.417.0 for more changes ### [`v37.416.0`](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.415.0...37.416.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.415.0...37.416.0) ### [`v37.415.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.415.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.414.1...37.415.0) See https://github.com/renovatebot/renovate/releases/tag/37.415.0 for more changes ### [`v37.414.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.414.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.414.0...37.414.1) See https://github.com/renovatebot/renovate/releases/tag/37.414.1 for more changes ### [`v37.414.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.414.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.413.4...37.414.0) See https://github.com/renovatebot/renovate/releases/tag/37.414.0 for more changes ### [`v37.413.4`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.413.4) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.413.3...37.413.4) See https://github.com/renovatebot/renovate/releases/tag/37.413.4 for more changes ### [`v37.413.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.413.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.413.2...37.413.3) See https://github.com/renovatebot/renovate/releases/tag/37.413.3 for more changes ### [`v37.413.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.413.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.413.1...37.413.2) See https://github.com/renovatebot/renovate/releases/tag/37.413.2 for more changes ### [`v37.413.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.413.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.413.0...37.413.1) See https://github.com/renovatebot/renovate/releases/tag/37.413.1 for more changes ### [`v37.413.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.413.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.412.2...37.413.0) See https://github.com/renovatebot/renovate/releases/tag/37.413.0 for more changes ### [`v37.412.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.412.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.412.1...37.412.2) See https://github.com/renovatebot/renovate/releases/tag/37.412.2 for more changes ### [`v37.412.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.412.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.411.0...37.412.1) See https://github.com/renovatebot/renovate/releases/tag/37.412.1 for more changes ### [`v37.411.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.411.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.410.3...37.411.0) See https://github.com/renovatebot/renovate/releases/tag/37.411.0 for more changes ### [`v37.410.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.410.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.410.2...37.410.3) See https://github.com/renovatebot/renovate/releases/tag/37.410.3 for more changes ### [`v37.410.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.410.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.410.1...37.410.2) See https://github.com/renovatebot/renovate/releases/tag/37.410.2 for more changes ### [`v37.410.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.410.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.409.1...37.410.1) See https://github.com/renovatebot/renovate/releases/tag/37.410.1 for more changes ### [`v37.409.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.409.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.409.0...37.409.1) See https://github.com/renovatebot/renovate/releases/tag/37.409.1 for more changes ### [`v37.409.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.409.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.408.3...37.409.0) See https://github.com/renovatebot/renovate/releases/tag/37.409.0 for more changes ### [`v37.408.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.408.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.408.2...37.408.3) See https://github.com/renovatebot/renovate/releases/tag/37.408.3 for more changes ### [`v37.408.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.408.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.408.1...37.408.2) See https://github.com/renovatebot/renovate/releases/tag/37.408.2 for more changes ### [`v37.408.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.408.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.408.0...37.408.1) See https://github.com/renovatebot/renovate/releases/tag/37.408.1 for more changes ### [`v37.408.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.408.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.407.4...37.408.0) See https://github.com/renovatebot/renovate/releases/tag/37.408.0 for more changes ### [`v37.407.4`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.407.4) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.407.3...37.407.4) See https://github.com/renovatebot/renovate/releases/tag/37.407.4 for more changes ### [`v37.407.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.407.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.407.2...37.407.3) See https://github.com/renovatebot/renovate/releases/tag/37.407.3 for more changes ### [`v37.407.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.407.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.407.1...37.407.2) See https://github.com/renovatebot/renovate/releases/tag/37.407.2 for more changes ### [`v37.407.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.407.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.406.2...37.407.1) See https://github.com/renovatebot/renovate/releases/tag/37.407.1 for more changes ### [`v37.406.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.406.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.406.1...37.406.2) See https://github.com/renovatebot/renovate/releases/tag/37.406.2 for more changes ### [`v37.406.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.406.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.406.0...37.406.1) See https://github.com/renovatebot/renovate/releases/tag/37.406.1 for more changes ### [`v37.406.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.406.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.405.0...37.406.0) See https://github.com/renovatebot/renovate/releases/tag/37.406.0 for more changes ### [`v37.405.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.405.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.399.9...37.405.0) See https://github.com/renovatebot/renovate/releases/tag/37.405.0 for more changes ### [`v37.399.9`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.399.9) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.399.8...37.399.9) See https://github.com/renovatebot/renovate/releases/tag/37.399.9 for more changes ### [`v37.399.8`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.399.8) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.399.6...37.399.8) See https://github.com/renovatebot/renovate/releases/tag/37.399.8 for more changes ### [`v37.399.6`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.399.6) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.399.5...37.399.6) See https://github.com/renovatebot/renovate/releases/tag/37.399.6 for more changes ### [`v37.399.5`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.399.5) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.399.3...37.399.5) See https://github.com/renovatebot/renovate/releases/tag/37.399.5 for more changes ### [`v37.399.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.399.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.399.0...37.399.3) See https://github.com/renovatebot/renovate/releases/tag/37.399.3 for more changes ### [`v37.399.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.399.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.398.2...37.399.0) See https://github.com/renovatebot/renovate/releases/tag/37.399.0 for more changes ### [`v37.398.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.398.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.398.1...37.398.2) See https://github.com/renovatebot/renovate/releases/tag/37.398.2 for more changes ### [`v37.398.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.398.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.398.0...37.398.1) See https://github.com/renovatebot/renovate/releases/tag/37.398.1 for more changes ### [`v37.398.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.398.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.397.0...37.398.0) See https://github.com/renovatebot/renovate/releases/tag/37.398.0 for more changes ### [`v37.397.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.397.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.396.0...37.397.0) See https://github.com/renovatebot/renovate/releases/tag/37.397.0 for more changes ### [`v37.396.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.396.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.395.0...37.396.0) See https://github.com/renovatebot/renovate/releases/tag/37.396.0 for more changes ### [`v37.395.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.395.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.393.0...37.395.0) See https://github.com/renovatebot/renovate/releases/tag/37.395.0 for more changes ### [`v37.393.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.393.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.392.0...37.393.0) See https://github.com/renovatebot/renovate/releases/tag/37.393.0 for more changes ### [`v37.392.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.392.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.391.3...37.392.0) See https://github.com/renovatebot/renovate/releases/tag/37.392.0 for more changes ### [`v37.391.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.391.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.391.2...37.391.3) See https://github.com/renovatebot/renovate/releases/tag/37.391.3 for more changes ### [`v37.391.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.391.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.391.0...37.391.2) See https://github.com/renovatebot/renovate/releases/tag/37.391.2 for more changes ### [`v37.391.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.391.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.390.1...37.391.0) See https://github.com/renovatebot/renovate/releases/tag/37.391.0 for more changes ### [`v37.390.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.390.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.390.0...37.390.1) See https://github.com/renovatebot/renovate/releases/tag/37.390.1 for more changes ### [`v37.390.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.390.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.388.2...37.390.0) See https://github.com/renovatebot/renovate/releases/tag/37.390.0 for more changes ### [`v37.388.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.388.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.388.1...37.388.2) See https://github.com/renovatebot/renovate/releases/tag/37.388.2 for more changes ### [`v37.388.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.388.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.388.0...37.388.1) See https://github.com/renovatebot/renovate/releases/tag/37.388.1 for more changes ### [`v37.388.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.388.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.387.3...37.388.0) See https://github.com/renovatebot/renovate/releases/tag/37.388.0 for more changes ### [`v37.387.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.387.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.387.2...37.387.3) See https://github.com/renovatebot/renovate/releases/tag/37.387.3 for more changes ### [`v37.387.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.387.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.387.0...37.387.2) See https://github.com/renovatebot/renovate/releases/tag/37.387.2 for more changes ### [`v37.387.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.387.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.385.0...37.387.0) See https://github.com/renovatebot/renovate/releases/tag/37.387.0 for more changes ### [`v37.385.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.385.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.384.1...37.385.0) See https://github.com/renovatebot/renovate/releases/tag/37.385.0 for more changes ### [`v37.384.1`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.384.1) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.384.0...37.384.1) See https://github.com/renovatebot/renovate/releases/tag/37.384.1 for more changes ### [`v37.384.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.384.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.382.5...37.384.0) See https://github.com/renovatebot/renovate/releases/tag/37.384.0 for more changes ### [`v37.382.5`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.382.5) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.382.4...37.382.5) See https://github.com/renovatebot/renovate/releases/tag/37.382.5 for more changes ### [`v37.382.4`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.382.4) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.382.3...37.382.4) See https://github.com/renovatebot/renovate/releases/tag/37.382.4 for more changes ### [`v37.382.3`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.382.3) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.382.2...37.382.3) See https://github.com/renovatebot/renovate/releases/tag/37.382.3 for more changes ### [`v37.382.2`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.382.2) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.382.0...37.382.2) See https://github.com/renovatebot/renovate/releases/tag/37.382.2 for more changes ### [`v37.382.0`](https://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.382.0) [Compare Source](https://togithub.com/renovatebot/pre-commit-hooks/compare/37.381.11...37.382.0) See https://github.com/renovatebot/renovate/releases/tag/37.382.0 for more changes </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7am and before 9am every weekday" in timezone America/New_York, 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](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/defenseunicorns/uds-package-gitlab). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJzdXBwb3J0LWRlcHMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Release-As: v17.1.1-uds.0
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli) | patch | `0.11.0` -> `0.11.1` | | [defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli) | patch | `v0.11.0` -> `v0.11.1` | --- ### Release Notes <details> <summary>defenseunicorns/uds-cli (defenseunicorns/uds-cli)</summary> ### [`v0.11.1`](https://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.11.1) [Compare Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.11.0...v0.11.1) ##### What's Changed - chore: run CI tests in parallel, remove alpha status by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/645](https://togithub.com/defenseunicorns/uds-cli/pull/645) - fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/635](https://togithub.com/defenseunicorns/uds-cli/pull/635) - chore: update codeowners by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/647](https://togithub.com/defenseunicorns/uds-cli/pull/647) - docs: add note about UDS_ARCH by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/652](https://togithub.com/defenseunicorns/uds-cli/pull/652) - feat: add file type variables to bundles by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/631](https://togithub.com/defenseunicorns/uds-cli/pull/631) - fix: arch check in PreDeployValidation by [@​TristanHoladay](https://togithub.com/TristanHoladay) in [https://github.com/defenseunicorns/uds-cli/pull/657](https://togithub.com/defenseunicorns/uds-cli/pull/657) - fix(deps): update module github.com/spf13/viper to v1.19.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/651](https://togithub.com/defenseunicorns/uds-cli/pull/651) - chore(deps): update homebrew/actions digest to [`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659) by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/650](https://togithub.com/defenseunicorns/uds-cli/pull/650) - fix(deps): update module golang.org/x/mod to v0.18.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/659](https://togithub.com/defenseunicorns/uds-cli/pull/659) - feat: uds security hub integration by [@​naveensrinivasan](https://togithub.com/naveensrinivasan) in [https://github.com/defenseunicorns/uds-cli/pull/662](https://togithub.com/defenseunicorns/uds-cli/pull/662) - feat: adds --list-images arg to inspect by [@​eFAILution](https://togithub.com/eFAILution) in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - chore: small refactors and docs updates by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/671](https://togithub.com/defenseunicorns/uds-cli/pull/671) - feat: dev deploy --ref and --flavor flags by [@​decleaver](https://togithub.com/decleaver) in [https://github.com/defenseunicorns/uds-cli/pull/638](https://togithub.com/defenseunicorns/uds-cli/pull/638) - fix(deps): update module github.com/defenseunicorns/uds-security-hub to v0.0.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/673](https://togithub.com/defenseunicorns/uds-cli/pull/673) - chore: fix typos by [@​beholdenkey](https://togithub.com/beholdenkey) in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - chore: cleans up lang file and docs, use PRs for brew releases by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/675](https://togithub.com/defenseunicorns/uds-cli/pull/675) - chore(deps): update goreleaser/goreleaser-action action to v6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/defenseunicorns/uds-cli/pull/661](https://togithub.com/defenseunicorns/uds-cli/pull/661) - feat: integrated docs between uds and uds-cli by [@​UnicornChance](https://togithub.com/UnicornChance) in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) - chore: shorten readme before docs site roll out by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/679](https://togithub.com/defenseunicorns/uds-cli/pull/679) - fix: install trivy for security hub and parallelize release by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/680](https://togithub.com/defenseunicorns/uds-cli/pull/680) - fix: release workflow typos by [@​UncleGedd](https://togithub.com/UncleGedd) in [https://github.com/defenseunicorns/uds-cli/pull/681](https://togithub.com/defenseunicorns/uds-cli/pull/681) ##### New Contributors - [@​eFAILution](https://togithub.com/eFAILution) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/599](https://togithub.com/defenseunicorns/uds-cli/pull/599) - [@​beholdenkey](https://togithub.com/beholdenkey) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/676](https://togithub.com/defenseunicorns/uds-cli/pull/676) - [@​UnicornChance](https://togithub.com/UnicornChance) made their first contribution in [https://github.com/defenseunicorns/uds-cli/pull/646](https://togithub.com/defenseunicorns/uds-cli/pull/646) **Full Changelog**: defenseunicorns/uds-cli@v0.11.0...v0.11.1 </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/defenseunicorns/uds-core). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Chance <[email protected]>
This PR introduces two major enhancements to the project:
inspect --list-images Option: This new command-line option allows users to list all the images contained in the packages of a bundle. This feature enhances the usability of the tool by providing a quick and easy way to inspect the images without having to manually parse the bundle or package metadata.
YAML Bundle Reading Capability: The tool can now read and parse bundle metadata directly from a YAML file as the tarball is not always available. The tool reads the YAML file, unmarshals the data into a Bundle struct, and then performs the same operations as it would if the bundle were loaded from an OCI registry.
Related Issue
Fixes #
Relates to #
Type of change
Checklist before merging