Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adds --list-images arg to inspect #599

Merged
merged 14 commits into from
Jun 6, 2024
Merged

Conversation

eFAILution
Copy link
Contributor

@eFAILution eFAILution commented May 9, 2024

This PR introduces two major enhancements to the project:

  1. 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.

  2. 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

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Other (security config, docs update, etc)

Checklist before merging

@eFAILution eFAILution changed the title feat(inspect): Added --list-images option and YAML bundle reading cap… feat(inspect): supports bundle.yaml and adds --list-images arg May 10, 2024
@UncleGedd
Copy link
Collaborator

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 uds-bundle.yaml and following it to its OCI repo, we'll need to dig into the bundle itself to see what images are actually there (recalling that optional components are a thing)

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.

@UncleGedd
Copy link
Collaborator

UncleGedd commented Jun 6, 2024

Paired with @eFAILution and refactored this PR to introduce the --list-images flag. Expected behavior is that users should be able to point uds inspect at a bundle YAML and get a list of images that will be included in the bundle before it gets created

@UncleGedd UncleGedd changed the title feat(inspect): supports bundle.yaml and adds --list-images arg feat: adds --list-images arg to inspect Jun 6, 2024
Copy link
Collaborator

@decleaver decleaver left a 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. :shipit:

@@ -107,6 +107,13 @@ Inspect the `uds-bundle.yaml` of a bundle
1. From an OCI registry: `uds inspect oci://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:
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
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.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
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 {
Copy link
Collaborator

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) {
Copy link
Collaborator

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"`
Copy link
Collaborator

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.

@UncleGedd UncleGedd merged commit 1862f4f into main Jun 6, 2024
12 checks passed
@UncleGedd UncleGedd deleted the feature/list-images branch June 6, 2024 18:47
UnicornChance added a commit to defenseunicorns/uds-core that referenced this pull request Jun 12, 2024
[![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
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#645
- fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#635
- chore: update codeowners by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#647
- docs: add note about UDS_ARCH by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#652
- feat: add file type variables to bundles by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#631
- fix: arch check in PreDeployValidation by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#657
- fix(deps): update module github.com/spf13/viper to v1.19.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#651
- chore(deps): update homebrew/actions digest to
[`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#650
- fix(deps): update module golang.org/x/mod to v0.18.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#659
- feat: uds security hub integration by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#662
- feat: adds --list-images arg to inspect by
[@&#8203;eFAILution](https://togithub.com/eFAILution) in
[defenseunicorns/uds-cli#599
- chore: small refactors and docs updates by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#671
- feat: dev deploy --ref and --flavor flags by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#638
- fix(deps): update module github.com/defenseunicorns/uds-security-hub
to v0.0.7 by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#673
- chore: fix typos by
[@&#8203;beholdenkey](https://togithub.com/beholdenkey) in
[defenseunicorns/uds-cli#676
- chore: cleans up lang file and docs, use PRs for brew releases by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#675
- chore(deps): update goreleaser/goreleaser-action action to v6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#661
- feat: integrated docs between uds and uds-cli by
[@&#8203;UnicornChance](https://togithub.com/UnicornChance) in
[defenseunicorns/uds-cli#646
- chore: shorten readme before docs site roll out by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#679
- fix: install trivy for security hub and parallelize release by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#680
- fix: release workflow typos by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#681

##### New Contributors

- [@&#8203;eFAILution](https://togithub.com/eFAILution) made their first
contribution in
[defenseunicorns/uds-cli#599
- [@&#8203;beholdenkey](https://togithub.com/beholdenkey) made their
first contribution in
[defenseunicorns/uds-cli#676
- [@&#8203;UnicornChance](https://togithub.com/UnicornChance) made their
first contribution in
[defenseunicorns/uds-cli#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 <139784371+UnicornChance@users.noreply.github.com>
Racer159 pushed a commit to defenseunicorns/uds-package-valkey that referenced this pull request Jun 12, 2024
[![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
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#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
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#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
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#645
- fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#635
- chore: update codeowners by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#647
- docs: add note about UDS_ARCH by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#652
- feat: add file type variables to bundles by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#631
- fix: arch check in PreDeployValidation by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#657
- fix(deps): update module github.com/spf13/viper to v1.19.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#651
- chore(deps): update homebrew/actions digest to
[`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#650
- fix(deps): update module golang.org/x/mod to v0.18.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#659
- feat: uds security hub integration by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#662
- feat: adds --list-images arg to inspect by
[@&#8203;eFAILution](https://togithub.com/eFAILution) in
[defenseunicorns/uds-cli#599
- chore: small refactors and docs updates by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#671
- feat: dev deploy --ref and --flavor flags by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#638
- fix(deps): update module github.com/defenseunicorns/uds-security-hub
to v0.0.7 by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#673
- chore: fix typos by
[@&#8203;beholdenkey](https://togithub.com/beholdenkey) in
[defenseunicorns/uds-cli#676
- chore: cleans up lang file and docs, use PRs for brew releases by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#675
- chore(deps): update goreleaser/goreleaser-action action to v6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#661
- feat: integrated docs between uds and uds-cli by
[@&#8203;UnicornChance](https://togithub.com/UnicornChance) in
[defenseunicorns/uds-cli#646
- chore: shorten readme before docs site roll out by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#679
- fix: install trivy for security hub and parallelize release by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#680
- fix: release workflow typos by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#681

##### New Contributors

- [@&#8203;eFAILution](https://togithub.com/eFAILution) made their first
contribution in
[defenseunicorns/uds-cli#599
- [@&#8203;beholdenkey](https://togithub.com/beholdenkey) made their
first contribution in
[defenseunicorns/uds-cli#676
- [@&#8203;UnicornChance](https://togithub.com/UnicornChance) made their
first contribution in
[defenseunicorns/uds-cli#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
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#574
- fix(deps): update golang.org/x/exp digest to
[`fe59bbe`](https://togithub.com/defenseunicorns/uds-cli/commit/fe59bbe)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#571
- chore(deps): update github/codeql-action action to v3.25.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#570
- fix(deps): update module github.com/defenseunicorns/pkg/oci to v0.0.2
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#576
- fix: permit absolute paths for bundle create by
[@&#8203;ZachGallagher](https://togithub.com/ZachGallagher) in
[defenseunicorns/uds-cli#554
- fix: ensure we handle paths correctly in dev deploy by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#582
- chore(deps): update actions/download-artifact action to v4.1.7 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#573
- fix(deps): update module github.com/defenseunicorns/pkg/helpers to
v1.1.1 by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#575
- chore(deps): update actions/checkout action to v4.1.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#578
- chore(deps): update actions/upload-artifact action to v4.3.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#579
- chore(deps): update github/codeql-action action to v3.25.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#580
- chore(deps): update anchore/sbom-action action to v0.15.11 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#587
- chore: ensure vendored tools versions print out by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#586
- chore(deps): update actions/checkout action to v4.1.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#597
- chore(deps): update github/codeql-action action to v3.25.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#595
- fix(deps): update module golang.org/x/exp to
v0.0.0-20240506185415-9bf2ced13842 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#593
- chore(deps): update actions/setup-go action to v5.0.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#590
- chore: update contributing doc by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#598
- chore: swap Makefile for Maru by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#602
- chore(deps): update github/codeql-action action to v3.25.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#606
- fix(deps): update module github.com/defenseunicorns/pkg/helpers to
v1.1.2 by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#605
- chore(deps): update ossf/scorecard-action action to v2.3.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#601
- chore(deps): update goreleaser/goreleaser-action action to v5.1.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#604
- chore: bump Go version to 1.21.10 by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#609
- feat: remove q for canceling deploy by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#603
- chore: remove dead end code by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#611
- chore: test getArch by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#621
- chore(deps): update actions/checkout action to v4.1.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#619
- chore(deps): update homebrew/actions digest to
[`677db44`](https://togithub.com/defenseunicorns/uds-cli/commit/677db44)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#620
- chore(deps): update github/codeql-action action to v3.25.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#625
- chore(deps): update anchore/sbom-action action to v0.16.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#623
- feat: allow helm overrides from valuesfile by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#594
- chore: removes bubbletea tui by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#626
- chore: update linting configuration by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#627
- docs: dev deploy ADR by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#560
- fix(deps): update module helm.sh/helm/v3 to v3.15.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#612
- feat: strict bundle yaml validation by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#596
- feat: dev deploy remote bundles by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#629
- chore: update to de-zarfed Maru by
[@&#8203;Racer159](https://togithub.com/Racer159) in
[defenseunicorns/uds-cli#636
- fix(deps): update module helm.sh/helm/v3 to v3.15.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#634
- chore(deps): update docker/login-action action to v3.2.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#640
- chore(deps): update homebrew/actions digest to
[`a618804`](https://togithub.com/defenseunicorns/uds-cli/commit/a618804)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#632
- fix(deps): update golang.org/x/exp digest to
[`4c93da0`](https://togithub.com/defenseunicorns/uds-cli/commit/4c93da0)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#639
- chore(deps): update podinfo to v6.6.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#633
- chore(deps): update zarf to v0.33.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#585
- feat: remove unnecessary bundle layers and refactor verification by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#622
- feat: uds config validation by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#618
- fix: ensures partial pkgs are correct and adds smoke test to workflows
by [@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#643
- fix: typo in Zarf pkg name and refactor smoke test workflow by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#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
([#&#8203;143](https://togithub.com/defenseunicorns/uds-common/issues/143))

##### Miscellaneous

- update publish to take architecture as an input
([#&#8203;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
[@&#8203;Noxsios](https://togithub.com/Noxsios) in
[defenseunicorns/zarf#2419
- docs: add additional detail to security policy by
[@&#8203;salaxander](https://togithub.com/salaxander) in
[defenseunicorns/zarf#2488
- chore: cleanup stale grype ignores and patch golang.org/x/net CVE by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2492
- docs: injector and init package reference material by
[@&#8203;Noxsios](https://togithub.com/Noxsios) in
[defenseunicorns/zarf#2468
- chore: patch CVE-2024-3817 by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2498
- refactor: cleaner image pulls by
[@&#8203;Noxsios](https://togithub.com/Noxsios) in
[defenseunicorns/zarf#2460
- chore: adding [@&#8203;dgershman](https://togithub.com/dgershman) by
[@&#8203;dgershman](https://togithub.com/dgershman) in
[defenseunicorns/zarf#2506
- refactor: context usage in k8s code by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2405
- ci: run revive using golang-lint-ci by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2499
- feat: update injector away from rouille to axum by
[@&#8203;schristoff](https://togithub.com/schristoff) in
[defenseunicorns/zarf#2457
- refactor: enable testifylint linter by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2504
- chore: remove rouille CVE from grype ignore by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2515
- fix(agent): missing path for pod without labels by
[@&#8203;brandtkeller](https://togithub.com/brandtkeller) in
[defenseunicorns/zarf#2518
- fix: adopt namespace metadata by
[@&#8203;AustinAbro321](https://togithub.com/AustinAbro321) in
[defenseunicorns/zarf#2494
- refactor: enable ineffassign linter by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2500
- test: cluster getDeployedPackages by
[@&#8203;AustinAbro321](https://togithub.com/AustinAbro321) in
[defenseunicorns/zarf#2523
- test: add unit tests for merge zarf state by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2522
- test: pod agent unit tests by
[@&#8203;AustinAbro321](https://togithub.com/AustinAbro321) in
[defenseunicorns/zarf#2526
- docs: add google analytics for docs pages by
[@&#8203;salaxander](https://togithub.com/salaxander) in
[defenseunicorns/zarf#2530
- test: add unit tests for detect distro by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2521
- test: add tests for injector by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2534
- chore: add codecov by
[@&#8203;schristoff-du](https://togithub.com/schristoff-du) in
[defenseunicorns/zarf#2529
- chore: add unit tests for creator.LoadPackageDefinition by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2531
- test: refactor network test by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2533
- test: agent flux unit test by
[@&#8203;AustinAbro321](https://togithub.com/AustinAbro321) in
[defenseunicorns/zarf#2528
- chore: fix codecov by
[@&#8203;schristoff](https://togithub.com/schristoff) in
[defenseunicorns/zarf#2538
- test: creator.ComposeComponents by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2537
- refactor: remove use of k8s serivce account by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2544
- refactor: remove use of k8s service by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2543
- refactor: remove use of k8s configmap by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2541
- refactor: remove use of k8s hpa by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2542
- test: add secrets tests by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2540
- refactor: allow callers to directly set logfile location by
[@&#8203;Noxsios](https://togithub.com/Noxsios) in
[defenseunicorns/zarf#2545
- test: add test for packager source by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2525
- chore: add unit tests to variables pkg by
[@&#8203;Racer159](https://togithub.com/Racer159) in
[defenseunicorns/zarf#2519
- test: clean up tests for composer by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2532
- test: argo agent unit tests by
[@&#8203;AustinAbro321](https://togithub.com/AustinAbro321) in
[defenseunicorns/zarf#2536
- fix(release): do not delete testdata in release workflow by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2547

**Full Changelog**:
defenseunicorns/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
[@&#8203;AustinAbro321](https://togithub.com/AustinAbro321) in
[defenseunicorns/zarf#2463
- docs: add contributor covenant code of conduct by
[@&#8203;salaxander](https://togithub.com/salaxander) in
[defenseunicorns/zarf#2462
- docs: fix casing on code of conduct badge by
[@&#8203;salaxander](https://togithub.com/salaxander) in
[defenseunicorns/zarf#2466
- fix(deps): update github.com/anchore/clio digest to
[`3c4abf8`](https://togithub.com/defenseunicorns/zarf/commit/3c4abf8) by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/zarf#2424
- fix: update docker media type in registry by
[@&#8203;AustinAbro321](https://togithub.com/AustinAbro321) in
[defenseunicorns/zarf#2476
- fix: adds GetVariableConfig function for packager by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/zarf#2475
- test: add tests for remove copies from components to enable
refactoring by [@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2473
- fix!: do not uninstall helm chart after failed install or upgrade by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2456
- feat: inspect --list-images by
[@&#8203;Noxsios](https://togithub.com/Noxsios) in
[defenseunicorns/zarf#2478
- refactor: remove copies from components to a filter by
[@&#8203;phillebaba](https://togithub.com/phillebaba) in
[defenseunicorns/zarf#2474
- chore: add support.md by
[@&#8203;schristoff](https://togithub.com/schristoff) in
[defenseunicorns/zarf#2480
- chore: add a check for go mod tidy by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2481
- fix: use correct sha256 checksum for arm64 injector binary by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2483
- fix: simplify go mod tidy check by
[@&#8203;lucasrod16](https://togithub.com/lucasrod16) in
[defenseunicorns/zarf#2482

##### New Contributors

- [@&#8203;salaxander](https://togithub.com/salaxander) made their first
contribution in
[defenseunicorns/zarf#2462
- [@&#8203;phillebaba](https://togithub.com/phillebaba) made their first
contribution in
[defenseunicorns/zarf#2473
- [@&#8203;schristoff](https://togithub.com/schristoff) made their first
contribution in
[defenseunicorns/zarf#2480

**Full Changelog**:
defenseunicorns/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
([#&#8203;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
[@&#8203;spencerschrock](https://togithub.com/spencerschrock) in
[ossf/scorecard-action#1366
- 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc1 to
v5.0.0-rc2 by
[@&#8203;spencerschrock](https://togithub.com/spencerschrock) in
[ossf/scorecard-action#1374
- 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc2 to
v5.0.0-rc2.0.20240509182734-7ce860946928 by
[@&#8203;spencerschrock](https://togithub.com/spencerschrock) in
[ossf/scorecard-action#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
[@&#8203;spencerschrock](https://togithub.com/spencerschrock) in
[ossf/scorecard-action#1279
- 📖 link to `ossf/scorecard` workflow instead of maintaining an
example by [@&#8203;spencerschrock](https://togithub.com/spencerschrock)
in
[ossf/scorecard-action#1352
- 📖 update api links to new scorecard.dev site by
[@&#8203;spencerschrock](https://togithub.com/spencerschrock) in
[ossf/scorecard-action#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
Racer159 pushed a commit to defenseunicorns/uds-package-postgres-operator that referenced this pull request Jun 12, 2024
[![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
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#645
- fix(deps): update module github.com/defenseunicorns/pkg/helpers to v2
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#635
- chore: update codeowners by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#647
- docs: add note about UDS_ARCH by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#652
- feat: add file type variables to bundles by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#631
- fix: arch check in PreDeployValidation by
[@&#8203;TristanHoladay](https://togithub.com/TristanHoladay) in
[defenseunicorns/uds-cli#657
- fix(deps): update module github.com/spf13/viper to v1.19.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#651
- chore(deps): update homebrew/actions digest to
[`24e4659`](https://togithub.com/defenseunicorns/uds-cli/commit/24e4659)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#650
- fix(deps): update module golang.org/x/mod to v0.18.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#659
- feat: uds security hub integration by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#662
- feat: adds --list-images arg to inspect by
[@&#8203;eFAILution](https://togithub.com/eFAILution) in
[defenseunicorns/uds-cli#599
- chore: small refactors and docs updates by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#671
- feat: dev deploy --ref and --flavor flags by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#638
- fix(deps): update module github.com/defenseunicorns/uds-security-hub
to v0.0.7 by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#673
- chore: fix typos by
[@&#8203;beholdenkey](https://togithub.com/beholdenkey) in
[defenseunicorns/uds-cli#676
- chore: cleans up lang file and docs, use PRs for brew releases by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#675
- chore(deps): update goreleaser/goreleaser-action action to v6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#661
- feat: integrated docs between uds and uds-cli by
[@&#8203;UnicornChance](https://togithub.com/UnicornChance) in
[defenseunicorns/uds-cli#646
- chore: shorten readme before docs site roll out by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#679
- fix: install trivy for security hub and parallelize release by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#680
- fix: release workflow typos by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#681

##### New Contributors

- [@&#8203;eFAILution](https://togithub.com/eFAILution) made their first
contribution in
[defenseunicorns/uds-cli#599
- [@&#8203;beholdenkey](https://togithub.com/beholdenkey) made their
first contribution in
[defenseunicorns/uds-cli#676
- [@&#8203;UnicornChance](https://togithub.com/UnicornChance) made their
first contribution in
[defenseunicorns/uds-cli#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
([#&#8203;143](https://togithub.com/defenseunicorns/uds-common/issues/143))

##### Miscellaneous

- update publish to take architecture as an input
([#&#8203;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
([#&#8203;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
([#&#8203;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
([#&#8203;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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants