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

refactor: break --insecure into separate flags #2936

Merged
merged 2 commits into from
Sep 13, 2024

Conversation

joonas
Copy link
Contributor

@joonas joonas commented Aug 28, 2024

Description

Attempting to break up the --insecure global flag into four separate flags:

  • --plain-http
  • --insecure-skip-tls-verify
  • --skip-signature-validation

Related Issue

Fixes #2860

Relates to #

Checklist before merging

@joonas joonas requested review from a team as code owners August 28, 2024 03:14
Copy link

netlify bot commented Aug 28, 2024

Deploy Preview for zarf-docs canceled.

Name Link
🔨 Latest commit 868c7c0
🔍 Latest deploy log https://app.netlify.com/sites/zarf-docs/deploys/66e2fce0e2bc7d0008ec16d7

@AustinAbro321
Copy link
Contributor

Great question, unfortunately the insecure flag is pretty overloaded. I think it'll be better to just create two more flags to replace it's behavior

For this block, add a flag called --insecure-no-shasum to just the zarf package pull command zarf/src/pkg/packager/sources/url.go

For this block, add a flag called --insecure-no-signature-validation to the zarf package command zarf/src/pkg/packager/sources/validate.go

You can add these new fields to the types.ZarfPackageOptions struct

Copy link
Contributor

@AustinAbro321 AustinAbro321 left a comment

Choose a reason for hiding this comment

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

Great start, left some feedback. Could you also replace the uses of --insecure in the test suite. Leave one use of --insecure for each new flag so we can test that the flag still works though deprecated.

src/cmd/root.go Outdated Show resolved Hide resolved
src/cmd/root.go Outdated Show resolved Hide resolved
src/config/config.go Outdated Show resolved Hide resolved
src/cmd/root.go Outdated Show resolved Hide resolved
@joonas joonas force-pushed the refactor/break-apart-insecure-flag branch 6 times, most recently from 38a4cd8 to cac41bc Compare August 29, 2024 05:27
@joonas joonas changed the title refactor: break --insecure into --http-only and --tls-skip-verify refactor: break --insecure into separate flags Aug 29, 2024
@joonas joonas force-pushed the refactor/break-apart-insecure-flag branch 2 times, most recently from 6910fe6 to 613ae19 Compare August 29, 2024 05:35
@joonas
Copy link
Contributor Author

joonas commented Aug 29, 2024

@AustinAbro321 appreciate all the feedback, I tried to make sure I addressed it diligently, but please let me know if I missed the mark somewhere.

I haven't yet had a chance to revisit the use of --insecure in the test suite, but on a cursory look across the tests that contain the flag I noticed there's probably a combination of the above flag changes should be applied.

My plan for how I was going to address the tests is as follows:

  1. Where --insecure is being replaced with --insecure-skip-tls-verify and --plain-http, replace the --insecure flag with both of those in each case
  2. Where --insecure is being replaced with --insecure-no-signature-validation, apply that across the impacted examples
  3. Where --insecure is being replaced with --insecure-no-shasum, apply that across the impacted examples

Does that roughly line up with what you had in mind?

@phillebaba
Copy link
Member

phillebaba commented Aug 29, 2024

Some comments about this change. First of all we should stop adding things to the whole lang package as it is something that should be removed. Second of all I don't see the point of adding an "insecure" prefix to all of these flags. I am fine with --insecure-skip-tls-verify and --plain-http as they are common in other projects. The other two flags should be called something else or not exist at all. I suggest renaming --insecure-no-signature-validation to --skip-signature-validation.

I'm confused on the point of being able to disable digest verification while pulling? If the digests do not match something has gone very wrong. It also result in confusion for users in the future who assume that a package pulled has the expected digest.

@AustinAbro321
Copy link
Contributor

Yeah that looks like a solid strategy for changing the flag in tests @joonas

Good point @phillebaba, I doubt anyone is relying on the insecure feature for zarf package pull and if they are they shouldn't be. I also like --skip-signature-validation better

@joonas joonas force-pushed the refactor/break-apart-insecure-flag branch from b67d55e to 0896cb9 Compare September 1, 2024 22:54
@joonas
Copy link
Contributor Author

joonas commented Sep 1, 2024

I believe I've now addressed all of test cases and instances of where the flags were used 🙂

@joonas joonas force-pushed the refactor/break-apart-insecure-flag branch from 0896cb9 to 5352382 Compare September 1, 2024 23:02
Copy link
Member

@phillebaba phillebaba 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 I have a small thing that we need to verify if it is an issue or not before merging.

Copy link

codecov bot commented Sep 3, 2024

@phillebaba
Copy link
Member

@joonas I have verified that setting a pre run function in a sub command disables the root pre run. Which would explain why the tests are currently failing.

@joonas
Copy link
Contributor Author

joonas commented Sep 4, 2024

@joonas I have verified that setting a pre run function in a sub command disables the root pre run. Which would explain why the tests are currently failing.

Ah, it looks like to enable this behavior, the EnableTraverseRunHooks variable introduced in spf13/cobra#2044 needs to be set to true.

Does that seem like a reasonable change to make, or would you rather have the logic for setting pkgConfig.PkgOpts.SkipSignatureValidation to true if config.CommonOptions.Insecure is set to true copied to each sub command under the package command where it might be used?

I'm fine to go either way if changing the global flag in Cobra seems like too much of a behavior change to resolve this.

@phillebaba
Copy link
Member

Looks like my comments about the pre run functions did not make it with my review. Or I cant find it anymore.

In it I shared that I was unsure about enabling EnableTraverseRunHooks due to it being a global variable. My first thought when finding the same issue that you did a while back was to enable it. However because Zarf embeds other commands it makes me unsure if this would cause unexpected behavior in these tools.

In the end we probably want to get away from the shared package options struct which is currently in use. My other suggestion would be to put it in the root pre run function. Thinking about it now I would prefer the code duplication over that option.

@joonas joonas force-pushed the refactor/break-apart-insecure-flag branch 5 times, most recently from b00371e to d501d49 Compare September 7, 2024 03:33
@joonas
Copy link
Contributor Author

joonas commented Sep 7, 2024

@AustinAbro321 @phillebaba I finally had a chance to go back and fix the one e2e test that was failing due to the help text changes.

I've also re-generated the command docs pages to incorporate the flag changes and I went ahead and rebased on top of the latest changes (as of Friday evening)

This should hopefully be all that's needed to have the test suite now pass with flying colors 🙂

Copy link
Contributor

@AustinAbro321 AustinAbro321 left a comment

Choose a reason for hiding this comment

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

It's close, requested a few more changes. Thank you for taking this on.

src/test/e2e/11_oci_pull_inspect_test.go Outdated Show resolved Hide resolved
src/test/e2e/11_oci_pull_inspect_test.go Outdated Show resolved Hide resolved
src/cmd/package.go Outdated Show resolved Hide resolved
Fixes zarf-dev#2860

Signed-off-by: Joonas Bergius <joonas@bergi.us>
Copy link
Contributor

@AustinAbro321 AustinAbro321 left a comment

Choose a reason for hiding this comment

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

LGTM! Will need @phillebaba to approve as well

Copy link
Member

@phillebaba phillebaba left a comment

Choose a reason for hiding this comment

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

LGTM

@phillebaba phillebaba added this pull request to the merge queue Sep 13, 2024
Merged via the queue into zarf-dev:main with commit 90a4331 Sep 13, 2024
40 checks passed
@joonas joonas deleted the refactor/break-apart-insecure-flag branch September 13, 2024 21:39
mjnagel referenced this pull request in defenseunicorns/uds-core Sep 20, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/zarf-dev/packages/init | minor | `v0.39.0` -> `v0.40.1` |
| [zarf-dev/zarf](https://redirect.github.com/zarf-dev/zarf) | minor |
`v0.39.0` -> `v0.40.1` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>zarf-dev/zarf (zarf-dev/zarf)</summary>

###
[`v0.40.1`](https://redirect.github.com/zarf-dev/zarf/releases/tag/v0.40.1)

[Compare
Source](https://redirect.github.com/zarf-dev/zarf/compare/v0.40.0...v0.40.1)

#### What's Changed

- chore(deps): bump actions/create-github-app-token from 1.10.3 to
1.10.4 by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/zarf-dev/zarf/pull/2968](https://redirect.github.com/zarf-dev/zarf/pull/2968)
- fix: imported helm overrides by
[@&#8203;rjferguson21](https://redirect.github.com/rjferguson21) in
[https://github.com/zarf-dev/zarf/pull/2967](https://redirect.github.com/zarf-dev/zarf/pull/2967)
- chore: only show config file if there is one by
[@&#8203;catsby](https://redirect.github.com/catsby) in
[https://github.com/zarf-dev/zarf/pull/2985](https://redirect.github.com/zarf-dev/zarf/pull/2985)
- refactor: trim named returns in pkg
[#&#8203;2950](https://redirect.github.com/zarf-dev/zarf/issues/2950) by
[@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2979](https://redirect.github.com/zarf-dev/zarf/pull/2979)
- chore: finish removing named returns outside of package and extensions
[#&#8203;2950](https://redirect.github.com/zarf-dev/zarf/issues/2950) by
[@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2987](https://redirect.github.com/zarf-dev/zarf/pull/2987)
- chore: ensure we return zeroed value when returning errors by
[@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2988](https://redirect.github.com/zarf-dev/zarf/pull/2988)
- chore(deps): bump actions/create-github-app-token from 1.10.4 to
1.11.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/zarf-dev/zarf/pull/2991](https://redirect.github.com/zarf-dev/zarf/pull/2991)
- refactor: break --insecure into separate flags by
[@&#8203;joonas](https://redirect.github.com/joonas) in
[https://github.com/zarf-dev/zarf/pull/2936](https://redirect.github.com/zarf-dev/zarf/pull/2936)
- ci: stop codeql on merge queue by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2934](https://redirect.github.com/zarf-dev/zarf/pull/2934)
- fix: add shasum flag and test for https pull by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2998](https://redirect.github.com/zarf-dev/zarf/pull/2998)
- chore(deps): bump github/codeql-action from 3.26.6 to 3.26.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2997](https://redirect.github.com/zarf-dev/zarf/pull/2997)
- refactor: pull command by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2989](https://redirect.github.com/zarf-dev/zarf/pull/2989)
- docs: update dos-games refs by
[@&#8203;jasonwashburn](https://redirect.github.com/jasonwashburn) in
[https://github.com/zarf-dev/zarf/pull/3004](https://redirect.github.com/zarf-dev/zarf/pull/3004)
- refactor: lint by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/3000](https://redirect.github.com/zarf-dev/zarf/pull/3000)
- refactor: mirror-resources by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2975](https://redirect.github.com/zarf-dev/zarf/pull/2975)
- fix: gittributes to ignore image file endings by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/3012](https://redirect.github.com/zarf-dev/zarf/pull/3012)

#### New Contributors

- [@&#8203;rjferguson21](https://redirect.github.com/rjferguson21) made
their first contribution in
[https://github.com/zarf-dev/zarf/pull/2967](https://redirect.github.com/zarf-dev/zarf/pull/2967)
- [@&#8203;catsby](https://redirect.github.com/catsby) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2985](https://redirect.github.com/zarf-dev/zarf/pull/2985)
- [@&#8203;mkcp](https://redirect.github.com/mkcp) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2979](https://redirect.github.com/zarf-dev/zarf/pull/2979)
- [@&#8203;joonas](https://redirect.github.com/joonas) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2936](https://redirect.github.com/zarf-dev/zarf/pull/2936)

**Full Changelog**:
zarf-dev/zarf@v0.39.0...v0.40.1

###
[`v0.40.0`](https://redirect.github.com/zarf-dev/zarf/compare/v0.39.0...v0.40.0)

[Compare
Source](https://redirect.github.com/zarf-dev/zarf/compare/v0.39.0...v0.40.0)

</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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/defenseunicorns/uds-core).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Racer159 referenced this pull request in defenseunicorns/uds-package-gitlab Sep 24, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/upload-artifact](https://redirect.github.com/actions/upload-artifact)
| action | minor | `v4.3.6` -> `v4.4.0` |
|
[defenseunicorns/zarf](https://redirect.github.com/defenseunicorns/zarf)
| | minor | `v0.38.0` -> `v0.40.1` |
|
[github/codeql-action](https://redirect.github.com/github/codeql-action)
| action | patch | `v3.26.0` -> `v3.26.8` |
|
[golangci/golangci-lint](https://redirect.github.com/golangci/golangci-lint)
| repository | minor | `v1.59.1` -> `v1.61.0` |
|
[python-jsonschema/check-jsonschema](https://redirect.github.com/python-jsonschema/check-jsonschema)
| repository | patch | `0.29.1` -> `0.29.2` |
|
[renovatebot/pre-commit-hooks](https://redirect.github.com/renovatebot/pre-commit-hooks)
| repository | minor | `38.23.2` -> `38.94.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://redirect.github.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.4.0`](https://redirect.github.com/actions/upload-artifact/compare/v4.3.6...v4.4.0)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.6...v4.4.0)

</details>

<details>
<summary>defenseunicorns/zarf (defenseunicorns/zarf)</summary>

###
[`v0.40.1`](https://redirect.github.com/zarf-dev/zarf/releases/tag/v0.40.1)

[Compare
Source](https://redirect.github.com/defenseunicorns/zarf/compare/v0.40.0...v0.40.1)

##### What's Changed

- chore(deps): bump actions/create-github-app-token from 1.10.3 to
1.10.4 by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/zarf-dev/zarf/pull/2968](https://redirect.github.com/zarf-dev/zarf/pull/2968)
- fix: imported helm overrides by
[@&#8203;rjferguson21](https://redirect.github.com/rjferguson21) in
[https://github.com/zarf-dev/zarf/pull/2967](https://redirect.github.com/zarf-dev/zarf/pull/2967)
- chore: only show config file if there is one by
[@&#8203;catsby](https://redirect.github.com/catsby) in
[https://github.com/zarf-dev/zarf/pull/2985](https://redirect.github.com/zarf-dev/zarf/pull/2985)
- refactor: trim named returns in pkg
[#&#8203;2950](https://redirect.github.com/defenseunicorns/zarf/issues/2950)
by [@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2979](https://redirect.github.com/zarf-dev/zarf/pull/2979)
- chore: finish removing named returns outside of package and extensions
[#&#8203;2950](https://redirect.github.com/defenseunicorns/zarf/issues/2950)
by [@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2987](https://redirect.github.com/zarf-dev/zarf/pull/2987)
- chore: ensure we return zeroed value when returning errors by
[@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2988](https://redirect.github.com/zarf-dev/zarf/pull/2988)
- chore(deps): bump actions/create-github-app-token from 1.10.4 to
1.11.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/zarf-dev/zarf/pull/2991](https://redirect.github.com/zarf-dev/zarf/pull/2991)
- refactor: break --insecure into separate flags by
[@&#8203;joonas](https://redirect.github.com/joonas) in
[https://github.com/zarf-dev/zarf/pull/2936](https://redirect.github.com/zarf-dev/zarf/pull/2936)
- ci: stop codeql on merge queue by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2934](https://redirect.github.com/zarf-dev/zarf/pull/2934)
- fix: add shasum flag and test for https pull by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2998](https://redirect.github.com/zarf-dev/zarf/pull/2998)
- chore(deps): bump github/codeql-action from 3.26.6 to 3.26.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2997](https://redirect.github.com/zarf-dev/zarf/pull/2997)
- refactor: pull command by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2989](https://redirect.github.com/zarf-dev/zarf/pull/2989)
- docs: update dos-games refs by
[@&#8203;jasonwashburn](https://redirect.github.com/jasonwashburn) in
[https://github.com/zarf-dev/zarf/pull/3004](https://redirect.github.com/zarf-dev/zarf/pull/3004)
- refactor: lint by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/3000](https://redirect.github.com/zarf-dev/zarf/pull/3000)
- refactor: mirror-resources by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2975](https://redirect.github.com/zarf-dev/zarf/pull/2975)
- fix: gittributes to ignore image file endings by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/3012](https://redirect.github.com/zarf-dev/zarf/pull/3012)

##### New Contributors

- [@&#8203;rjferguson21](https://redirect.github.com/rjferguson21) made
their first contribution in
[https://github.com/zarf-dev/zarf/pull/2967](https://redirect.github.com/zarf-dev/zarf/pull/2967)
- [@&#8203;catsby](https://redirect.github.com/catsby) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2985](https://redirect.github.com/zarf-dev/zarf/pull/2985)
- [@&#8203;mkcp](https://redirect.github.com/mkcp) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2979](https://redirect.github.com/zarf-dev/zarf/pull/2979)
- [@&#8203;joonas](https://redirect.github.com/joonas) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2936](https://redirect.github.com/zarf-dev/zarf/pull/2936)

**Full Changelog**:
https://github.com/zarf-dev/zarf/compare/v0.39.0...v0.40.1

###
[`v0.40.0`](https://redirect.github.com/defenseunicorns/zarf/compare/v0.39.0...v0.40.0)

[Compare
Source](https://redirect.github.com/defenseunicorns/zarf/compare/v0.39.0...v0.40.0)

###
[`v0.39.0`](https://redirect.github.com/zarf-dev/zarf/releases/tag/v0.39.0)

[Compare
Source](https://redirect.github.com/defenseunicorns/zarf/compare/v0.38.3...v0.39.0)

#### What's Changed

- chore: update dos games release by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2921](https://redirect.github.com/zarf-dev/zarf/pull/2921)
- ci: id-token write application packages by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2923](https://redirect.github.com/zarf-dev/zarf/pull/2923)
- docs: update dos games example by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2924](https://redirect.github.com/zarf-dev/zarf/pull/2924)
- chore(deps): bump github/codeql-action from 3.26.4 to 3.26.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2927](https://redirect.github.com/zarf-dev/zarf/pull/2927)
- chore: schema adr by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2600](https://redirect.github.com/zarf-dev/zarf/pull/2600)
- fix: remove use of pkg/errors by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2937](https://redirect.github.com/zarf-dev/zarf/pull/2937)
- refactor: remove use of named returns in packager by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2940](https://redirect.github.com/zarf-dev/zarf/pull/2940)
- chore(deps): bump github/codeql-action from 3.26.5 to 3.26.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2948](https://redirect.github.com/zarf-dev/zarf/pull/2948)
- refactor: remove printing available Helm charts and versions when the
Chart is not found by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2944](https://redirect.github.com/zarf-dev/zarf/pull/2944)
- refactor: remove connect strings from packager property by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2941](https://redirect.github.com/zarf-dev/zarf/pull/2941)
- fix(ci): test-imports workflow breaks when called from a fork by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2946](https://redirect.github.com/zarf-dev/zarf/pull/2946)
- feat: add health checks by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2678](https://redirect.github.com/zarf-dev/zarf/pull/2678)
- refactor: move finding table printing to CLI by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2960](https://redirect.github.com/zarf-dev/zarf/pull/2960)
- docs: update docs item in update Q2 roadmap by
[@&#8203;eknowles](https://redirect.github.com/eknowles) in
[https://github.com/zarf-dev/zarf/pull/2958](https://redirect.github.com/zarf-dev/zarf/pull/2958)
- chore(deps): bump actions/upload-artifact from 4.3.6 to 4.4.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2957](https://redirect.github.com/zarf-dev/zarf/pull/2957)
- fix: progress bar image name flashes on push by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2965](https://redirect.github.com/zarf-dev/zarf/pull/2965)

#### New Contributors

- [@&#8203;eknowles](https://redirect.github.com/eknowles) made their
first contribution in
[https://github.com/zarf-dev/zarf/pull/2958](https://redirect.github.com/zarf-dev/zarf/pull/2958)

**Full Changelog**:
https://github.com/zarf-dev/zarf/compare/v0.38.3...v0.39.0

###
[`v0.38.3`](https://redirect.github.com/zarf-dev/zarf/releases/tag/v0.38.3)

[Compare
Source](https://redirect.github.com/defenseunicorns/zarf/compare/v0.38.2...v0.38.3)

#### What's Changed

- fix: linter warnings in new Golang CI version by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2883](https://redirect.github.com/zarf-dev/zarf/pull/2883)
- chore(deps): bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2871](https://redirect.github.com/zarf-dev/zarf/pull/2871)
- chore(deps): bump github/codeql-action from 3.26.0 to 3.26.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2881](https://redirect.github.com/zarf-dev/zarf/pull/2881)
- test: move oci compose tests that don't need cluster by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2878](https://redirect.github.com/zarf-dev/zarf/pull/2878)
- chore(deps): bump github.com/mikefarah/yq/v4 from 4.44.2 to 4.44.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2870](https://redirect.github.com/zarf-dev/zarf/pull/2870)
- refactor: findImages to return errors immediately by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2851](https://redirect.github.com/zarf-dev/zarf/pull/2851)
- test: add workflow to make sure importing Zarf works by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2874](https://redirect.github.com/zarf-dev/zarf/pull/2874)
- refactor: remove unnecessary retry logic from data injection by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2867](https://redirect.github.com/zarf-dev/zarf/pull/2867)
- docs: explain no wait & helm hooks interaction by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2895](https://redirect.github.com/zarf-dev/zarf/pull/2895)
- refactor: store managed secrets and add tests by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2892](https://redirect.github.com/zarf-dev/zarf/pull/2892)
- chore(deps): bump github/codeql-action from 3.26.1 to 3.26.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2888](https://redirect.github.com/zarf-dev/zarf/pull/2888)
- chore(deps): bump actions/setup-go from 5.0.0 to 5.0.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2901](https://redirect.github.com/zarf-dev/zarf/pull/2901)
- fix: update injector by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2910](https://redirect.github.com/zarf-dev/zarf/pull/2910)
- chore(deps): bump github/codeql-action from 3.26.2 to 3.26.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2916](https://redirect.github.com/zarf-dev/zarf/pull/2916)
- fix: update creds not breaking when internal git server not deployed
by [@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2904](https://redirect.github.com/zarf-dev/zarf/pull/2904)
- feat: better error message on helm fail by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2914](https://redirect.github.com/zarf-dev/zarf/pull/2914)
- ci: increase lint timeout by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2919](https://redirect.github.com/zarf-dev/zarf/pull/2919)
- fix: evaulate templates on schema check by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2911](https://redirect.github.com/zarf-dev/zarf/pull/2911)
- chore: update workflow to use new key by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2920](https://redirect.github.com/zarf-dev/zarf/pull/2920)
- ci: permission at job level by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2922](https://redirect.github.com/zarf-dev/zarf/pull/2922)

**Full Changelog**:
https://github.com/zarf-dev/zarf/compare/v0.38.2...v0.38.3

###
[`v0.38.2`](https://redirect.github.com/zarf-dev/zarf/releases/tag/v0.38.2)

[Compare
Source](https://redirect.github.com/defenseunicorns/zarf/compare/v0.38.1...v0.38.2)

#### What's Changed

- chore(deps): bump github.com/google/go-containerregistry from 0.20.1
to 0.20.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2863](https://redirect.github.com/zarf-dev/zarf/pull/2863)
- chore(deps): bump k8s.io/kubectl from 0.30.0 to 0.30.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2862](https://redirect.github.com/zarf-dev/zarf/pull/2862)
- ci: add renamed github workflow jobs to the shim workflow by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2858](https://redirect.github.com/zarf-dev/zarf/pull/2858)
- test: docker exec to in memory registry by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2869](https://redirect.github.com/zarf-dev/zarf/pull/2869)
- fix: replace helpers.Retry with go-retry and adjust delay by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2856](https://redirect.github.com/zarf-dev/zarf/pull/2856)
- feat: introduce beta schema by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2859](https://redirect.github.com/zarf-dev/zarf/pull/2859)
- refactor: move validate to lint by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2839](https://redirect.github.com/zarf-dev/zarf/pull/2839)

**Full Changelog**:
https://github.com/zarf-dev/zarf/compare/v0.38.0...v0.38.2

###
[`v0.38.1`](https://redirect.github.com/zarf-dev/zarf/releases/tag/v0.38.1)

[Compare
Source](https://redirect.github.com/defenseunicorns/zarf/compare/v0.38.0...v0.38.1)

#### What's Changed

- refactor: utilize invopop comment feature by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2781](https://redirect.github.com/zarf-dev/zarf/pull/2781)
- fix: detect invalid helm release names by
[@&#8203;jamestexas](https://redirect.github.com/jamestexas) in
[https://github.com/zarf-dev/zarf/pull/2784](https://redirect.github.com/zarf-dev/zarf/pull/2784)
- refactor: move gitea code to separate package by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2785](https://redirect.github.com/zarf-dev/zarf/pull/2785)
- fix: add dependabot and disable renovate features by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2789](https://redirect.github.com/zarf-dev/zarf/pull/2789)
- chore(deps): bump github/codeql-action from 3.24.0 to 3.25.15 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2792](https://redirect.github.com/zarf-dev/zarf/pull/2792)
- chore(deps): bump actions/upload-artifact from 4.3.1 to 4.3.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2791](https://redirect.github.com/zarf-dev/zarf/pull/2791)
- chore(deps): bump golangci/golangci-lint-action from 6.0.1 to 6.1.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2793](https://redirect.github.com/zarf-dev/zarf/pull/2793)
- chore(deps): bump docker/login-action from 3.0.0 to 3.3.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2794](https://redirect.github.com/zarf-dev/zarf/pull/2794)
- chore(deps): bump ossf/scorecard-action from 2.3.1 to 2.4.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2795](https://redirect.github.com/zarf-dev/zarf/pull/2795)
- chore(deps): bump k8s.io/component-base from 0.30.0 to 0.30.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2798](https://redirect.github.com/zarf-dev/zarf/pull/2798)
- ci: remove unneeded cve checking by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2802](https://redirect.github.com/zarf-dev/zarf/pull/2802)
- chore(deps): bump github.com/mikefarah/yq/v4 from 4.43.1 to 4.44.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2799](https://redirect.github.com/zarf-dev/zarf/pull/2799)
- chore(deps): bump codecov/codecov-action from 4.4.1 to 4.5.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2808](https://redirect.github.com/zarf-dev/zarf/pull/2808)
- chore(deps): bump actions/create-github-app-token from 1.9.0 to 1.10.3
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2809](https://redirect.github.com/zarf-dev/zarf/pull/2809)
- chore(deps): bump actions/download-artifact from 4.1.2 to 4.1.8 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2810](https://redirect.github.com/zarf-dev/zarf/pull/2810)
- chore(deps): bump actions/checkout from 4.1.1 to 4.1.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2807](https://redirect.github.com/zarf-dev/zarf/pull/2807)
- chore(deps): bump golang.org/x/crypto from 0.24.0 to 0.25.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2813](https://redirect.github.com/zarf-dev/zarf/pull/2813)
- chore(deps): bump github.com/goccy/go-yaml from 1.11.3 to 1.12.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2811](https://redirect.github.com/zarf-dev/zarf/pull/2811)
- chore(deps): bump aws-actions/configure-aws-credentials from 4.0.1 to
4.0.2 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2806](https://redirect.github.com/zarf-dev/zarf/pull/2806)
- fix: resolve CVE-2024-41110 by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2815](https://redirect.github.com/zarf-dev/zarf/pull/2815)
- refactor: git package by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2790](https://redirect.github.com/zarf-dev/zarf/pull/2790)
- ci: better named gh jobs by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2816](https://redirect.github.com/zarf-dev/zarf/pull/2816)
- chore(deps): bump actions/dependency-review-action from 4.1.3 to 4.3.4
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2822](https://redirect.github.com/zarf-dev/zarf/pull/2822)
- chore(deps): bump actions/setup-node from 4.0.2 to 4.0.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2821](https://redirect.github.com/zarf-dev/zarf/pull/2821)
- chore: move context.TODO to context.Background() (4) by
[@&#8203;schristoff](https://redirect.github.com/schristoff) in
[https://github.com/zarf-dev/zarf/pull/2749](https://redirect.github.com/zarf-dev/zarf/pull/2749)
- chore(deps): bump
github.com/sigstore/sigstore/pkg/signature/kms/hashivault from 1.8.1 to
1.8.7 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2800](https://redirect.github.com/zarf-dev/zarf/pull/2800)
- chore: turn down codecov by
[@&#8203;schristoff](https://redirect.github.com/schristoff) in
[https://github.com/zarf-dev/zarf/pull/2823](https://redirect.github.com/zarf-dev/zarf/pull/2823)
- chore(deps): bump github.com/sigstore/sigstore/pkg/signature/kms/gcp
from 1.8.1 to 1.8.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2812](https://redirect.github.com/zarf-dev/zarf/pull/2812)
- refactor: move and test HasImages by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2831](https://redirect.github.com/zarf-dev/zarf/pull/2831)
- fix: disk pressure flakes by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2832](https://redirect.github.com/zarf-dev/zarf/pull/2832)
- chore(deps): bump actions/upload-artifact from 4.3.4 to 4.3.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2834](https://redirect.github.com/zarf-dev/zarf/pull/2834)
- refactor: change isInternal variables to functions by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2768](https://redirect.github.com/zarf-dev/zarf/pull/2768)
- chore: update obsolete versions by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2830](https://redirect.github.com/zarf-dev/zarf/pull/2830)
- refactor: init zarf state by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2833](https://redirect.github.com/zarf-dev/zarf/pull/2833)
- fix: ignore config file not found errors by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2838](https://redirect.github.com/zarf-dev/zarf/pull/2838)
- fix: override tunnel details with user-provided settings by
[@&#8203;chaospuppy](https://redirect.github.com/chaospuppy) in
[https://github.com/zarf-dev/zarf/pull/2841](https://redirect.github.com/zarf-dev/zarf/pull/2841)
- refactor: move package generation to a local variable by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2835](https://redirect.github.com/zarf-dev/zarf/pull/2835)
- feat: move ZarfPackageConfig to it's own api-versioned package by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2801](https://redirect.github.com/zarf-dev/zarf/pull/2801)
- refactor: replace debug logs with returning errors by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2777](https://redirect.github.com/zarf-dev/zarf/pull/2777)
- refactor: proxy and add tests by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2843](https://redirect.github.com/zarf-dev/zarf/pull/2843)
- chore(deps): bump github/codeql-action from 3.25.15 to 3.26.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2848](https://redirect.github.com/zarf-dev/zarf/pull/2848)
- chore(deps): bump actions/upload-artifact from 4.3.5 to 4.3.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2847](https://redirect.github.com/zarf-dev/zarf/pull/2847)
- test: add tests for FindImages by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2850](https://redirect.github.com/zarf-dev/zarf/pull/2850)
- test: unit test index sha by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2844](https://redirect.github.com/zarf-dev/zarf/pull/2844)
- chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2828](https://redirect.github.com/zarf-dev/zarf/pull/2828)
- chore: update dos games by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2845](https://redirect.github.com/zarf-dev/zarf/pull/2845)
- chore(deps): bump sigs.k8s.io/kustomize/api from 0.16.0 to 0.17.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2826](https://redirect.github.com/zarf-dev/zarf/pull/2826)
- chore(deps): bump github.com/pterm/pterm from 0.12.78 to 0.12.79 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2854](https://redirect.github.com/zarf-dev/zarf/pull/2854)
- fix: install grype during release by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2857](https://redirect.github.com/zarf-dev/zarf/pull/2857)

#### New Contributors

- [@&#8203;jamestexas](https://redirect.github.com/jamestexas) made
their first contribution in
[https://github.com/zarf-dev/zarf/pull/2784](https://redirect.github.com/zarf-dev/zarf/pull/2784)

**Full Changelog**:
https://github.com/zarf-dev/zarf/compare/v0.37.0...v0.38.1

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.26.8`](https://redirect.github.com/github/codeql-action/compare/v3.26.7...v3.26.8)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.7...v3.26.8)

###
[`v3.26.7`](https://redirect.github.com/github/codeql-action/compare/v3.26.6...v3.26.7)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.6...v3.26.7)

###
[`v3.26.6`](https://redirect.github.com/github/codeql-action/compare/v3.26.5...v3.26.6)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.5...v3.26.6)

###
[`v3.26.5`](https://redirect.github.com/github/codeql-action/compare/v3.26.4...v3.26.5)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.4...v3.26.5)

###
[`v3.26.4`](https://redirect.github.com/github/codeql-action/compare/v3.26.3...v3.26.4)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.3...v3.26.4)

###
[`v3.26.3`](https://redirect.github.com/github/codeql-action/compare/v3.26.2...v3.26.3)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.2...v3.26.3)

###
[`v3.26.2`](https://redirect.github.com/github/codeql-action/compare/v3.26.1...v3.26.2)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.1...v3.26.2)

###
[`v3.26.1`](https://redirect.github.com/github/codeql-action/compare/v3.26.0...v3.26.1)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.0...v3.26.1)

</details>

<details>
<summary>golangci/golangci-lint (golangci/golangci-lint)</summary>

###
[`v1.61.0`](https://redirect.github.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v1610)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.60.3...v1.61.0)

1.  Enhancements
    -   Add `junit-xml-extended` format
    -   Exclude Swagger Codegen files by default
2.  Updated linters
    -   `dupword`: from 0.0.14 to 0.1.1
    -   `fatcontext`: from 0.4.0 to 0.5.2
    -   `gci`: from 0.13.4 to 0.13.5 (new option `no-lex-order`)
- `go-ruleguard`: from 0.4.2 to
[`0fe6f58`](https://redirect.github.com/golangci/golangci-lint/commit/0fe6f58b47b1)
(fix panic with custom linters)
    -   `godot`: from 1.4.16 to 1.4.17
    -   `gomodguard`: from 1.3.3 to 1.3.5
    -   `gosec`: disable temporarily `G407`
- `gosec`: from
[`ab3f6c1`](https://redirect.github.com/golangci/golangci-lint/commit/ab3f6c1c83a0)
to 2.21.2 (partially fix `G115`)
    -   `intrange`: from 0.1.2 to 0.2.0
    -   `nolintlint`: remove the empty line in the directive replacement
3.  Misc.
    -   Improve runtime version parsing
4.  Documentation
    -   Add additional info about `typecheck`

###
[`v1.60.3`](https://redirect.github.com/golangci/golangci-lint/compare/v1.60.2...v1.60.3)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.60.2...v1.60.3)

###
[`v1.60.2`](https://redirect.github.com/golangci/golangci-lint/compare/v1.60.1...v1.60.2)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.60.1...v1.60.2)

###
[`v1.60.1`](https://redirect.github.com/golangci/golangci-lint/compare/v1.60.0...v1.60.1)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.60.0...v1.60.1)

###
[`v1.60.0`](https://redirect.github.com/golangci/golangci-lint/compare/v1.59.1...v1.60.0)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.59.1...v1.60.0)

</details>

<details>
<summary>python-jsonschema/check-jsonschema
(python-jsonschema/check-jsonschema)</summary>

###
[`v0.29.2`](https://redirect.github.com/python-jsonschema/check-jsonschema/blob/HEAD/CHANGELOG.rst#0292)

[Compare
Source](https://redirect.github.com/python-jsonschema/check-jsonschema/compare/0.29.1...0.29.2)

- Update vendored schemas: buildkite, github-workflows, gitlab-ci,
renovate,
    woodpecker-ci  (2024-08-22)
- Convert from `setup.cfg` to `pyproject.toml` for python package
metadata

</details>

<details>
<summary>renovatebot/pre-commit-hooks
(renovatebot/pre-commit-hooks)</summary>

###
[`v38.94.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.93.6...38.94.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.93.6...38.94.1)

###
[`v38.93.6`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.93.6)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.93.5...38.93.6)

See https://github.com/renovatebot/renovate/releases/tag/38.93.6 for
more changes

###
[`v38.93.5`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.93.5)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.93.3...38.93.5)

See https://github.com/renovatebot/renovate/releases/tag/38.93.5 for
more changes

###
[`v38.93.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.93.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.93.2...38.93.3)

See https://github.com/renovatebot/renovate/releases/tag/38.93.3 for
more changes

###
[`v38.93.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.93.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.93.1...38.93.2)

See https://github.com/renovatebot/renovate/releases/tag/38.93.2 for
more changes

###
[`v38.93.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.93.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.93.0...38.93.1)

See https://github.com/renovatebot/renovate/releases/tag/38.93.1 for
more changes

###
[`v38.93.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.93.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.92.1...38.93.0)

See https://github.com/renovatebot/renovate/releases/tag/38.93.0 for
more changes

###
[`v38.92.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.92.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.92.0...38.92.1)

See https://github.com/renovatebot/renovate/releases/tag/38.92.1 for
more changes

###
[`v38.92.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.92.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.91.5...38.92.0)

See https://github.com/renovatebot/renovate/releases/tag/38.92.0 for
more changes

###
[`v38.91.5`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.91.5)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.88.0...38.91.5)

See https://github.com/renovatebot/renovate/releases/tag/38.91.5 for
more changes

###
[`v38.88.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.88.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.86.0...38.88.0)

See https://github.com/renovatebot/renovate/releases/tag/38.88.0 for
more changes

###
[`v38.86.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.86.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.85.2...38.86.0)

See https://github.com/renovatebot/renovate/releases/tag/38.86.0 for
more changes

###
[`v38.85.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.85.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.85.1...38.85.2)

See https://github.com/renovatebot/renovate/releases/tag/38.85.2 for
more changes

###
[`v38.85.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.85.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.84.1...38.85.1)

See https://github.com/renovatebot/renovate/releases/tag/38.85.1 for
more changes

###
[`v38.84.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.84.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.84.0...38.84.1)

See https://github.com/renovatebot/renovate/releases/tag/38.84.1 for
more changes

###
[`v38.84.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.84.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.83.0...38.84.0)

See https://github.com/renovatebot/renovate/releases/tag/38.84.0 for
more changes

###
[`v38.83.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.83.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.82.0...38.83.0)

See https://github.com/renovatebot/renovate/releases/tag/38.83.0 for
more changes

###
[`v38.82.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.82.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.81.0...38.82.0)

See https://github.com/renovatebot/renovate/releases/tag/38.82.0 for
more changes

###
[`v38.81.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.81.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.80.0...38.81.0)

See https://github.com/renovatebot/renovate/releases/tag/38.81.0 for
more changes

###
[`v38.80.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.80.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.79.0...38.80.0)

See https://github.com/renovatebot/renovate/releases/tag/38.80.0 for
more changes

###
[`v38.79.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.79.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.78.0...38.79.0)

See https://github.com/renovatebot/renovate/releases/tag/38.79.0 for
more changes

###
[`v38.78.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.78.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.8...38.78.0)

See https://github.com/renovatebot/renovate/releases/tag/38.78.0 for
more changes

###
[`v38.77.8`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.8)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.7...38.77.8)

See https://github.com/renovatebot/renovate/releases/tag/38.77.8 for
more changes

###
[`v38.77.7`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.7)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.6...38.77.7)

See https://github.com/renovatebot/renovate/releases/tag/38.77.7 for
more changes

###
[`v38.77.6`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.6)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.5...38.77.6)

See https://github.com/renovatebot/renovate/releases/tag/38.77.6 for
more changes

###
[`v38.77.5`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.5)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.4...38.77.5)

See https://github.com/renovatebot/renovate/releases/tag/38.77.5 for
more changes

###
[`v38.77.4`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.4)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.3...38.77.4)

See https://github.com/renovatebot/renovate/releases/tag/38.77.4 for
more changes

###
[`v38.77.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.2...38.77.3)

See https://github.com/renovatebot/renovate/releases/tag/38.77.3 for
more changes

###
[`v38.77.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.1...38.77.2)

See https://github.com/renovatebot/renovate/releases/tag/38.77.2 for
more changes

###
[`v38.77.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.77.0...38.77.1)

See https://github.com/renovatebot/renovate/releases/tag/38.77.1 for
more changes

###
[`v38.77.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.77.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.76.1...38.77.0)

See https://github.com/renovatebot/renovate/releases/tag/38.77.0 for
more changes

###
[`v38.76.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.76.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.75.0...38.76.1)

See https://github.com/renovatebot/renovate/releases/tag/38.76.1 for
more changes

###
[`v38.75.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.75.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.74.1...38.75.0)

See https://github.com/renovatebot/renovate/releases/tag/38.75.0 for
more changes

###
[`v38.74.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.74.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.74.0...38.74.1)

See https://github.com/renovatebot/renovate/releases/tag/38.74.1 for
more changes

###
[`v38.74.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.74.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.73.7...38.74.0)

See https://github.com/renovatebot/renovate/releases/tag/38.74.0 for
more changes

###
[`v38.73.7`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.73.7)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.73.5...38.73.7)

See https://github.com/renovatebot/renovate/releases/tag/38.73.7 for
more changes

###
[`v38.73.5`](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.73.3...38.73.5)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.73.3...38.73.5)

###
[`v38.73.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.73.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.72.1...38.73.3)

See https://github.com/renovatebot/renovate/releases/tag/38.73.3 for
more changes

###
[`v38.72.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.72.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.72.0...38.72.1)

See https://github.com/renovatebot/renovate/releases/tag/38.72.1 for
more changes

###
[`v38.72.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.72.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.71.0...38.72.0)

See https://github.com/renovatebot/renovate/releases/tag/38.72.0 for
more changes

###
[`v38.71.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.71.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.70.3...38.71.0)

See https://github.com/renovatebot/renovate/releases/tag/38.71.0 for
more changes

###
[`v38.70.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.70.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.70.2...38.70.3)

See https://github.com/renovatebot/renovate/releases/tag/38.70.3 for
more changes

###
[`v38.70.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.70.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.70.0...38.70.2)

See https://github.com/renovatebot/renovate/releases/tag/38.70.2 for
more changes

###
[`v38.70.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.70.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.68.1...38.70.0)

See https://github.com/renovatebot/renovate/releases/tag/38.70.0 for
more changes

###
[`v38.68.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.68.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.68.0...38.68.1)

See https://github.com/renovatebot/renovate/releases/tag/38.68.1 for
more changes

###
[`v38.68.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.68.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.67.5...38.68.0)

See https://github.com/renovatebot/renovate/releases/tag/38.68.0 for
more changes

###
[`v38.67.5`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.67.5)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.67.4...38.67.5)

See https://github.com/renovatebot/renovate/releases/tag/38.67.5 for
more changes

###
[`v38.67.4`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.67.4)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.67.3...38.67.4)

See https://github.com/renovatebot/renovate/releases/tag/38.67.4 for
more changes

###
[`v38.67.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.67.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.67.2...38.67.3)

See https://github.com/renovatebot/renovate/releases/tag/38.67.3 for
more changes

###
[`v38.67.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.67.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.67.1...38.67.2)

See https://github.com/renovatebot/renovate/releases/tag/38.67.2 for
more changes

###
[`v38.67.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.67.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.66.1...38.67.1)

See https://github.com/renovatebot/renovate/releases/tag/38.67.1 for
more changes

###
[`v38.66.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.66.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.64.2...38.66.1)

See https://github.com/renovatebot/renovate/releases/tag/38.66.1 for
more changes

###
[`v38.64.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.64.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.64.1...38.64.2)

See https://github.com/renovatebot/renovate/releases/tag/38.64.2 for
more changes

###
[`v38.64.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.64.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.64.0...38.64.1)

See https://github.com/renovatebot/renovate/releases/tag/38.64.1 for
more changes

###
[`v38.64.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.64.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.61.1...38.64.0)

See https://github.com/renovatebot/renovate/releases/tag/38.64.0 for
more changes

###
[`v38.61.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.61.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.61.0...38.61.1)

See https://github.com/renovatebot/renovate/releases/tag/38.61.1 for
more changes

###
[`v38.61.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.61.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.60.0...38.61.0)

See https://github.com/renovatebot/renovate/releases/tag/38.61.0 for
more changes

###
[`v38.60.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.60.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.59.3...38.60.0)

See https://github.com/renovatebot/renovate/releases/tag/38.60.0 for
more changes

###
[`v38.59.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.59.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.59.2...38.59.3)

See https://github.com/renovatebot/renovate/releases/tag/38.59.3 for
more changes

###
[`v38.59.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.59.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.59.1...38.59.2)

See https://github.com/renovatebot/renovate/releases/tag/38.59.2 for
more changes

###
[`v38.59.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.59.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.59.0...38.59.1)

See https://github.com/renovatebot/renovate/releases/tag/38.59.1 for
more changes

###
[`v38.59.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.59.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.58.2...38.59.0)

See https://github.com/renovatebot/renovate/releases/tag/38.59.0 for
more changes

###
[`v38.58.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.58.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.58.1...38.58.2)

See https://github.com/renovatebot/renovate/releases/tag/38.58.2 for
more changes

###
[`v38.58.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.58.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.58.0...38.58.1)

See https://github.com/renovatebot/renovate/releases/tag/38.58.1 for
more changes

###
[`v38.58.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.58.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.57.3...38.58.0)

See https://github.com/renovatebot/renovate/releases/tag/38.58.0 for
more changes

###
[`v38.57.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.57.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.57.1...38.57.3)

See https://github.com/renovatebot/renovate/releases/tag/38.57.3 for
more changes

###
[`v38.57.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.57.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.57.0...38.57.1)

See https://github.com/renovatebot/renovate/releases/tag/38.57.1 for
more changes

###
[`v38.57.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.57.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.56.4...38.57.0)

See https://github.com/renovatebot/renovate/releases/tag/38.57.0 for
more changes

###
[`v38.56.4`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.56.4)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.56.3...38.56.4)

See https://github.com/renovatebot/renovate/releases/tag/38.56.4 for
more changes

###
[`v38.56.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.56.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.56.1...38.56.3)

See https://github.com/renovatebot/renovate/releases/tag/38.56.3 for
more changes

###
[`v38.56.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.56.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.56.0...38.56.1)

See https://github.com/renovatebot/renovate/releases/tag/38.56.1 for
more changes

###
[`v38.56.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.56.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.55.5...38.56.0)

See https://github.com/renovatebot/renovate/releases/tag/38.56.0 for
more changes

###
[`v38.55.5`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.55.5)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.55.4...38.55.5)

See https://github.com/renovatebot/renovate/releases/tag/38.55.5 for
more changes

###
[`v38.55.4`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.55.4)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.55.3...38.55.4)

See https://github.com/renovatebot/renovate/releases/tag/38.55.4 for
more changes

###
[`v38.55.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.55.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.55.2...38.55.3)

See https://github.com/renovatebot/renovate/releases/tag/38.55.3 for
more changes

###
[`v38.55.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.55.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.55.1...38.55.2)

See https://github.com/renovatebot/renovate/releases/tag/38.55.2 for
more changes

###
[`v38.55.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.55.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.55.0...38.55.1)

See https://github.com/renovatebot/renovate/releases/tag/38.55.1 for
more changes

###
[`v38.55.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.55.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.54.1...38.55.0)

See https://github.com/renovatebot/renovate/releases/tag/38.55.0 for
more changes

###
[`v38.54.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.54.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.52.3...38.54.1)

See https://github.com/renovatebot/renovate/releases/tag/38.54.1 for
more changes

###
[`v38.52.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.52.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.52.2...38.52.3)

See https://github.com/renovatebot/renovate/releases/tag/38.52.3 for
more changes

###
[`v38.52.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.52.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.52.1...38.52.2)

See https://github.com/renovatebot/renovate/releases/tag/38.52.2 for
more changes

###
[`v38.52.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.52.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.52.0...38.52.1)

See https://github.com/renovatebot/renovate/releases/tag/38.52.1 for
more changes

###
[`v38.52.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.52.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.51.1...38.52.0)

See https://github.com/renovatebot/renovate/releases/tag/38.52.0 for
more changes

###
[`v38.51.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.51.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.51.0...38.51.1)

See https://github.com/renovatebot/renovate/releases/tag/38.51.1 for
more changes

###
[`v38.51.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.51.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.50.0...38.51.0)

See https://github.com/renovatebot/renovate/releases/tag/38.51.0 for
more changes

###
[`v38.50.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.50.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.49.0...38.50.0)

See https://github.com/renovatebot/renovate/releases/tag/38.50.0 for
more changes

###
[`v38.49.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.49.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.47.0...38.49.0)

See https://github.com/renovatebot/renovate/releases/tag/38.49.0 for
more changes

###
[`v38.47.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.47.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.46.3...38.47.0)

See https://github.com/renovatebot/renovate/releases/tag/38.47.0 for
more changes

###
[`v38.46.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.46.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.46.2...38.46.3)

See https://github.com/renovatebot/renovate/releases/tag/38.46.3 for
more changes

###
[`v38.46.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.46.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.46.1...38.46.2)

See https://github.com/renovatebot/renovate/releases/tag/38.46.2 for
more changes

###
[`v38.46.1`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.46.1)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.46.0...38.46.1)

See https://github.com/renovatebot/renovate/releases/tag/38.46.1 for
more changes

###
[`v38.46.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.46.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.45.0...38.46.0)

See https://github.com/renovatebot/renovate/releases/tag/38.46.0 for
more changes

###
[`v38.45.0`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.45.0)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.44.3...38.45.0)

See https://github.com/renovatebot/renovate/releases/tag/38.45.0 for
more changes

###
[`v38.44.3`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.44.3)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.44.2...38.44.3)

See https://github.com/renovatebot/renovate/releases/tag/38.44.3 for
more changes

###
[`v38.44.2`](https://redirect.github.com/renovatebot/pre-commit-hooks/releases/tag/38.44.2)

[Compare
Source](https://redirect.github.com/renovatebot/pre-commit-hooks/compare/38.44.0...38.44.2)

See https://github.com/renovatebot/renovate/releases/tag/38.44.2 for
more changes

### [`v38.44.0`](htt

</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://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/defenseunicorns/uds-package-gitlab).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsic3VwcG9ydC1kZXBzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
noahpb referenced this pull request in defenseunicorns/uds-core Sep 25, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/zarf-dev/packages/init | minor | `v0.39.0` -> `v0.40.1` |
| [zarf-dev/zarf](https://redirect.github.com/zarf-dev/zarf) | minor |
`v0.39.0` -> `v0.40.1` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>zarf-dev/zarf (zarf-dev/zarf)</summary>

###
[`v0.40.1`](https://redirect.github.com/zarf-dev/zarf/releases/tag/v0.40.1)

[Compare
Source](https://redirect.github.com/zarf-dev/zarf/compare/v0.40.0...v0.40.1)

#### What's Changed

- chore(deps): bump actions/create-github-app-token from 1.10.3 to
1.10.4 by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/zarf-dev/zarf/pull/2968](https://redirect.github.com/zarf-dev/zarf/pull/2968)
- fix: imported helm overrides by
[@&#8203;rjferguson21](https://redirect.github.com/rjferguson21) in
[https://github.com/zarf-dev/zarf/pull/2967](https://redirect.github.com/zarf-dev/zarf/pull/2967)
- chore: only show config file if there is one by
[@&#8203;catsby](https://redirect.github.com/catsby) in
[https://github.com/zarf-dev/zarf/pull/2985](https://redirect.github.com/zarf-dev/zarf/pull/2985)
- refactor: trim named returns in pkg
[#&#8203;2950](https://redirect.github.com/zarf-dev/zarf/issues/2950) by
[@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2979](https://redirect.github.com/zarf-dev/zarf/pull/2979)
- chore: finish removing named returns outside of package and extensions
[#&#8203;2950](https://redirect.github.com/zarf-dev/zarf/issues/2950) by
[@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2987](https://redirect.github.com/zarf-dev/zarf/pull/2987)
- chore: ensure we return zeroed value when returning errors by
[@&#8203;mkcp](https://redirect.github.com/mkcp) in
[https://github.com/zarf-dev/zarf/pull/2988](https://redirect.github.com/zarf-dev/zarf/pull/2988)
- chore(deps): bump actions/create-github-app-token from 1.10.4 to
1.11.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/zarf-dev/zarf/pull/2991](https://redirect.github.com/zarf-dev/zarf/pull/2991)
- refactor: break --insecure into separate flags by
[@&#8203;joonas](https://redirect.github.com/joonas) in
[https://github.com/zarf-dev/zarf/pull/2936](https://redirect.github.com/zarf-dev/zarf/pull/2936)
- ci: stop codeql on merge queue by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2934](https://redirect.github.com/zarf-dev/zarf/pull/2934)
- fix: add shasum flag and test for https pull by
[@&#8203;AustinAbro321](https://redirect.github.com/AustinAbro321) in
[https://github.com/zarf-dev/zarf/pull/2998](https://redirect.github.com/zarf-dev/zarf/pull/2998)
- chore(deps): bump github/codeql-action from 3.26.6 to 3.26.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/zarf-dev/zarf/pull/2997](https://redirect.github.com/zarf-dev/zarf/pull/2997)
- refactor: pull command by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2989](https://redirect.github.com/zarf-dev/zarf/pull/2989)
- docs: update dos-games refs by
[@&#8203;jasonwashburn](https://redirect.github.com/jasonwashburn) in
[https://github.com/zarf-dev/zarf/pull/3004](https://redirect.github.com/zarf-dev/zarf/pull/3004)
- refactor: lint by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/3000](https://redirect.github.com/zarf-dev/zarf/pull/3000)
- refactor: mirror-resources by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/2975](https://redirect.github.com/zarf-dev/zarf/pull/2975)
- fix: gittributes to ignore image file endings by
[@&#8203;phillebaba](https://redirect.github.com/phillebaba) in
[https://github.com/zarf-dev/zarf/pull/3012](https://redirect.github.com/zarf-dev/zarf/pull/3012)

#### New Contributors

- [@&#8203;rjferguson21](https://redirect.github.com/rjferguson21) made
their first contribution in
[https://github.com/zarf-dev/zarf/pull/2967](https://redirect.github.com/zarf-dev/zarf/pull/2967)
- [@&#8203;catsby](https://redirect.github.com/catsby) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2985](https://redirect.github.com/zarf-dev/zarf/pull/2985)
- [@&#8203;mkcp](https://redirect.github.com/mkcp) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2979](https://redirect.github.com/zarf-dev/zarf/pull/2979)
- [@&#8203;joonas](https://redirect.github.com/joonas) made their first
contribution in
[https://github.com/zarf-dev/zarf/pull/2936](https://redirect.github.com/zarf-dev/zarf/pull/2936)

**Full Changelog**:
zarf-dev/zarf@v0.39.0...v0.40.1

###
[`v0.40.0`](https://redirect.github.com/zarf-dev/zarf/compare/v0.39.0...v0.40.0)

[Compare
Source](https://redirect.github.com/zarf-dev/zarf/compare/v0.39.0...v0.40.0)

</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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/defenseunicorns/uds-core).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.

Break apart --insecure
3 participants