Skip to content

Comments

Fix: ESO template crash when Kubernetes secret data is nil #3537

Merged
moolen merged 7 commits intoexternal-secrets:mainfrom
ma-ble:fix/template-crash-when-secret-data-nil
Jun 3, 2024
Merged

Fix: ESO template crash when Kubernetes secret data is nil #3537
moolen merged 7 commits intoexternal-secrets:mainfrom
ma-ble:fix/template-crash-when-secret-data-nil

Conversation

@ma-ble
Copy link
Contributor

@ma-ble ma-ble commented May 29, 2024

Problem Statement

If you create a PushSecret that references a secret without a data key and uses it in the template, the eso pod crashes.

Related Issue

Fixes #3294

Proposed Changes

Add nil pointer check before assigning a value.

Checklist

  • I have read the contribution guidelines
  • All commits are signed with git commit --signoff
  • My changes have reasonable test coverage
  • All tests pass with make test
  • I ensured my PR is ready for review with make reviewable

@ma-ble ma-ble requested a review from a team as a code owner May 29, 2024 12:56
@ma-ble ma-ble requested a review from moolen May 29, 2024 12:56
@moolen
Copy link
Member

moolen commented May 29, 2024

/ok-to-test sha=79c3e36302df107822745e42161561ace8b9a79c

secret.Labels[k] = val
case esapi.TemplateTargetData:
secret.Data[k] = []byte(val)
if secret.Data != nil {
Copy link
Member

Choose a reason for hiding this comment

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

Shouldn't we create an empty map before we set the key to prevent the panic?
Otherwise we're not applying the value to the target secret

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm not entirely sure about the use case, but similar to externalsecret, you can place the check in front of the template engine and then create an empty map. I adjusted the PR accordingly.

ma-ble and others added 3 commits May 31, 2024 14:00
fix: revert: check if secret.Data is nil before assigning a value
…template values to the secret

Signed-off-by: MathiasBleimhofer <[email protected]>
Copy link
Member

@moolen moolen left a comment

Choose a reason for hiding this comment

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

Hey, i re-read the referenced issue #3294. Looking at stack traces and context provided there i suggest to change the function which modifies the Data/Labels/Annotations here and add a guard which creates a map if needed:

func applyToTarget(k, val string, target esapi.TemplateTarget, secret *corev1.Secret) {
switch target {
case esapi.TemplateTargetAnnotations:
secret.Annotations[k] = val
case esapi.TemplateTargetLabels:
secret.Labels[k] = val
case esapi.TemplateTargetData:
secret.Data[k] = []byte(val)
default:
}
}

Not only could the .Data be nil, also Annotations or Labels could be nil.

@sonarqubecloud
Copy link

sonarqubecloud bot commented Jun 3, 2024

Quality Gate Passed Quality Gate passed

Issues
2 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

Copy link
Member

@moolen moolen left a comment

Choose a reason for hiding this comment

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

LGTM! Thanks for the tests as well 🙇

@moolen moolen merged commit 30e1887 into external-secrets:main Jun 3, 2024
szinn referenced this pull request in szinn/k8s-homelab Jun 4, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[external-secrets](https://togithub.com/external-secrets/external-secrets)
| patch | `0.9.18` -> `0.9.19` |

---

### Release Notes

<details>
<summary>external-secrets/external-secrets (external-secrets)</summary>

###
[`v0.9.19`](https://togithub.com/external-secrets/external-secrets/releases/tag/v0.9.19)

[Compare
Source](https://togithub.com/external-secrets/external-secrets/compare/v0.9.18...v0.9.19)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.19`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi-boringssl`

#### What's Changed

- bump 0.9.18 by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3492](https://togithub.com/external-secrets/external-secrets/pull/3492)
- Fix flaky ES controller test by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3493](https://togithub.com/external-secrets/external-secrets/pull/3493)
- Raise error when unknown key specified in template by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3480](https://togithub.com/external-secrets/external-secrets/pull/3480)
- Update ci.yml with ppc64le arch support by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3500](https://togithub.com/external-secrets/external-secrets/pull/3500)
- chore(deps): bump regex from 2024.5.10 to 2024.5.15 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3512](https://togithub.com/external-secrets/external-secrets/pull/3512)
- chore(deps): bump zipp from 3.18.1 to 3.18.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3511](https://togithub.com/external-secrets/external-secrets/pull/3511)
- chore(deps): bump platformdirs from 4.2.1 to 4.2.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3510](https://togithub.com/external-secrets/external-secrets/pull/3510)
- chore(deps): bump golang from `6d71b7c` to `5c56bd4` in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3508](https://togithub.com/external-secrets/external-secrets/pull/3508)
- chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3507](https://togithub.com/external-secrets/external-secrets/pull/3507)
- chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3506](https://togithub.com/external-secrets/external-secrets/pull/3506)
- chore(deps): bump actions/checkout from 4.1.5 to 4.1.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3505](https://togithub.com/external-secrets/external-secrets/pull/3505)
- chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3504](https://togithub.com/external-secrets/external-secrets/pull/3504)
- chore(deps): bump golang from `2a88224` to `f1fe698` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3503](https://togithub.com/external-secrets/external-secrets/pull/3503)
- chore(deps): bump mkdocs-material from 9.5.22 to 9.5.23 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3509](https://togithub.com/external-secrets/external-secrets/pull/3509)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3513](https://togithub.com/external-secrets/external-secrets/pull/3513)
- ppc64le additions by [@&#8203;IdanAdar](https://togithub.com/IdanAdar)
in
[https://github.com/external-secrets/external-secrets/pull/3535](https://togithub.com/external-secrets/external-secrets/pull/3535)
- chore(deps): bump ubi8/ubi-minimal from `2fa47fa` to `f729a7f` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3523](https://togithub.com/external-secrets/external-secrets/pull/3523)
- doc(BitWarden): extends the liveness timeout by
[@&#8203;acolombier](https://togithub.com/acolombier) in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- chore(deps): bump mkdocs-material from 9.5.23 to 9.5.24 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3526](https://togithub.com/external-secrets/external-secrets/pull/3526)
- chore(deps): bump zipp from 3.18.2 to 3.19.0 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3527](https://togithub.com/external-secrets/external-secrets/pull/3527)
- chore(deps): bump requests from 2.31.0 to 2.32.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3528](https://togithub.com/external-secrets/external-secrets/pull/3528)
- chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3530](https://togithub.com/external-secrets/external-secrets/pull/3530)
- chore(deps): bump aquasecurity/trivy-action from 0.20.0 to 0.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3531](https://togithub.com/external-secrets/external-secrets/pull/3531)
- chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3532](https://togithub.com/external-secrets/external-secrets/pull/3532)
- chore(deps): bump ubi8/ubi-minimal from `f729a7f` to `9e458f4` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3543](https://togithub.com/external-secrets/external-secrets/pull/3543)
- chore(deps): bump golang from `f1fe698` to `b8ded51` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3522](https://togithub.com/external-secrets/external-secrets/pull/3522)
- chore(deps): bump alpine from 3.19.1 to 3.20.0 in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3525](https://togithub.com/external-secrets/external-secrets/pull/3525)
- chore(deps): bump watchdog from 4.0.0 to 4.0.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3529](https://togithub.com/external-secrets/external-secrets/pull/3529)
- chore(deps): bump alpine from 3.19 to 3.20 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3533](https://togithub.com/external-secrets/external-secrets/pull/3533)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3534](https://togithub.com/external-secrets/external-secrets/pull/3534)
- Fix: ESO template crash when Kubernetes secret data is nil by
[@&#8203;ma-ble](https://togithub.com/ma-ble) in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)
- chore(deps): bump alpine from `c5b1261` to `77726ef` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3524](https://togithub.com/external-secrets/external-secrets/pull/3524)
- Add CA-Bundle to pemToPkcs12 output by
[@&#8203;WatcherWhale](https://togithub.com/WatcherWhale) in
[https://github.com/external-secrets/external-secrets/pull/3494](https://togithub.com/external-secrets/external-secrets/pull/3494)
- chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3544](https://togithub.com/external-secrets/external-secrets/pull/3544)
- chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3545](https://togithub.com/external-secrets/external-secrets/pull/3545)
- chore(deps): bump certifi from 2024.2.2 to 2024.6.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3546](https://togithub.com/external-secrets/external-secrets/pull/3546)
- chore(deps): bump mkdocs-material from 9.5.24 to 9.5.25 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3547](https://togithub.com/external-secrets/external-secrets/pull/3547)
- chore(deps): bump zipp from 3.19.0 to 3.19.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3549](https://togithub.com/external-secrets/external-secrets/pull/3549)
- chore(deps): bump requests from 2.32.2 to 2.32.3 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3548](https://togithub.com/external-secrets/external-secrets/pull/3548)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3550](https://togithub.com/external-secrets/external-secrets/pull/3550)

#### New Contributors

- [@&#8203;acolombier](https://togithub.com/acolombier) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- [@&#8203;ma-ble](https://togithub.com/ma-ble) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)

**Full Changelog**:
external-secrets/external-secrets@v0.9.18...v0.9.19

</details>

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

Co-authored-by: repo-jeeves[bot] <106431701+repo-jeeves[bot]@users.noreply.github.com>
szinn referenced this pull request in szinn/k8s-homelab Jun 4, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[external-secrets](https://togithub.com/external-secrets/external-secrets)
| patch | `0.9.18` -> `0.9.19` |

---

### Release Notes

<details>
<summary>external-secrets/external-secrets (external-secrets)</summary>

###
[`v0.9.19`](https://togithub.com/external-secrets/external-secrets/releases/tag/v0.9.19)

[Compare
Source](https://togithub.com/external-secrets/external-secrets/compare/v0.9.18...v0.9.19)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.19`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi-boringssl`

#### What's Changed

- bump 0.9.18 by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3492](https://togithub.com/external-secrets/external-secrets/pull/3492)
- Fix flaky ES controller test by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3493](https://togithub.com/external-secrets/external-secrets/pull/3493)
- Raise error when unknown key specified in template by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3480](https://togithub.com/external-secrets/external-secrets/pull/3480)
- Update ci.yml with ppc64le arch support by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3500](https://togithub.com/external-secrets/external-secrets/pull/3500)
- chore(deps): bump regex from 2024.5.10 to 2024.5.15 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3512](https://togithub.com/external-secrets/external-secrets/pull/3512)
- chore(deps): bump zipp from 3.18.1 to 3.18.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3511](https://togithub.com/external-secrets/external-secrets/pull/3511)
- chore(deps): bump platformdirs from 4.2.1 to 4.2.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3510](https://togithub.com/external-secrets/external-secrets/pull/3510)
- chore(deps): bump golang from `6d71b7c` to `5c56bd4` in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3508](https://togithub.com/external-secrets/external-secrets/pull/3508)
- chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3507](https://togithub.com/external-secrets/external-secrets/pull/3507)
- chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3506](https://togithub.com/external-secrets/external-secrets/pull/3506)
- chore(deps): bump actions/checkout from 4.1.5 to 4.1.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3505](https://togithub.com/external-secrets/external-secrets/pull/3505)
- chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3504](https://togithub.com/external-secrets/external-secrets/pull/3504)
- chore(deps): bump golang from `2a88224` to `f1fe698` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3503](https://togithub.com/external-secrets/external-secrets/pull/3503)
- chore(deps): bump mkdocs-material from 9.5.22 to 9.5.23 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3509](https://togithub.com/external-secrets/external-secrets/pull/3509)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3513](https://togithub.com/external-secrets/external-secrets/pull/3513)
- ppc64le additions by [@&#8203;IdanAdar](https://togithub.com/IdanAdar)
in
[https://github.com/external-secrets/external-secrets/pull/3535](https://togithub.com/external-secrets/external-secrets/pull/3535)
- chore(deps): bump ubi8/ubi-minimal from `2fa47fa` to `f729a7f` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3523](https://togithub.com/external-secrets/external-secrets/pull/3523)
- doc(BitWarden): extends the liveness timeout by
[@&#8203;acolombier](https://togithub.com/acolombier) in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- chore(deps): bump mkdocs-material from 9.5.23 to 9.5.24 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3526](https://togithub.com/external-secrets/external-secrets/pull/3526)
- chore(deps): bump zipp from 3.18.2 to 3.19.0 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3527](https://togithub.com/external-secrets/external-secrets/pull/3527)
- chore(deps): bump requests from 2.31.0 to 2.32.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3528](https://togithub.com/external-secrets/external-secrets/pull/3528)
- chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3530](https://togithub.com/external-secrets/external-secrets/pull/3530)
- chore(deps): bump aquasecurity/trivy-action from 0.20.0 to 0.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3531](https://togithub.com/external-secrets/external-secrets/pull/3531)
- chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3532](https://togithub.com/external-secrets/external-secrets/pull/3532)
- chore(deps): bump ubi8/ubi-minimal from `f729a7f` to `9e458f4` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3543](https://togithub.com/external-secrets/external-secrets/pull/3543)
- chore(deps): bump golang from `f1fe698` to `b8ded51` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3522](https://togithub.com/external-secrets/external-secrets/pull/3522)
- chore(deps): bump alpine from 3.19.1 to 3.20.0 in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3525](https://togithub.com/external-secrets/external-secrets/pull/3525)
- chore(deps): bump watchdog from 4.0.0 to 4.0.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3529](https://togithub.com/external-secrets/external-secrets/pull/3529)
- chore(deps): bump alpine from 3.19 to 3.20 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3533](https://togithub.com/external-secrets/external-secrets/pull/3533)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3534](https://togithub.com/external-secrets/external-secrets/pull/3534)
- Fix: ESO template crash when Kubernetes secret data is nil by
[@&#8203;ma-ble](https://togithub.com/ma-ble) in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)
- chore(deps): bump alpine from `c5b1261` to `77726ef` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3524](https://togithub.com/external-secrets/external-secrets/pull/3524)
- Add CA-Bundle to pemToPkcs12 output by
[@&#8203;WatcherWhale](https://togithub.com/WatcherWhale) in
[https://github.com/external-secrets/external-secrets/pull/3494](https://togithub.com/external-secrets/external-secrets/pull/3494)
- chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3544](https://togithub.com/external-secrets/external-secrets/pull/3544)
- chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3545](https://togithub.com/external-secrets/external-secrets/pull/3545)
- chore(deps): bump certifi from 2024.2.2 to 2024.6.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3546](https://togithub.com/external-secrets/external-secrets/pull/3546)
- chore(deps): bump mkdocs-material from 9.5.24 to 9.5.25 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3547](https://togithub.com/external-secrets/external-secrets/pull/3547)
- chore(deps): bump zipp from 3.19.0 to 3.19.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3549](https://togithub.com/external-secrets/external-secrets/pull/3549)
- chore(deps): bump requests from 2.32.2 to 2.32.3 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3548](https://togithub.com/external-secrets/external-secrets/pull/3548)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3550](https://togithub.com/external-secrets/external-secrets/pull/3550)

#### New Contributors

- [@&#8203;acolombier](https://togithub.com/acolombier) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- [@&#8203;ma-ble](https://togithub.com/ma-ble) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)

**Full Changelog**:
external-secrets/external-secrets@v0.9.18...v0.9.19

</details>

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

Co-authored-by: repo-jeeves[bot] <106431701+repo-jeeves[bot]@users.noreply.github.com>
nrdufour pushed a commit to nrdufour/home-ops that referenced this pull request Jun 5, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [external-secrets](https://github.com/external-secrets/external-secrets) | patch | `0.9.18` -> `0.9.19` |

---

### Release Notes

<details>
<summary>external-secrets/external-secrets (external-secrets)</summary>

### [`v0.9.19`](https://github.com/external-secrets/external-secrets/releases/tag/v0.9.19)

[Compare Source](external-secrets/external-secrets@v0.9.18...v0.9.19)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.19`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi-boringssl`

#### What's Changed

-   bump 0.9.18 by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in external-secrets/external-secrets#3492
-   Fix flaky ES controller test by [@&#8203;shuheiktgw](https://github.com/shuheiktgw) in external-secrets/external-secrets#3493
-   Raise error when unknown key specified in template by [@&#8203;shuheiktgw](https://github.com/shuheiktgw) in external-secrets/external-secrets#3480
-   Update ci.yml with ppc64le arch support by [@&#8203;IdanAdar](https://github.com/IdanAdar) in external-secrets/external-secrets#3500
-   chore(deps): bump regex from 2024.5.10 to 2024.5.15 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3512
-   chore(deps): bump zipp from 3.18.1 to 3.18.2 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3511
-   chore(deps): bump platformdirs from 4.2.1 to 4.2.2 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3510
-   chore(deps): bump golang from `6d71b7c` to `5c56bd4` in /e2e by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3508
-   chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3507
-   chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3506
-   chore(deps): bump actions/checkout from 4.1.5 to 4.1.6 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3505
-   chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3504
-   chore(deps): bump golang from `2a88224` to `f1fe698` by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3503
-   chore(deps): bump mkdocs-material from 9.5.22 to 9.5.23 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3509
-   chore: update dependencies by [@&#8203;eso-service-account-app](https://github.com/eso-service-account-app) in external-secrets/external-secrets#3513
-   ppc64le additions by [@&#8203;IdanAdar](https://github.com/IdanAdar) in external-secrets/external-secrets#3535
-   chore(deps): bump ubi8/ubi-minimal from `2fa47fa` to `f729a7f` by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3523
-   doc(BitWarden): extends the liveness timeout by [@&#8203;acolombier](https://github.com/acolombier) in external-secrets/external-secrets#3542
-   chore(deps): bump mkdocs-material from 9.5.23 to 9.5.24 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3526
-   chore(deps): bump zipp from 3.18.2 to 3.19.0 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3527
-   chore(deps): bump requests from 2.31.0 to 2.32.2 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3528
-   chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3530
-   chore(deps): bump aquasecurity/trivy-action from 0.20.0 to 0.21.0 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3531
-   chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3532
-   chore(deps): bump ubi8/ubi-minimal from `f729a7f` to `9e458f4` by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3543
-   chore(deps): bump golang from `f1fe698` to `b8ded51` by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3522
-   chore(deps): bump alpine from 3.19.1 to 3.20.0 in /e2e by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3525
-   chore(deps): bump watchdog from 4.0.0 to 4.0.1 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3529
-   chore(deps): bump alpine from 3.19 to 3.20 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3533
-   chore: update dependencies by [@&#8203;eso-service-account-app](https://github.com/eso-service-account-app) in external-secrets/external-secrets#3534
-   Fix: ESO template crash when Kubernetes secret data is nil  by [@&#8203;ma-ble](https://github.com/ma-ble) in external-secrets/external-secrets#3537
-   chore(deps): bump alpine from `c5b1261` to `77726ef` by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3524
-   Add CA-Bundle to pemToPkcs12 output by [@&#8203;WatcherWhale](https://github.com/WatcherWhale) in external-secrets/external-secrets#3494
-   chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3544
-   chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3545
-   chore(deps): bump certifi from 2024.2.2 to 2024.6.2 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3546
-   chore(deps): bump mkdocs-material from 9.5.24 to 9.5.25 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3547
-   chore(deps): bump zipp from 3.19.0 to 3.19.1 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3549
-   chore(deps): bump requests from 2.32.2 to 2.32.3 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in external-secrets/external-secrets#3548
-   chore: update dependencies by [@&#8203;eso-service-account-app](https://github.com/eso-service-account-app) in external-secrets/external-secrets#3550

#### New Contributors

-   [@&#8203;acolombier](https://github.com/acolombier) made their first contribution in external-secrets/external-secrets#3542
-   [@&#8203;ma-ble](https://github.com/ma-ble) made their first contribution in external-secrets/external-secrets#3537

**Full Changelog**: external-secrets/external-secrets@v0.9.18...v0.9.19

</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 this update again.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODguMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Reviewed-on: https://git.internal/nrdufour/home-ops/pulls/471
Co-authored-by: Renovate <[email protected]>
Co-committed-by: Renovate <[email protected]>
lumiere-bot bot referenced this pull request in coolguy1771/home-ops Jun 5, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[external-secrets](https://togithub.com/external-secrets/external-secrets)
| patch | `0.9.18` -> `0.9.19` |

---

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

---

### Release Notes

<details>
<summary>external-secrets/external-secrets (external-secrets)</summary>

###
[`v0.9.19`](https://togithub.com/external-secrets/external-secrets/releases/tag/v0.9.19)

[Compare
Source](https://togithub.com/external-secrets/external-secrets/compare/v0.9.18...v0.9.19)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.19`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi-boringssl`

#### What's Changed

- bump 0.9.18 by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3492](https://togithub.com/external-secrets/external-secrets/pull/3492)
- Fix flaky ES controller test by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3493](https://togithub.com/external-secrets/external-secrets/pull/3493)
- Raise error when unknown key specified in template by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3480](https://togithub.com/external-secrets/external-secrets/pull/3480)
- Update ci.yml with ppc64le arch support by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3500](https://togithub.com/external-secrets/external-secrets/pull/3500)
- chore(deps): bump regex from 2024.5.10 to 2024.5.15 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3512](https://togithub.com/external-secrets/external-secrets/pull/3512)
- chore(deps): bump zipp from 3.18.1 to 3.18.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3511](https://togithub.com/external-secrets/external-secrets/pull/3511)
- chore(deps): bump platformdirs from 4.2.1 to 4.2.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3510](https://togithub.com/external-secrets/external-secrets/pull/3510)
- chore(deps): bump golang from `6d71b7c` to `5c56bd4` in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3508](https://togithub.com/external-secrets/external-secrets/pull/3508)
- chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3507](https://togithub.com/external-secrets/external-secrets/pull/3507)
- chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3506](https://togithub.com/external-secrets/external-secrets/pull/3506)
- chore(deps): bump actions/checkout from 4.1.5 to 4.1.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3505](https://togithub.com/external-secrets/external-secrets/pull/3505)
- chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3504](https://togithub.com/external-secrets/external-secrets/pull/3504)
- chore(deps): bump golang from `2a88224` to `f1fe698` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3503](https://togithub.com/external-secrets/external-secrets/pull/3503)
- chore(deps): bump mkdocs-material from 9.5.22 to 9.5.23 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3509](https://togithub.com/external-secrets/external-secrets/pull/3509)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3513](https://togithub.com/external-secrets/external-secrets/pull/3513)
- ppc64le additions by [@&#8203;IdanAdar](https://togithub.com/IdanAdar)
in
[https://github.com/external-secrets/external-secrets/pull/3535](https://togithub.com/external-secrets/external-secrets/pull/3535)
- chore(deps): bump ubi8/ubi-minimal from `2fa47fa` to `f729a7f` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3523](https://togithub.com/external-secrets/external-secrets/pull/3523)
- doc(BitWarden): extends the liveness timeout by
[@&#8203;acolombier](https://togithub.com/acolombier) in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- chore(deps): bump mkdocs-material from 9.5.23 to 9.5.24 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3526](https://togithub.com/external-secrets/external-secrets/pull/3526)
- chore(deps): bump zipp from 3.18.2 to 3.19.0 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3527](https://togithub.com/external-secrets/external-secrets/pull/3527)
- chore(deps): bump requests from 2.31.0 to 2.32.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3528](https://togithub.com/external-secrets/external-secrets/pull/3528)
- chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3530](https://togithub.com/external-secrets/external-secrets/pull/3530)
- chore(deps): bump aquasecurity/trivy-action from 0.20.0 to 0.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3531](https://togithub.com/external-secrets/external-secrets/pull/3531)
- chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3532](https://togithub.com/external-secrets/external-secrets/pull/3532)
- chore(deps): bump ubi8/ubi-minimal from `f729a7f` to `9e458f4` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3543](https://togithub.com/external-secrets/external-secrets/pull/3543)
- chore(deps): bump golang from `f1fe698` to `b8ded51` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3522](https://togithub.com/external-secrets/external-secrets/pull/3522)
- chore(deps): bump alpine from 3.19.1 to 3.20.0 in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3525](https://togithub.com/external-secrets/external-secrets/pull/3525)
- chore(deps): bump watchdog from 4.0.0 to 4.0.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3529](https://togithub.com/external-secrets/external-secrets/pull/3529)
- chore(deps): bump alpine from 3.19 to 3.20 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3533](https://togithub.com/external-secrets/external-secrets/pull/3533)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3534](https://togithub.com/external-secrets/external-secrets/pull/3534)
- Fix: ESO template crash when Kubernetes secret data is nil by
[@&#8203;ma-ble](https://togithub.com/ma-ble) in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)
- chore(deps): bump alpine from `c5b1261` to `77726ef` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3524](https://togithub.com/external-secrets/external-secrets/pull/3524)
- Add CA-Bundle to pemToPkcs12 output by
[@&#8203;WatcherWhale](https://togithub.com/WatcherWhale) in
[https://github.com/external-secrets/external-secrets/pull/3494](https://togithub.com/external-secrets/external-secrets/pull/3494)
- chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3544](https://togithub.com/external-secrets/external-secrets/pull/3544)
- chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3545](https://togithub.com/external-secrets/external-secrets/pull/3545)
- chore(deps): bump certifi from 2024.2.2 to 2024.6.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3546](https://togithub.com/external-secrets/external-secrets/pull/3546)
- chore(deps): bump mkdocs-material from 9.5.24 to 9.5.25 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3547](https://togithub.com/external-secrets/external-secrets/pull/3547)
- chore(deps): bump zipp from 3.19.0 to 3.19.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3549](https://togithub.com/external-secrets/external-secrets/pull/3549)
- chore(deps): bump requests from 2.32.2 to 2.32.3 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3548](https://togithub.com/external-secrets/external-secrets/pull/3548)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3550](https://togithub.com/external-secrets/external-secrets/pull/3550)

#### New Contributors

- [@&#8203;acolombier](https://togithub.com/acolombier) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- [@&#8203;ma-ble](https://togithub.com/ma-ble) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)

**Full Changelog**:
external-secrets/external-secrets@v0.9.18...v0.9.19

</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 this update
again.

---

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

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

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

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
lumiere-bot bot referenced this pull request in coolguy1771/home-ops Jun 5, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[external-secrets](https://togithub.com/external-secrets/external-secrets)
| patch | `0.9.18` -> `0.9.19` |

---

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

---

### Release Notes

<details>
<summary>external-secrets/external-secrets (external-secrets)</summary>

###
[`v0.9.19`](https://togithub.com/external-secrets/external-secrets/releases/tag/v0.9.19)

[Compare
Source](https://togithub.com/external-secrets/external-secrets/compare/v0.9.18...v0.9.19)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.19`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi-boringssl`

#### What's Changed

- bump 0.9.18 by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3492](https://togithub.com/external-secrets/external-secrets/pull/3492)
- Fix flaky ES controller test by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3493](https://togithub.com/external-secrets/external-secrets/pull/3493)
- Raise error when unknown key specified in template by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3480](https://togithub.com/external-secrets/external-secrets/pull/3480)
- Update ci.yml with ppc64le arch support by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3500](https://togithub.com/external-secrets/external-secrets/pull/3500)
- chore(deps): bump regex from 2024.5.10 to 2024.5.15 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3512](https://togithub.com/external-secrets/external-secrets/pull/3512)
- chore(deps): bump zipp from 3.18.1 to 3.18.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3511](https://togithub.com/external-secrets/external-secrets/pull/3511)
- chore(deps): bump platformdirs from 4.2.1 to 4.2.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3510](https://togithub.com/external-secrets/external-secrets/pull/3510)
- chore(deps): bump golang from `6d71b7c` to `5c56bd4` in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3508](https://togithub.com/external-secrets/external-secrets/pull/3508)
- chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3507](https://togithub.com/external-secrets/external-secrets/pull/3507)
- chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3506](https://togithub.com/external-secrets/external-secrets/pull/3506)
- chore(deps): bump actions/checkout from 4.1.5 to 4.1.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3505](https://togithub.com/external-secrets/external-secrets/pull/3505)
- chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3504](https://togithub.com/external-secrets/external-secrets/pull/3504)
- chore(deps): bump golang from `2a88224` to `f1fe698` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3503](https://togithub.com/external-secrets/external-secrets/pull/3503)
- chore(deps): bump mkdocs-material from 9.5.22 to 9.5.23 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3509](https://togithub.com/external-secrets/external-secrets/pull/3509)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3513](https://togithub.com/external-secrets/external-secrets/pull/3513)
- ppc64le additions by [@&#8203;IdanAdar](https://togithub.com/IdanAdar)
in
[https://github.com/external-secrets/external-secrets/pull/3535](https://togithub.com/external-secrets/external-secrets/pull/3535)
- chore(deps): bump ubi8/ubi-minimal from `2fa47fa` to `f729a7f` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3523](https://togithub.com/external-secrets/external-secrets/pull/3523)
- doc(BitWarden): extends the liveness timeout by
[@&#8203;acolombier](https://togithub.com/acolombier) in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- chore(deps): bump mkdocs-material from 9.5.23 to 9.5.24 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3526](https://togithub.com/external-secrets/external-secrets/pull/3526)
- chore(deps): bump zipp from 3.18.2 to 3.19.0 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3527](https://togithub.com/external-secrets/external-secrets/pull/3527)
- chore(deps): bump requests from 2.31.0 to 2.32.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3528](https://togithub.com/external-secrets/external-secrets/pull/3528)
- chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3530](https://togithub.com/external-secrets/external-secrets/pull/3530)
- chore(deps): bump aquasecurity/trivy-action from 0.20.0 to 0.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3531](https://togithub.com/external-secrets/external-secrets/pull/3531)
- chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3532](https://togithub.com/external-secrets/external-secrets/pull/3532)
- chore(deps): bump ubi8/ubi-minimal from `f729a7f` to `9e458f4` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3543](https://togithub.com/external-secrets/external-secrets/pull/3543)
- chore(deps): bump golang from `f1fe698` to `b8ded51` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3522](https://togithub.com/external-secrets/external-secrets/pull/3522)
- chore(deps): bump alpine from 3.19.1 to 3.20.0 in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3525](https://togithub.com/external-secrets/external-secrets/pull/3525)
- chore(deps): bump watchdog from 4.0.0 to 4.0.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3529](https://togithub.com/external-secrets/external-secrets/pull/3529)
- chore(deps): bump alpine from 3.19 to 3.20 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3533](https://togithub.com/external-secrets/external-secrets/pull/3533)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3534](https://togithub.com/external-secrets/external-secrets/pull/3534)
- Fix: ESO template crash when Kubernetes secret data is nil by
[@&#8203;ma-ble](https://togithub.com/ma-ble) in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)
- chore(deps): bump alpine from `c5b1261` to `77726ef` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3524](https://togithub.com/external-secrets/external-secrets/pull/3524)
- Add CA-Bundle to pemToPkcs12 output by
[@&#8203;WatcherWhale](https://togithub.com/WatcherWhale) in
[https://github.com/external-secrets/external-secrets/pull/3494](https://togithub.com/external-secrets/external-secrets/pull/3494)
- chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3544](https://togithub.com/external-secrets/external-secrets/pull/3544)
- chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3545](https://togithub.com/external-secrets/external-secrets/pull/3545)
- chore(deps): bump certifi from 2024.2.2 to 2024.6.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3546](https://togithub.com/external-secrets/external-secrets/pull/3546)
- chore(deps): bump mkdocs-material from 9.5.24 to 9.5.25 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3547](https://togithub.com/external-secrets/external-secrets/pull/3547)
- chore(deps): bump zipp from 3.19.0 to 3.19.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3549](https://togithub.com/external-secrets/external-secrets/pull/3549)
- chore(deps): bump requests from 2.32.2 to 2.32.3 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3548](https://togithub.com/external-secrets/external-secrets/pull/3548)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3550](https://togithub.com/external-secrets/external-secrets/pull/3550)

#### New Contributors

- [@&#8203;acolombier](https://togithub.com/acolombier) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- [@&#8203;ma-ble](https://togithub.com/ma-ble) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)

**Full Changelog**:
external-secrets/external-secrets@v0.9.18...v0.9.19

</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 this update
again.

---

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

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

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

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
kireque referenced this pull request in kireque/home-ops-old Jun 6, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[external-secrets](https://togithub.com/external-secrets/external-secrets)
| patch | `0.9.18` -> `0.9.19` |

---

### Release Notes

<details>
<summary>external-secrets/external-secrets (external-secrets)</summary>

###
[`v0.9.19`](https://togithub.com/external-secrets/external-secrets/releases/tag/v0.9.19)

[Compare
Source](https://togithub.com/external-secrets/external-secrets/compare/v0.9.18...v0.9.19)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.19`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi-boringssl`

#### What's Changed

- bump 0.9.18 by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3492](https://togithub.com/external-secrets/external-secrets/pull/3492)
- Fix flaky ES controller test by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3493](https://togithub.com/external-secrets/external-secrets/pull/3493)
- Raise error when unknown key specified in template by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3480](https://togithub.com/external-secrets/external-secrets/pull/3480)
- Update ci.yml with ppc64le arch support by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3500](https://togithub.com/external-secrets/external-secrets/pull/3500)
- chore(deps): bump regex from 2024.5.10 to 2024.5.15 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3512](https://togithub.com/external-secrets/external-secrets/pull/3512)
- chore(deps): bump zipp from 3.18.1 to 3.18.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3511](https://togithub.com/external-secrets/external-secrets/pull/3511)
- chore(deps): bump platformdirs from 4.2.1 to 4.2.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3510](https://togithub.com/external-secrets/external-secrets/pull/3510)
- chore(deps): bump golang from `6d71b7c` to `5c56bd4` in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3508](https://togithub.com/external-secrets/external-secrets/pull/3508)
- chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3507](https://togithub.com/external-secrets/external-secrets/pull/3507)
- chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3506](https://togithub.com/external-secrets/external-secrets/pull/3506)
- chore(deps): bump actions/checkout from 4.1.5 to 4.1.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3505](https://togithub.com/external-secrets/external-secrets/pull/3505)
- chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3504](https://togithub.com/external-secrets/external-secrets/pull/3504)
- chore(deps): bump golang from `2a88224` to `f1fe698` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3503](https://togithub.com/external-secrets/external-secrets/pull/3503)
- chore(deps): bump mkdocs-material from 9.5.22 to 9.5.23 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3509](https://togithub.com/external-secrets/external-secrets/pull/3509)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3513](https://togithub.com/external-secrets/external-secrets/pull/3513)
- ppc64le additions by [@&#8203;IdanAdar](https://togithub.com/IdanAdar)
in
[https://github.com/external-secrets/external-secrets/pull/3535](https://togithub.com/external-secrets/external-secrets/pull/3535)
- chore(deps): bump ubi8/ubi-minimal from `2fa47fa` to `f729a7f` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3523](https://togithub.com/external-secrets/external-secrets/pull/3523)
- doc(BitWarden): extends the liveness timeout by
[@&#8203;acolombier](https://togithub.com/acolombier) in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- chore(deps): bump mkdocs-material from 9.5.23 to 9.5.24 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3526](https://togithub.com/external-secrets/external-secrets/pull/3526)
- chore(deps): bump zipp from 3.18.2 to 3.19.0 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3527](https://togithub.com/external-secrets/external-secrets/pull/3527)
- chore(deps): bump requests from 2.31.0 to 2.32.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3528](https://togithub.com/external-secrets/external-secrets/pull/3528)
- chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3530](https://togithub.com/external-secrets/external-secrets/pull/3530)
- chore(deps): bump aquasecurity/trivy-action from 0.20.0 to 0.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3531](https://togithub.com/external-secrets/external-secrets/pull/3531)
- chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3532](https://togithub.com/external-secrets/external-secrets/pull/3532)
- chore(deps): bump ubi8/ubi-minimal from `f729a7f` to `9e458f4` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3543](https://togithub.com/external-secrets/external-secrets/pull/3543)
- chore(deps): bump golang from `f1fe698` to `b8ded51` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3522](https://togithub.com/external-secrets/external-secrets/pull/3522)
- chore(deps): bump alpine from 3.19.1 to 3.20.0 in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3525](https://togithub.com/external-secrets/external-secrets/pull/3525)
- chore(deps): bump watchdog from 4.0.0 to 4.0.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3529](https://togithub.com/external-secrets/external-secrets/pull/3529)
- chore(deps): bump alpine from 3.19 to 3.20 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3533](https://togithub.com/external-secrets/external-secrets/pull/3533)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3534](https://togithub.com/external-secrets/external-secrets/pull/3534)
- Fix: ESO template crash when Kubernetes secret data is nil by
[@&#8203;ma-ble](https://togithub.com/ma-ble) in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)
- chore(deps): bump alpine from `c5b1261` to `77726ef` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3524](https://togithub.com/external-secrets/external-secrets/pull/3524)
- Add CA-Bundle to pemToPkcs12 output by
[@&#8203;WatcherWhale](https://togithub.com/WatcherWhale) in
[https://github.com/external-secrets/external-secrets/pull/3494](https://togithub.com/external-secrets/external-secrets/pull/3494)
- chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3544](https://togithub.com/external-secrets/external-secrets/pull/3544)
- chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3545](https://togithub.com/external-secrets/external-secrets/pull/3545)
- chore(deps): bump certifi from 2024.2.2 to 2024.6.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3546](https://togithub.com/external-secrets/external-secrets/pull/3546)
- chore(deps): bump mkdocs-material from 9.5.24 to 9.5.25 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3547](https://togithub.com/external-secrets/external-secrets/pull/3547)
- chore(deps): bump zipp from 3.19.0 to 3.19.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3549](https://togithub.com/external-secrets/external-secrets/pull/3549)
- chore(deps): bump requests from 2.32.2 to 2.32.3 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3548](https://togithub.com/external-secrets/external-secrets/pull/3548)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3550](https://togithub.com/external-secrets/external-secrets/pull/3550)

#### New Contributors

- [@&#8203;acolombier](https://togithub.com/acolombier) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- [@&#8203;ma-ble](https://togithub.com/ma-ble) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)

**Full Changelog**:
external-secrets/external-secrets@v0.9.18...v0.9.19

</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 this update
again.

---

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

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

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

Co-authored-by: kireque-bot[bot] <143391978+kireque-bot[bot]@users.noreply.github.com>
Bude8 pushed a commit to Bude8/external-secrets that referenced this pull request Jun 13, 2024
…secrets#3537)

* fix: check if secret.Data is nil before assigning a value

Signed-off-by: MathiasBleimhofer <[email protected]>
Signed-off-by: Bude8 <[email protected]>
pacificcode pushed a commit to pacificcode/external-secrets that referenced this pull request Jul 3, 2024
…secrets#3537)

* fix: check if secret.Data is nil before assigning a value

Signed-off-by: MathiasBleimhofer <[email protected]>
Signed-off-by: Bill Hamilton <[email protected]>
lambchop4prez referenced this pull request in lambchop4prez/network Jul 7, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[external-secrets](https://togithub.com/external-secrets/external-secrets)
| patch | `0.9.18` -> `0.9.20` |

---

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

---

### Release Notes

<details>
<summary>external-secrets/external-secrets (external-secrets)</summary>

###
[`v0.9.20`](https://togithub.com/external-secrets/external-secrets/releases/tag/v0.9.20)

[Compare
Source](https://togithub.com/external-secrets/external-secrets/compare/v0.9.19...v0.9.20)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.20`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.20-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.20-ubi-boringssl`

#### What's Changed

- bump 0.9.19 by [@&#8203;knelasevero](https://togithub.com/knelasevero)
in
[https://github.com/external-secrets/external-secrets/pull/3553](https://togithub.com/external-secrets/external-secrets/pull/3553)
- Fix typo: temaplate --> template by
[@&#8203;lindhe](https://togithub.com/lindhe) in
[https://github.com/external-secrets/external-secrets/pull/3554](https://togithub.com/external-secrets/external-secrets/pull/3554)
- Oracle Vault Provider Documentation by
[@&#8203;anders-swanson](https://togithub.com/anders-swanson) in
[https://github.com/external-secrets/external-secrets/pull/3551](https://togithub.com/external-secrets/external-secrets/pull/3551)
- feat: add location to GCP push secret by
[@&#8203;Skarlso](https://togithub.com/Skarlso) in
[https://github.com/external-secrets/external-secrets/pull/3502](https://togithub.com/external-secrets/external-secrets/pull/3502)
- add log.level and log.encoding to all components by
[@&#8203;KyriosGN0](https://togithub.com/KyriosGN0) in
[https://github.com/external-secrets/external-secrets/pull/3558](https://togithub.com/external-secrets/external-secrets/pull/3558)
- chore(deps): bump github/codeql-action from 3.25.7 to 3.25.8 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3561](https://togithub.com/external-secrets/external-secrets/pull/3561)
- chore(deps): bump aquasecurity/trivy-action from 0.21.0 to 0.22.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3562](https://togithub.com/external-secrets/external-secrets/pull/3562)
- chore(deps): bump tornado from 6.4 to 6.4.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3563](https://togithub.com/external-secrets/external-secrets/pull/3563)
- chore(deps): bump packaging from 24.0 to 24.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3564](https://togithub.com/external-secrets/external-secrets/pull/3564)
- chore(deps): bump mkdocs-material from 9.5.25 to 9.5.26 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3565](https://togithub.com/external-secrets/external-secrets/pull/3565)
- chore(deps): bump zipp from 3.19.1 to 3.19.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3566](https://togithub.com/external-secrets/external-secrets/pull/3566)
- chore(deps): bump ubi8/ubi-minimal from `9e458f4` to `5f1cd34` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3568](https://togithub.com/external-secrets/external-secrets/pull/3568)
- chore(deps): bump golang from 1.22.3-bookworm to 1.22.4-bookworm in
/e2e by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3569](https://togithub.com/external-secrets/external-secrets/pull/3569)
- chore(deps): bump golang from 1.22.3 to 1.22.4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3567](https://togithub.com/external-secrets/external-secrets/pull/3567)
- Infisical provider by
[@&#8203;akhilmhdh](https://togithub.com/akhilmhdh) in
[https://github.com/external-secrets/external-secrets/pull/3477](https://togithub.com/external-secrets/external-secrets/pull/3477)
- feat: kick github actions on main by
[@&#8203;Skarlso](https://togithub.com/Skarlso) in
[https://github.com/external-secrets/external-secrets/pull/3572](https://togithub.com/external-secrets/external-secrets/pull/3572)
- feat: add support to set Type for AWS parameter store by
[@&#8203;vsantos](https://togithub.com/vsantos) in
[https://github.com/external-secrets/external-secrets/pull/3576](https://togithub.com/external-secrets/external-secrets/pull/3576)
- Remove shuheiktgw from maintainers by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3573](https://togithub.com/external-secrets/external-secrets/pull/3573)
- Add device42 provider by
[@&#8203;smcavallo](https://togithub.com/smcavallo) in
[https://github.com/external-secrets/external-secrets/pull/3571](https://togithub.com/external-secrets/external-secrets/pull/3571)
- ref: parameter store should be called only once by
[@&#8203;Skarlso](https://togithub.com/Skarlso) in
[https://github.com/external-secrets/external-secrets/pull/3584](https://togithub.com/external-secrets/external-secrets/pull/3584)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3570](https://togithub.com/external-secrets/external-secrets/pull/3570)
- feat(certcontroller): Allow restricting CRDs and Webhook configs in
Informer cache by [@&#8203;toVersus](https://togithub.com/toVersus) in
[https://github.com/external-secrets/external-secrets/pull/3588](https://togithub.com/external-secrets/external-secrets/pull/3588)
- Support glob for namespaces condition in ClusterSecretStore by
[@&#8203;speedfl](https://togithub.com/speedfl) in
[https://github.com/external-secrets/external-secrets/pull/2920](https://togithub.com/external-secrets/external-secrets/pull/2920)
- Fix typo privatKey in multiple files by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3578](https://togithub.com/external-secrets/external-secrets/pull/3578)
- chore(deps): bump mkdocs-material from 9.5.26 to 9.5.27 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3595](https://togithub.com/external-secrets/external-secrets/pull/3595)
- chore(deps): bump github/codeql-action from 3.25.8 to 3.25.10 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3591](https://togithub.com/external-secrets/external-secrets/pull/3591)
- chore(deps): bump codecov/codecov-action from 4.4.1 to 4.5.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3592](https://togithub.com/external-secrets/external-secrets/pull/3592)
- chore(deps): bump actions/checkout from 4.1.6 to 4.1.7 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3590](https://togithub.com/external-secrets/external-secrets/pull/3590)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3596](https://togithub.com/external-secrets/external-secrets/pull/3596)
- chore(deps): bump golang from `aec4784` to `9678844` in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3593](https://togithub.com/external-secrets/external-secrets/pull/3593)
- chore(deps): bump golang from `9bdd569` to `6522f0c` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3594](https://togithub.com/external-secrets/external-secrets/pull/3594)
- feat(chart): Enable partial cache for certcontroller when
installCRDs=true by [@&#8203;toVersus](https://togithub.com/toVersus) in
[https://github.com/external-secrets/external-secrets/pull/3589](https://togithub.com/external-secrets/external-secrets/pull/3589)
- Add skip unmanaged store logic for push secret controller by
[@&#8203;Bude8](https://togithub.com/Bude8) in
[https://github.com/external-secrets/external-secrets/pull/3123](https://togithub.com/external-secrets/external-secrets/pull/3123)
- fix(vault): Fix crash when caching is enabled and a token expires by
[@&#8203;agunnerson-elastic](https://togithub.com/agunnerson-elastic) in
[https://github.com/external-secrets/external-secrets/pull/3598](https://togithub.com/external-secrets/external-secrets/pull/3598)
- Remove the use of "golang.org/x/crypto/pkcs12" by
[@&#8203;yihuaf](https://togithub.com/yihuaf) in
[https://github.com/external-secrets/external-secrets/pull/3601](https://togithub.com/external-secrets/external-secrets/pull/3601)
- Make UBI more tolerable from OS vulnerabilities by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3607](https://togithub.com/external-secrets/external-secrets/pull/3607)
- fix: explicitly fetch status subresource due to inconsistencies by
[@&#8203;moolen](https://togithub.com/moolen) in
[https://github.com/external-secrets/external-secrets/pull/3608](https://togithub.com/external-secrets/external-secrets/pull/3608)
- Adds codepath for removing finalizers by
[@&#8203;lllamnyp](https://togithub.com/lllamnyp) in
[https://github.com/external-secrets/external-secrets/pull/3610](https://togithub.com/external-secrets/external-secrets/pull/3610)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3624](https://togithub.com/external-secrets/external-secrets/pull/3624)
- chore(deps): bump alpine from 3.20.0 to 3.20.1 in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3622](https://togithub.com/external-secrets/external-secrets/pull/3622)
- chore(deps): bump alpine from `77726ef` to `b89d9c9` in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3621](https://togithub.com/external-secrets/external-secrets/pull/3621)
- chore(deps): bump golang from `6522f0c` to `ace6cc3` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3620](https://togithub.com/external-secrets/external-secrets/pull/3620)
- chore(deps): bump urllib3 from 2.2.1 to 2.2.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3618](https://togithub.com/external-secrets/external-secrets/pull/3618)
- chore(deps): bump importlib-metadata from 7.1.0 to 7.2.1 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3617](https://togithub.com/external-secrets/external-secrets/pull/3617)
- chore(deps): bump livereload from 2.6.3 to 2.7.0 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3616](https://togithub.com/external-secrets/external-secrets/pull/3616)
- chore(deps): bump aquasecurity/trivy-action from 0.22.0 to 0.23.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3615](https://togithub.com/external-secrets/external-secrets/pull/3615)
- chore(deps): bump softprops/action-gh-release from 2.0.5 to 2.0.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3614](https://togithub.com/external-secrets/external-secrets/pull/3614)
- Fix ACR External Secret example by
[@&#8203;ellenfieldn](https://togithub.com/ellenfieldn) in
[https://github.com/external-secrets/external-secrets/pull/3626](https://togithub.com/external-secrets/external-secrets/pull/3626)
- feat: add bitwarden secret manager support by
[@&#8203;Skarlso](https://togithub.com/Skarlso) in
[https://github.com/external-secrets/external-secrets/pull/3603](https://togithub.com/external-secrets/external-secrets/pull/3603)
- fix: e2e installation of ESO needs to update dependencies first by
[@&#8203;Skarlso](https://togithub.com/Skarlso) in
[https://github.com/external-secrets/external-secrets/pull/3635](https://togithub.com/external-secrets/external-secrets/pull/3635)
- added secretserver env vars to e2e.yml by
[@&#8203;pacificcode](https://togithub.com/pacificcode) in
[https://github.com/external-secrets/external-secrets/pull/3636](https://togithub.com/external-secrets/external-secrets/pull/3636)
- docs: fix dataFrom.find in ExternalSecret api example by
[@&#8203;sboschman](https://togithub.com/sboschman) in
[https://github.com/external-secrets/external-secrets/pull/3633](https://togithub.com/external-secrets/external-secrets/pull/3633)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3641](https://togithub.com/external-secrets/external-secrets/pull/3641)
- chore(deps): bump github/codeql-action from 3.25.10 to 3.25.11 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3640](https://togithub.com/external-secrets/external-secrets/pull/3640)
- chore(deps): bump importlib-metadata from 7.2.1 to 8.0.0 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3639](https://togithub.com/external-secrets/external-secrets/pull/3639)
- add AuthRef to kubernetes provider fixes
[#&#8203;3627](https://togithub.com/external-secrets/external-secrets/issues/3627)
by [@&#8203;kaedwen](https://togithub.com/kaedwen) in
[https://github.com/external-secrets/external-secrets/pull/3628](https://togithub.com/external-secrets/external-secrets/pull/3628)
- fix: implement handling for pushing whole k8s secret to gcsm by
[@&#8203;thejosephstevens](https://togithub.com/thejosephstevens) in
[https://github.com/external-secrets/external-secrets/pull/3644](https://togithub.com/external-secrets/external-secrets/pull/3644)
- bump e2e pipeline by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3646](https://togithub.com/external-secrets/external-secrets/pull/3646)
- fix e2e permissions by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3647](https://togithub.com/external-secrets/external-secrets/pull/3647)
- bump docs with e2e commands by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3648](https://togithub.com/external-secrets/external-secrets/pull/3648)
- also needs pull-requests by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3649](https://togithub.com/external-secrets/external-secrets/pull/3649)
- use github token to allow comment by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3651](https://togithub.com/external-secrets/external-secrets/pull/3651)
- fix(webhook): perform conversion of data by
[@&#8203;cardoe](https://togithub.com/cardoe) in
[https://github.com/external-secrets/external-secrets/pull/3638](https://togithub.com/external-secrets/external-secrets/pull/3638)
- feat: implement pushing whole k8s secret to Azure Keyvault by
[@&#8203;CCOLLOT](https://togithub.com/CCOLLOT) in
[https://github.com/external-secrets/external-secrets/pull/3650](https://togithub.com/external-secrets/external-secrets/pull/3650)
- fix(vault): Treat tokens expiring in <60s as expired by
[@&#8203;agunnerson-elastic](https://togithub.com/agunnerson-elastic) in
[https://github.com/external-secrets/external-secrets/pull/3637](https://togithub.com/external-secrets/external-secrets/pull/3637)
- Allow specifying the same namespace for SecretStores by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3555](https://togithub.com/external-secrets/external-secrets/pull/3555)
- docs: add proposal for PushSecret metadata by
[@&#8203;moolen](https://togithub.com/moolen) in
[https://github.com/external-secrets/external-secrets/pull/3612](https://togithub.com/external-secrets/external-secrets/pull/3612)
- fix github credentials by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3656](https://togithub.com/external-secrets/external-secrets/pull/3656)
- docs: updated k8s support for ESO v0.9 by
[@&#8203;shazib-summar](https://togithub.com/shazib-summar) in
[https://github.com/external-secrets/external-secrets/pull/3659](https://togithub.com/external-secrets/external-secrets/pull/3659)

#### New Contributors

- [@&#8203;lindhe](https://togithub.com/lindhe) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3554](https://togithub.com/external-secrets/external-secrets/pull/3554)
- [@&#8203;KyriosGN0](https://togithub.com/KyriosGN0) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3558](https://togithub.com/external-secrets/external-secrets/pull/3558)
- [@&#8203;akhilmhdh](https://togithub.com/akhilmhdh) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3477](https://togithub.com/external-secrets/external-secrets/pull/3477)
- [@&#8203;smcavallo](https://togithub.com/smcavallo) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3571](https://togithub.com/external-secrets/external-secrets/pull/3571)
- [@&#8203;toVersus](https://togithub.com/toVersus) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3588](https://togithub.com/external-secrets/external-secrets/pull/3588)
- [@&#8203;speedfl](https://togithub.com/speedfl) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/2920](https://togithub.com/external-secrets/external-secrets/pull/2920)
- [@&#8203;Bude8](https://togithub.com/Bude8) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3123](https://togithub.com/external-secrets/external-secrets/pull/3123)
- [@&#8203;agunnerson-elastic](https://togithub.com/agunnerson-elastic)
made their first contribution in
[https://github.com/external-secrets/external-secrets/pull/3598](https://togithub.com/external-secrets/external-secrets/pull/3598)
- [@&#8203;yihuaf](https://togithub.com/yihuaf) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3601](https://togithub.com/external-secrets/external-secrets/pull/3601)
- [@&#8203;lllamnyp](https://togithub.com/lllamnyp) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3610](https://togithub.com/external-secrets/external-secrets/pull/3610)
- [@&#8203;ellenfieldn](https://togithub.com/ellenfieldn) made their
first contribution in
[https://github.com/external-secrets/external-secrets/pull/3626](https://togithub.com/external-secrets/external-secrets/pull/3626)
- [@&#8203;pacificcode](https://togithub.com/pacificcode) made their
first contribution in
[https://github.com/external-secrets/external-secrets/pull/3636](https://togithub.com/external-secrets/external-secrets/pull/3636)
- [@&#8203;sboschman](https://togithub.com/sboschman) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3633](https://togithub.com/external-secrets/external-secrets/pull/3633)
- [@&#8203;kaedwen](https://togithub.com/kaedwen) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3628](https://togithub.com/external-secrets/external-secrets/pull/3628)
- [@&#8203;thejosephstevens](https://togithub.com/thejosephstevens) made
their first contribution in
[https://github.com/external-secrets/external-secrets/pull/3644](https://togithub.com/external-secrets/external-secrets/pull/3644)
- [@&#8203;cardoe](https://togithub.com/cardoe) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3638](https://togithub.com/external-secrets/external-secrets/pull/3638)
- [@&#8203;CCOLLOT](https://togithub.com/CCOLLOT) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3650](https://togithub.com/external-secrets/external-secrets/pull/3650)
- [@&#8203;shazib-summar](https://togithub.com/shazib-summar) made their
first contribution in
[https://github.com/external-secrets/external-secrets/pull/3659](https://togithub.com/external-secrets/external-secrets/pull/3659)

**Full Changelog**:
external-secrets/external-secrets@v0.9.19...v0.9.20

###
[`v0.9.19`](https://togithub.com/external-secrets/external-secrets/releases/tag/v0.9.19)

[Compare
Source](https://togithub.com/external-secrets/external-secrets/compare/v0.9.18...v0.9.19)

Image: `ghcr.io/external-secrets/external-secrets:v0.9.19`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi`
Image: `ghcr.io/external-secrets/external-secrets:v0.9.19-ubi-boringssl`

#### What's Changed

- bump 0.9.18 by
[@&#8203;gusfcarvalho](https://togithub.com/gusfcarvalho) in
[https://github.com/external-secrets/external-secrets/pull/3492](https://togithub.com/external-secrets/external-secrets/pull/3492)
- Fix flaky ES controller test by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3493](https://togithub.com/external-secrets/external-secrets/pull/3493)
- Raise error when unknown key specified in template by
[@&#8203;shuheiktgw](https://togithub.com/shuheiktgw) in
[https://github.com/external-secrets/external-secrets/pull/3480](https://togithub.com/external-secrets/external-secrets/pull/3480)
- Update ci.yml with ppc64le arch support by
[@&#8203;IdanAdar](https://togithub.com/IdanAdar) in
[https://github.com/external-secrets/external-secrets/pull/3500](https://togithub.com/external-secrets/external-secrets/pull/3500)
- chore(deps): bump regex from 2024.5.10 to 2024.5.15 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3512](https://togithub.com/external-secrets/external-secrets/pull/3512)
- chore(deps): bump zipp from 3.18.1 to 3.18.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3511](https://togithub.com/external-secrets/external-secrets/pull/3511)
- chore(deps): bump platformdirs from 4.2.1 to 4.2.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3510](https://togithub.com/external-secrets/external-secrets/pull/3510)
- chore(deps): bump golang from `6d71b7c` to `5c56bd4` in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3508](https://togithub.com/external-secrets/external-secrets/pull/3508)
- chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3507](https://togithub.com/external-secrets/external-secrets/pull/3507)
- chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3506](https://togithub.com/external-secrets/external-secrets/pull/3506)
- chore(deps): bump actions/checkout from 4.1.5 to 4.1.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3505](https://togithub.com/external-secrets/external-secrets/pull/3505)
- chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3504](https://togithub.com/external-secrets/external-secrets/pull/3504)
- chore(deps): bump golang from `2a88224` to `f1fe698` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3503](https://togithub.com/external-secrets/external-secrets/pull/3503)
- chore(deps): bump mkdocs-material from 9.5.22 to 9.5.23 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3509](https://togithub.com/external-secrets/external-secrets/pull/3509)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3513](https://togithub.com/external-secrets/external-secrets/pull/3513)
- ppc64le additions by [@&#8203;IdanAdar](https://togithub.com/IdanAdar)
in
[https://github.com/external-secrets/external-secrets/pull/3535](https://togithub.com/external-secrets/external-secrets/pull/3535)
- chore(deps): bump ubi8/ubi-minimal from `2fa47fa` to `f729a7f` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3523](https://togithub.com/external-secrets/external-secrets/pull/3523)
- doc(BitWarden): extends the liveness timeout by
[@&#8203;acolombier](https://togithub.com/acolombier) in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- chore(deps): bump mkdocs-material from 9.5.23 to 9.5.24 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3526](https://togithub.com/external-secrets/external-secrets/pull/3526)
- chore(deps): bump zipp from 3.18.2 to 3.19.0 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3527](https://togithub.com/external-secrets/external-secrets/pull/3527)
- chore(deps): bump requests from 2.31.0 to 2.32.2 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3528](https://togithub.com/external-secrets/external-secrets/pull/3528)
- chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3530](https://togithub.com/external-secrets/external-secrets/pull/3530)
- chore(deps): bump aquasecurity/trivy-action from 0.20.0 to 0.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3531](https://togithub.com/external-secrets/external-secrets/pull/3531)
- chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3532](https://togithub.com/external-secrets/external-secrets/pull/3532)
- chore(deps): bump ubi8/ubi-minimal from `f729a7f` to `9e458f4` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3543](https://togithub.com/external-secrets/external-secrets/pull/3543)
- chore(deps): bump golang from `f1fe698` to `b8ded51` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3522](https://togithub.com/external-secrets/external-secrets/pull/3522)
- chore(deps): bump alpine from 3.19.1 to 3.20.0 in /e2e by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3525](https://togithub.com/external-secrets/external-secrets/pull/3525)
- chore(deps): bump watchdog from 4.0.0 to 4.0.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3529](https://togithub.com/external-secrets/external-secrets/pull/3529)
- chore(deps): bump alpine from 3.19 to 3.20 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3533](https://togithub.com/external-secrets/external-secrets/pull/3533)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3534](https://togithub.com/external-secrets/external-secrets/pull/3534)
- Fix: ESO template crash when Kubernetes secret data is nil by
[@&#8203;ma-ble](https://togithub.com/ma-ble) in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)
- chore(deps): bump alpine from `c5b1261` to `77726ef` by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3524](https://togithub.com/external-secrets/external-secrets/pull/3524)
- Add CA-Bundle to pemToPkcs12 output by
[@&#8203;WatcherWhale](https://togithub.com/WatcherWhale) in
[https://github.com/external-secrets/external-secrets/pull/3494](https://togithub.com/external-secrets/external-secrets/pull/3494)
- chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3544](https://togithub.com/external-secrets/external-secrets/pull/3544)
- chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3545](https://togithub.com/external-secrets/external-secrets/pull/3545)
- chore(deps): bump certifi from 2024.2.2 to 2024.6.2 in /hack/api-docs
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3546](https://togithub.com/external-secrets/external-secrets/pull/3546)
- chore(deps): bump mkdocs-material from 9.5.24 to 9.5.25 in
/hack/api-docs by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/external-secrets/external-secrets/pull/3547](https://togithub.com/external-secrets/external-secrets/pull/3547)
- chore(deps): bump zipp from 3.19.0 to 3.19.1 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3549](https://togithub.com/external-secrets/external-secrets/pull/3549)
- chore(deps): bump requests from 2.32.2 to 2.32.3 in /hack/api-docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/external-secrets/external-secrets/pull/3548](https://togithub.com/external-secrets/external-secrets/pull/3548)
- chore: update dependencies by
[@&#8203;eso-service-account-app](https://togithub.com/eso-service-account-app)
in
[https://github.com/external-secrets/external-secrets/pull/3550](https://togithub.com/external-secrets/external-secrets/pull/3550)

#### New Contributors

- [@&#8203;acolombier](https://togithub.com/acolombier) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3542](https://togithub.com/external-secrets/external-secrets/pull/3542)
- [@&#8203;ma-ble](https://togithub.com/ma-ble) made their first
contribution in
[https://github.com/external-secrets/external-secrets/pull/3537](https://togithub.com/external-secrets/external-secrets/pull/3537)

**Full Changelog**:
external-secrets/external-secrets@v0.9.18...v0.9.19

</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 this update
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/lambchop4prez/network).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
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.

ESO pod crashes if the secret referenced in the PushSecret has no data

2 participants